ETH Price: $3,450.12 (+1.53%)
Gas: 10 Gwei

Token

EverydayApes (APE)
 

Overview

Max Total Supply

339 APE

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
-cuong-.eth
Balance
2 APE
0x76b4b991d3ae570a2d0d04ed511e9779080c5340
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EverydayApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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






pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;




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



pragma solidity ^0.8.0;


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

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

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

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





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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/EverydayApes.sol

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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




pragma solidity ^0.8.0;


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

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

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

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


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


pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;






contract EverydayApes is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenIds;

    string public baseTokenURI;
    uint256 public cost = 0.125 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 100;
    bool public paused = false;

    event CreateApe(uint256 indexed id);

    constructor() public ERC721("EverydayApes", "APE") {
        _tokenIds.increment();
        pause(true);
    }
    
    
    function reserveApes() public onlyOwner {        
        mint(msg.sender, 165); //reserve for team + community giveaways
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenIds.current();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = _totalSupply();
        
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply, "Sale End");

        if (msg.sender != owner()) {
            require(!paused, "Sale must be active to mint");
            require(msg.value >= cost * _mintAmount);
            require(_mintAmount <= maxMintAmount, "Exceeds number");
        }

        for (uint256 i = 0; i < _mintAmount; i++) {
            _mintAnElement(_to);
        }
    }

    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIds.increment();
        _safeMint(_to, id);
        emit CreateApe(id);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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


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

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
        maxMintAmount = _newmaxMintAmount;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateApe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveApes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526701bc16d674ec8000600d55612710600e556064600f556010805460ff191690553480156200003257600080fd5b50604080518082018252600c81526b45766572796461794170657360a01b60208083019182528351808501909452600384526241504560e81b9084015281519192916200008291600091620001af565b50805162000098906001906020840190620001af565b505050620000b5620000af620000de60201b60201c565b620000e2565b620000cc600b6200013460201b6200117c1760201c565b620000d860016200013d565b62000292565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b600a546001600160a01b031633146200019c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6010805460ff1916911515919091179055565b828054620001bd9062000255565b90600052602060002090601f016020900481019282620001e157600085556200022c565b82601f10620001fc57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022c5782518255916020019190600101906200020f565b506200023a9291506200023e565b5090565b5b808211156200023a57600081556001016200023f565b600181811c908216806200026a57607f821691505b602082108114156200028c57634e487b7160e01b600052602260045260246000fd5b50919050565b61228a80620002a26000396000f3fe6080604052600436106101ee5760003560e01c80634f6ccce71161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610547578063d547cfb714610567578063d5abeb011461057c578063e985e9c514610592578063f2fde38b146105db57600080fd5b806395d89b41146104dd578063a22cb465146104f2578063b0f6742714610512578063b88d4fde1461052757600080fd5b80636352211e116100dc5780636352211e1461046a57806370a082311461048a578063715018a6146104aa5780638da5cb5b146104bf57600080fd5b80634f6ccce7146103fb57806355f804b31461041b57806359a7715a1461043b5780635c975abb1461045057600080fd5b8063239c70ae1161018557806340c10f191161015457806340c10f191461037b57806342842e0e1461038e578063438b6300146103ae57806344a0d68a146103db57600080fd5b8063239c70ae1461031d57806323b872dd146103335780632f745c59146103535780633ccfd60b1461037357600080fd5b8063088a4ed0116101c1578063088a4ed0146102a4578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e75565b6105fb565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611e5a565b610626565b005b34801561025657600080fd5b5061025f61066c565b60405161021f9190611fed565b34801561027857600080fd5b5061028c610287366004611ef8565b6106fe565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611ef8565b610793565b3480156102d057600080fd5b506102486102df366004611e30565b6107c2565b3480156102f057600080fd5b506102fa600d5481565b60405190815260200161021f565b34801561031457600080fd5b506008546102fa565b34801561032957600080fd5b506102fa600f5481565b34801561033f57600080fd5b5061024861034e366004611d4e565b6108d8565b34801561035f57600080fd5b506102fa61036e366004611e30565b610909565b61024861099f565b610248610389366004611e30565b6109ef565b34801561039a57600080fd5b506102486103a9366004611d4e565b610b3c565b3480156103ba57600080fd5b506103ce6103c9366004611d00565b610b57565b60405161021f9190611fa9565b3480156103e757600080fd5b506102486103f6366004611ef8565b610bf9565b34801561040757600080fd5b506102fa610416366004611ef8565b610c28565b34801561042757600080fd5b50610248610436366004611eaf565b610cbb565b34801561044757600080fd5b506102fa610cfc565b34801561045c57600080fd5b506010546102139060ff1681565b34801561047657600080fd5b5061028c610485366004611ef8565b610d0b565b34801561049657600080fd5b506102fa6104a5366004611d00565b610d82565b3480156104b657600080fd5b50610248610e09565b3480156104cb57600080fd5b50600a546001600160a01b031661028c565b3480156104e957600080fd5b5061025f610e3d565b3480156104fe57600080fd5b5061024861050d366004611e06565b610e4c565b34801561051e57600080fd5b50610248610f11565b34801561053357600080fd5b50610248610542366004611d8a565b610f46565b34801561055357600080fd5b5061025f610562366004611ef8565b610f78565b34801561057357600080fd5b5061025f611053565b34801561058857600080fd5b506102fa600e5481565b34801561059e57600080fd5b506102136105ad366004611d1b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102486105f6366004611d00565b6110e1565b60006001600160e01b0319821663780e9d6360e01b1480610620575061062082611185565b92915050565b600a546001600160a01b031633146106595760405162461bcd60e51b815260040161065090612052565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461067b90612166565b80601f01602080910402602001604051908101604052809291908181526020018280546106a790612166565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610650565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107bd5760405162461bcd60e51b815260040161065090612052565b600f55565b60006107cd82610d0b565b9050806001600160a01b0316836001600160a01b0316141561083b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610650565b336001600160a01b0382161480610857575061085781336105ad565b6108c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610650565b6108d383836111d5565b505050565b6108e23382611243565b6108fe5760405162461bcd60e51b815260040161065090612087565b6108d383838361133a565b600061091483610d82565b82106109765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610650565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109c95760405162461bcd60e51b815260040161065090612052565b60405133904780156108fc02916000818181858888f193505050506109ed57600080fd5b565b60006109f96114e5565b905060008211610a0857600080fd5b600e54610a1583836120d8565b1115610a4e5760405162461bcd60e51b815260206004820152600860248201526714d85b1948115b9960c21b6044820152606401610650565b600a546001600160a01b03163314610b105760105460ff1615610ab35760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610650565b81600d54610ac19190612104565b341015610acd57600080fd5b600f54821115610b105760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610650565b60005b82811015610b3657610b24846114f0565b80610b2e816121a1565b915050610b13565b50505050565b6108d383838360405180602001604052806000815250610f46565b60606000610b6483610d82565b905060008167ffffffffffffffff811115610b8157610b81612228565b604051908082528060200260200182016040528015610baa578160200160208202803683370190505b50905060005b82811015610bf157610bc28582610909565b828281518110610bd457610bd4612212565b602090810291909101015280610be9816121a1565b915050610bb0565b509392505050565b600a546001600160a01b03163314610c235760405162461bcd60e51b815260040161065090612052565b600d55565b6000610c3360085490565b8210610c965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610650565b60088281548110610ca957610ca9612212565b90600052602060002001549050919050565b600a546001600160a01b03163314610ce55760405162461bcd60e51b815260040161065090612052565b8051610cf890600c906020840190611bc5565b5050565b6000610d066114e5565b905090565b6000818152600260205260408120546001600160a01b0316806106205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610650565b60006001600160a01b038216610ded5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610650565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e335760405162461bcd60e51b815260040161065090612052565b6109ed6000611543565b60606001805461067b90612166565b6001600160a01b038216331415610ea55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610650565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610f3b5760405162461bcd60e51b815260040161065090612052565b6109ed3360a56109ef565b610f503383611243565b610f6c5760405162461bcd60e51b815260040161065090612087565b610b3684848484611595565b6000818152600260205260409020546060906001600160a01b0316610ff75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610650565b60006110016115c8565b90506000815111611021576040518060200160405280600081525061104c565b8061102b846115d7565b60405160200161103c929190611f3d565b6040516020818303038152906040525b9392505050565b600c805461106090612166565b80601f016020809104026020016040519081016040528092919081815260200182805461108c90612166565b80156110d95780601f106110ae576101008083540402835291602001916110d9565b820191906000526020600020905b8154815290600101906020018083116110bc57829003601f168201915b505050505081565b600a546001600160a01b0316331461110b5760405162461bcd60e51b815260040161065090612052565b6001600160a01b0381166111705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b61117981611543565b50565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806111b657506001600160e01b03198216635b5e139f60e01b145b8061062057506301ffc9a760e01b6001600160e01b0319831614610620565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061120a82610d0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610650565b60006112c783610d0b565b9050806001600160a01b0316846001600160a01b031614806113025750836001600160a01b03166112f7846106fe565b6001600160a01b0316145b8061133257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661134d82610d0b565b6001600160a01b0316146113b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610650565b6001600160a01b0382166114175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6114228383836116d5565b61142d6000826111d5565b6001600160a01b0383166000908152600360205260408120805460019290611456908490612123565b90915550506001600160a01b03821660009081526003602052604081208054600192906114849084906120d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610d06600b5490565b60006114fa6114e5565b905061150a600b80546001019055565b611514828261178d565b60405181907f4d86c4db8e0a33422fd14a95b7d2720e9fa0e2cec4083330a97531a433ef41b090600090a25050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a084848461133a565b6115ac848484846117a7565b610b365760405162461bcd60e51b815260040161065090612000565b6060600c805461067b90612166565b6060816115fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611625578061160f816121a1565b915061161e9050600a836120f0565b91506115ff565b60008167ffffffffffffffff81111561164057611640612228565b6040519080825280601f01601f19166020018201604052801561166a576020820181803683370190505b5090505b84156113325761167f600183612123565b915061168c600a866121bc565b6116979060306120d8565b60f81b8183815181106116ac576116ac612212565b60200101906001600160f81b031916908160001a9053506116ce600a866120f0565b945061166e565b6001600160a01b0383166117305761172b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611753565b816001600160a01b0316836001600160a01b0316146117535761175383826118b4565b6001600160a01b03821661176a576108d381611951565b826001600160a01b0316826001600160a01b0316146108d3576108d38282611a00565b610cf8828260405180602001604052806000815250611a44565b60006001600160a01b0384163b156118a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117eb903390899088908890600401611f6c565b602060405180830381600087803b15801561180557600080fd5b505af1925050508015611835575060408051601f3d908101601f1916820190925261183291810190611e92565b60015b61188f573d808015611863576040519150601f19603f3d011682016040523d82523d6000602084013e611868565b606091505b5080516118875760405162461bcd60e51b815260040161065090612000565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611332565b506001949350505050565b600060016118c184610d82565b6118cb9190612123565b60008381526007602052604090205490915080821461191e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196390600190612123565b6000838152600960205260408120546008805493945090928490811061198b5761198b612212565b9060005260206000200154905080600883815481106119ac576119ac612212565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e4576119e46121fc565b6001900381819060005260206000200160009055905550505050565b6000611a0b83610d82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611a4e8383611a77565b611a5b60008484846117a7565b6108d35760405162461bcd60e51b815260040161065090612000565b6001600160a01b038216611acd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610650565b6000818152600260205260409020546001600160a01b031615611b325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610650565b611b3e600083836116d5565b6001600160a01b0382166000908152600360205260408120805460019290611b679084906120d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bd190612166565b90600052602060002090601f016020900481019282611bf35760008555611c39565b82601f10611c0c57805160ff1916838001178555611c39565b82800160010185558215611c39579182015b82811115611c39578251825591602001919060010190611c1e565b50611c45929150611c49565b5090565b5b80821115611c455760008155600101611c4a565b600067ffffffffffffffff80841115611c7957611c79612228565b604051601f8501601f19908116603f01168101908282118183101715611ca157611ca1612228565b81604052809350858152868686011115611cba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ceb57600080fd5b919050565b80358015158114611ceb57600080fd5b600060208284031215611d1257600080fd5b61104c82611cd4565b60008060408385031215611d2e57600080fd5b611d3783611cd4565b9150611d4560208401611cd4565b90509250929050565b600080600060608486031215611d6357600080fd5b611d6c84611cd4565b9250611d7a60208501611cd4565b9150604084013590509250925092565b60008060008060808587031215611da057600080fd5b611da985611cd4565b9350611db760208601611cd4565b925060408501359150606085013567ffffffffffffffff811115611dda57600080fd5b8501601f81018713611deb57600080fd5b611dfa87823560208401611c5e565b91505092959194509250565b60008060408385031215611e1957600080fd5b611e2283611cd4565b9150611d4560208401611cf0565b60008060408385031215611e4357600080fd5b611e4c83611cd4565b946020939093013593505050565b600060208284031215611e6c57600080fd5b61104c82611cf0565b600060208284031215611e8757600080fd5b813561104c8161223e565b600060208284031215611ea457600080fd5b815161104c8161223e565b600060208284031215611ec157600080fd5b813567ffffffffffffffff811115611ed857600080fd5b8201601f81018413611ee957600080fd5b61133284823560208401611c5e565b600060208284031215611f0a57600080fd5b5035919050565b60008151808452611f2981602086016020860161213a565b601f01601f19169290920160200192915050565b60008351611f4f81846020880161213a565b835190830190611f6381836020880161213a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9f90830184611f11565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fe157835183529284019291840191600101611fc5565b50909695505050505050565b60208152600061104c6020830184611f11565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120eb576120eb6121d0565b500190565b6000826120ff576120ff6121e6565b500490565b600081600019048311821515161561211e5761211e6121d0565b500290565b600082821015612135576121356121d0565b500390565b60005b8381101561215557818101518382015260200161213d565b83811115610b365750506000910152565b600181811c9082168061217a57607f821691505b6020821081141561219b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121b5576121b56121d0565b5060010190565b6000826121cb576121cb6121e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117957600080fdfea264697066735822122070a6d3a188280d056b28bb407408f3ebe0b4af04107cdc2f8503c4afbcf6ed3c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80634f6ccce71161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610547578063d547cfb714610567578063d5abeb011461057c578063e985e9c514610592578063f2fde38b146105db57600080fd5b806395d89b41146104dd578063a22cb465146104f2578063b0f6742714610512578063b88d4fde1461052757600080fd5b80636352211e116100dc5780636352211e1461046a57806370a082311461048a578063715018a6146104aa5780638da5cb5b146104bf57600080fd5b80634f6ccce7146103fb57806355f804b31461041b57806359a7715a1461043b5780635c975abb1461045057600080fd5b8063239c70ae1161018557806340c10f191161015457806340c10f191461037b57806342842e0e1461038e578063438b6300146103ae57806344a0d68a146103db57600080fd5b8063239c70ae1461031d57806323b872dd146103335780632f745c59146103535780633ccfd60b1461037357600080fd5b8063088a4ed0116101c1578063088a4ed0146102a4578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e75565b6105fb565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611e5a565b610626565b005b34801561025657600080fd5b5061025f61066c565b60405161021f9190611fed565b34801561027857600080fd5b5061028c610287366004611ef8565b6106fe565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611ef8565b610793565b3480156102d057600080fd5b506102486102df366004611e30565b6107c2565b3480156102f057600080fd5b506102fa600d5481565b60405190815260200161021f565b34801561031457600080fd5b506008546102fa565b34801561032957600080fd5b506102fa600f5481565b34801561033f57600080fd5b5061024861034e366004611d4e565b6108d8565b34801561035f57600080fd5b506102fa61036e366004611e30565b610909565b61024861099f565b610248610389366004611e30565b6109ef565b34801561039a57600080fd5b506102486103a9366004611d4e565b610b3c565b3480156103ba57600080fd5b506103ce6103c9366004611d00565b610b57565b60405161021f9190611fa9565b3480156103e757600080fd5b506102486103f6366004611ef8565b610bf9565b34801561040757600080fd5b506102fa610416366004611ef8565b610c28565b34801561042757600080fd5b50610248610436366004611eaf565b610cbb565b34801561044757600080fd5b506102fa610cfc565b34801561045c57600080fd5b506010546102139060ff1681565b34801561047657600080fd5b5061028c610485366004611ef8565b610d0b565b34801561049657600080fd5b506102fa6104a5366004611d00565b610d82565b3480156104b657600080fd5b50610248610e09565b3480156104cb57600080fd5b50600a546001600160a01b031661028c565b3480156104e957600080fd5b5061025f610e3d565b3480156104fe57600080fd5b5061024861050d366004611e06565b610e4c565b34801561051e57600080fd5b50610248610f11565b34801561053357600080fd5b50610248610542366004611d8a565b610f46565b34801561055357600080fd5b5061025f610562366004611ef8565b610f78565b34801561057357600080fd5b5061025f611053565b34801561058857600080fd5b506102fa600e5481565b34801561059e57600080fd5b506102136105ad366004611d1b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102486105f6366004611d00565b6110e1565b60006001600160e01b0319821663780e9d6360e01b1480610620575061062082611185565b92915050565b600a546001600160a01b031633146106595760405162461bcd60e51b815260040161065090612052565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461067b90612166565b80601f01602080910402602001604051908101604052809291908181526020018280546106a790612166565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610650565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107bd5760405162461bcd60e51b815260040161065090612052565b600f55565b60006107cd82610d0b565b9050806001600160a01b0316836001600160a01b0316141561083b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610650565b336001600160a01b0382161480610857575061085781336105ad565b6108c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610650565b6108d383836111d5565b505050565b6108e23382611243565b6108fe5760405162461bcd60e51b815260040161065090612087565b6108d383838361133a565b600061091483610d82565b82106109765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610650565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109c95760405162461bcd60e51b815260040161065090612052565b60405133904780156108fc02916000818181858888f193505050506109ed57600080fd5b565b60006109f96114e5565b905060008211610a0857600080fd5b600e54610a1583836120d8565b1115610a4e5760405162461bcd60e51b815260206004820152600860248201526714d85b1948115b9960c21b6044820152606401610650565b600a546001600160a01b03163314610b105760105460ff1615610ab35760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610650565b81600d54610ac19190612104565b341015610acd57600080fd5b600f54821115610b105760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610650565b60005b82811015610b3657610b24846114f0565b80610b2e816121a1565b915050610b13565b50505050565b6108d383838360405180602001604052806000815250610f46565b60606000610b6483610d82565b905060008167ffffffffffffffff811115610b8157610b81612228565b604051908082528060200260200182016040528015610baa578160200160208202803683370190505b50905060005b82811015610bf157610bc28582610909565b828281518110610bd457610bd4612212565b602090810291909101015280610be9816121a1565b915050610bb0565b509392505050565b600a546001600160a01b03163314610c235760405162461bcd60e51b815260040161065090612052565b600d55565b6000610c3360085490565b8210610c965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610650565b60088281548110610ca957610ca9612212565b90600052602060002001549050919050565b600a546001600160a01b03163314610ce55760405162461bcd60e51b815260040161065090612052565b8051610cf890600c906020840190611bc5565b5050565b6000610d066114e5565b905090565b6000818152600260205260408120546001600160a01b0316806106205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610650565b60006001600160a01b038216610ded5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610650565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e335760405162461bcd60e51b815260040161065090612052565b6109ed6000611543565b60606001805461067b90612166565b6001600160a01b038216331415610ea55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610650565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610f3b5760405162461bcd60e51b815260040161065090612052565b6109ed3360a56109ef565b610f503383611243565b610f6c5760405162461bcd60e51b815260040161065090612087565b610b3684848484611595565b6000818152600260205260409020546060906001600160a01b0316610ff75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610650565b60006110016115c8565b90506000815111611021576040518060200160405280600081525061104c565b8061102b846115d7565b60405160200161103c929190611f3d565b6040516020818303038152906040525b9392505050565b600c805461106090612166565b80601f016020809104026020016040519081016040528092919081815260200182805461108c90612166565b80156110d95780601f106110ae576101008083540402835291602001916110d9565b820191906000526020600020905b8154815290600101906020018083116110bc57829003601f168201915b505050505081565b600a546001600160a01b0316331461110b5760405162461bcd60e51b815260040161065090612052565b6001600160a01b0381166111705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b61117981611543565b50565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806111b657506001600160e01b03198216635b5e139f60e01b145b8061062057506301ffc9a760e01b6001600160e01b0319831614610620565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061120a82610d0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610650565b60006112c783610d0b565b9050806001600160a01b0316846001600160a01b031614806113025750836001600160a01b03166112f7846106fe565b6001600160a01b0316145b8061133257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661134d82610d0b565b6001600160a01b0316146113b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610650565b6001600160a01b0382166114175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6114228383836116d5565b61142d6000826111d5565b6001600160a01b0383166000908152600360205260408120805460019290611456908490612123565b90915550506001600160a01b03821660009081526003602052604081208054600192906114849084906120d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610d06600b5490565b60006114fa6114e5565b905061150a600b80546001019055565b611514828261178d565b60405181907f4d86c4db8e0a33422fd14a95b7d2720e9fa0e2cec4083330a97531a433ef41b090600090a25050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a084848461133a565b6115ac848484846117a7565b610b365760405162461bcd60e51b815260040161065090612000565b6060600c805461067b90612166565b6060816115fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611625578061160f816121a1565b915061161e9050600a836120f0565b91506115ff565b60008167ffffffffffffffff81111561164057611640612228565b6040519080825280601f01601f19166020018201604052801561166a576020820181803683370190505b5090505b84156113325761167f600183612123565b915061168c600a866121bc565b6116979060306120d8565b60f81b8183815181106116ac576116ac612212565b60200101906001600160f81b031916908160001a9053506116ce600a866120f0565b945061166e565b6001600160a01b0383166117305761172b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611753565b816001600160a01b0316836001600160a01b0316146117535761175383826118b4565b6001600160a01b03821661176a576108d381611951565b826001600160a01b0316826001600160a01b0316146108d3576108d38282611a00565b610cf8828260405180602001604052806000815250611a44565b60006001600160a01b0384163b156118a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117eb903390899088908890600401611f6c565b602060405180830381600087803b15801561180557600080fd5b505af1925050508015611835575060408051601f3d908101601f1916820190925261183291810190611e92565b60015b61188f573d808015611863576040519150601f19603f3d011682016040523d82523d6000602084013e611868565b606091505b5080516118875760405162461bcd60e51b815260040161065090612000565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611332565b506001949350505050565b600060016118c184610d82565b6118cb9190612123565b60008381526007602052604090205490915080821461191e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196390600190612123565b6000838152600960205260408120546008805493945090928490811061198b5761198b612212565b9060005260206000200154905080600883815481106119ac576119ac612212565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e4576119e46121fc565b6001900381819060005260206000200160009055905550505050565b6000611a0b83610d82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611a4e8383611a77565b611a5b60008484846117a7565b6108d35760405162461bcd60e51b815260040161065090612000565b6001600160a01b038216611acd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610650565b6000818152600260205260409020546001600160a01b031615611b325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610650565b611b3e600083836116d5565b6001600160a01b0382166000908152600360205260408120805460019290611b679084906120d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bd190612166565b90600052602060002090601f016020900481019282611bf35760008555611c39565b82601f10611c0c57805160ff1916838001178555611c39565b82800160010185558215611c39579182015b82811115611c39578251825591602001919060010190611c1e565b50611c45929150611c49565b5090565b5b80821115611c455760008155600101611c4a565b600067ffffffffffffffff80841115611c7957611c79612228565b604051601f8501601f19908116603f01168101908282118183101715611ca157611ca1612228565b81604052809350858152868686011115611cba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ceb57600080fd5b919050565b80358015158114611ceb57600080fd5b600060208284031215611d1257600080fd5b61104c82611cd4565b60008060408385031215611d2e57600080fd5b611d3783611cd4565b9150611d4560208401611cd4565b90509250929050565b600080600060608486031215611d6357600080fd5b611d6c84611cd4565b9250611d7a60208501611cd4565b9150604084013590509250925092565b60008060008060808587031215611da057600080fd5b611da985611cd4565b9350611db760208601611cd4565b925060408501359150606085013567ffffffffffffffff811115611dda57600080fd5b8501601f81018713611deb57600080fd5b611dfa87823560208401611c5e565b91505092959194509250565b60008060408385031215611e1957600080fd5b611e2283611cd4565b9150611d4560208401611cf0565b60008060408385031215611e4357600080fd5b611e4c83611cd4565b946020939093013593505050565b600060208284031215611e6c57600080fd5b61104c82611cf0565b600060208284031215611e8757600080fd5b813561104c8161223e565b600060208284031215611ea457600080fd5b815161104c8161223e565b600060208284031215611ec157600080fd5b813567ffffffffffffffff811115611ed857600080fd5b8201601f81018413611ee957600080fd5b61133284823560208401611c5e565b600060208284031215611f0a57600080fd5b5035919050565b60008151808452611f2981602086016020860161213a565b601f01601f19169290920160200192915050565b60008351611f4f81846020880161213a565b835190830190611f6381836020880161213a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9f90830184611f11565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611fe157835183529284019291840191600101611fc5565b50909695505050505050565b60208152600061104c6020830184611f11565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120eb576120eb6121d0565b500190565b6000826120ff576120ff6121e6565b500490565b600081600019048311821515161561211e5761211e6121d0565b500290565b600082821015612135576121356121d0565b500390565b60005b8381101561215557818101518382015260200161213d565b83811115610b365750506000910152565b600181811c9082168061217a57607f821691505b6020821081141561219b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121b5576121b56121d0565b5060010190565b6000826121cb576121cb6121e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117957600080fdfea264697066735822122070a6d3a188280d056b28bb407408f3ebe0b4af04107cdc2f8503c4afbcf6ed3c64736f6c63430008070033

Deployed Bytecode Sourcemap

52273:2705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46086:224;;;;;;;;;;-1:-1:-1;46086:224:0;;;;;:::i;:::-;;:::i;:::-;;;6540:14:1;;6533:22;6515:41;;6503:2;6488:18;46086:224:0;;;;;;;;54532:79;;;;;;;;;;-1:-1:-1;54532:79:0;;;;;:::i;:::-;;:::i;:::-;;32253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33812:221::-;;;;;;;;;;-1:-1:-1;33812:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;33812:221:0;5037:203:1;54721:124:0;;;;;;;;;;-1:-1:-1;54721:124:0;;;;;:::i;:::-;;:::i;33335:411::-;;;;;;;;;;-1:-1:-1;33335:411:0;;;;;:::i;:::-;;:::i;52514:33::-;;;;;;;;;;;;;;;;;;;15179:25:1;;;15167:2;15152:18;52514:33:0;15033:177:1;46726:113:0;;;;;;;;;;-1:-1:-1;46814:10:0;:17;46726:113;;52593:34;;;;;;;;;;;;;;;;34702:339;;;;;;;;;;-1:-1:-1;34702:339:0;;;;;:::i;:::-;;:::i;46394:256::-;;;;;;;;;;-1:-1:-1;46394:256:0;;;;;:::i;:::-;;:::i;54853:120::-;;;:::i;53186:561::-;;;;;;:::i;:::-;;:::i;35112:185::-;;;;;;;;;;-1:-1:-1;35112:185:0;;;;;:::i;:::-;;:::i;54171:353::-;;;;;;;;;;-1:-1:-1;54171:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54621:92::-;;;;;;;;;;-1:-1:-1;54621:92:0;;;;;:::i;:::-;;:::i;46916:233::-;;;;;;;;;;-1:-1:-1;46916:233:0;;;;;:::i;:::-;;:::i;54062:101::-;;;;;;;;;;-1:-1:-1;54062:101:0;;;;;:::i;:::-;;:::i;53087:91::-;;;;;;;;;;;;;:::i;52634:26::-;;;;;;;;;;-1:-1:-1;52634:26:0;;;;;;;;31947:239;;;;;;;;;;-1:-1:-1;31947:239:0;;;;;:::i;:::-;;:::i;31677:208::-;;;;;;;;;;-1:-1:-1;31677:208:0;;;;;:::i;:::-;;:::i;10853:94::-;;;;;;;;;;;;;:::i;10202:87::-;;;;;;;;;;-1:-1:-1;10275:6:0;;-1:-1:-1;;;;;10275:6:0;10202:87;;32422:104;;;;;;;;;;;;;:::i;34105:295::-;;;;;;;;;;-1:-1:-1;34105:295:0;;;;;:::i;:::-;;:::i;52844:129::-;;;;;;;;;;;;;:::i;35368:328::-;;;;;;;;;;-1:-1:-1;35368:328:0;;;;;:::i;:::-;;:::i;32597:334::-;;;;;;;;;;-1:-1:-1;32597:334:0;;;;;:::i;:::-;;:::i;52481:26::-;;;;;;;;;;;;;:::i;52554:32::-;;;;;;;;;;;;;;;;34471:164;;;;;;;;;;-1:-1:-1;34471:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34592:25:0;;;34568:4;34592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34471:164;11102:192;;;;;;;;;;-1:-1:-1;11102:192:0;;;;;:::i;:::-;;:::i;46086:224::-;46188:4;-1:-1:-1;;;;;;46212:50:0;;-1:-1:-1;;;46212:50:0;;:90;;;46266:36;46290:11;46266:23;:36::i;:::-;46205:97;46086:224;-1:-1:-1;;46086:224:0:o;54532:79::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;;;;;;;;;54588:6:::1;:15:::0;;-1:-1:-1;;54588:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54532:79::o;32253:100::-;32307:13;32340:5;32333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32253:100;:::o;33812:221::-;33888:7;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;33908:73;;;;-1:-1:-1;;;33908:73:0;;12066:2:1;33908:73:0;;;12048:21:1;12105:2;12085:18;;;12078:30;12144:34;12124:18;;;12117:62;-1:-1:-1;;;12195:18:1;;;12188:42;12247:19;;33908:73:0;11864:408:1;33908:73:0;-1:-1:-1;34001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34001:24:0;;33812:221::o;54721:124::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54804:13:::1;:33:::0;54721:124::o;33335:411::-;33416:13;33432:23;33447:7;33432:14;:23::i;:::-;33416:39;;33480:5;-1:-1:-1;;;;;33474:11:0;:2;-1:-1:-1;;;;;33474:11:0;;;33466:57;;;;-1:-1:-1;;;33466:57:0;;13666:2:1;33466:57:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:34;13724:18;;;13717:62;-1:-1:-1;;;13795:18:1;;;13788:31;13836:19;;33466:57:0;13464:397:1;33466:57:0;9072:10;-1:-1:-1;;;;;33558:21:0;;;;:62;;-1:-1:-1;33583:37:0;33600:5;9072:10;34471:164;:::i;33583:37::-;33536:168;;;;-1:-1:-1;;;33536:168:0;;10459:2:1;33536:168:0;;;10441:21:1;10498:2;10478:18;;;10471:30;10537:34;10517:18;;;10510:62;10608:26;10588:18;;;10581:54;10652:19;;33536:168:0;10257:420:1;33536:168:0;33717:21;33726:2;33730:7;33717:8;:21::i;:::-;33405:341;33335:411;;:::o;34702:339::-;34897:41;9072:10;34930:7;34897:18;:41::i;:::-;34889:103;;;;-1:-1:-1;;;34889:103:0;;;;;;;:::i;:::-;35005:28;35015:4;35021:2;35025:7;35005:9;:28::i;46394:256::-;46491:7;46527:23;46544:5;46527:16;:23::i;:::-;46519:5;:31;46511:87;;;;-1:-1:-1;;;46511:87:0;;7336:2:1;46511:87:0;;;7318:21:1;7375:2;7355:18;;;7348:30;7414:34;7394:18;;;7387:62;-1:-1:-1;;;7465:18:1;;;7458:41;7516:19;;46511:87:0;7134:407:1;46511:87:0;-1:-1:-1;;;;;;46616:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46394:256::o;54853:120::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54917:47:::1;::::0;54925:10:::1;::::0;54942:21:::1;54917:47:::0;::::1;;;::::0;::::1;::::0;;;54942:21;54925:10;54917:47;::::1;;;;;;54909:56;;;::::0;::::1;;54853:120::o:0;53186:561::-;53260:14;53277;:12;:14::i;:::-;53260:31;;53334:1;53320:11;:15;53312:24;;;;;;53379:9;;53355:20;53364:11;53355:6;:20;:::i;:::-;:33;;53347:54;;;;-1:-1:-1;;;53347:54:0;;14068:2:1;53347:54:0;;;14050:21:1;14107:1;14087:18;;;14080:29;-1:-1:-1;;;14125:18:1;;;14118:38;14173:18;;53347:54:0;13866:331:1;53347:54:0;10275:6;;-1:-1:-1;;;;;10275:6:0;53418:10;:21;53414:226;;53465:6;;;;53464:7;53456:47;;;;-1:-1:-1;;;53456:47:0;;9690:2:1;53456:47:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:29;9748:18;;;9741:57;9815:18;;53456:47:0;9488:351:1;53456:47:0;53546:11;53539:4;;:18;;;;:::i;:::-;53526:9;:31;;53518:40;;;;;;53596:13;;53581:11;:28;;53573:55;;;;-1:-1:-1;;;53573:55:0;;6993:2:1;53573:55:0;;;6975:21:1;7032:2;7012:18;;;7005:30;-1:-1:-1;;;7051:18:1;;;7044:44;7105:18;;53573:55:0;6791:338:1;53573:55:0;53657:9;53652:88;53676:11;53672:1;:15;53652:88;;;53709:19;53724:3;53709:14;:19::i;:::-;53689:3;;;;:::i;:::-;;;;53652:88;;;;53249:498;53186:561;;:::o;35112:185::-;35250:39;35267:4;35273:2;35277:7;35250:39;;;;;;;;;;;;:16;:39::i;54171:353::-;54233:16;54262:18;54283:17;54293:6;54283:9;:17::i;:::-;54262:38;;54313:25;54355:10;54341:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54341:25:0;;54313:53;;54382:9;54377:112;54401:10;54397:1;:14;54377:112;;;54447:30;54467:6;54475:1;54447:19;:30::i;:::-;54433:8;54442:1;54433:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54413:3;;;;:::i;:::-;;;;54377:112;;;-1:-1:-1;54508:8:0;54171:353;-1:-1:-1;;;54171:353:0:o;54621:92::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54690:4:::1;:15:::0;54621:92::o;46916:233::-;46991:7;47027:30;46814:10;:17;;46726:113;47027:30;47019:5;:38;47011:95;;;;-1:-1:-1;;;47011:95:0;;14822:2:1;47011:95:0;;;14804:21:1;14861:2;14841:18;;;14834:30;14900:34;14880:18;;;14873:62;-1:-1:-1;;;14951:18:1;;;14944:42;15003:19;;47011:95:0;14620:408:1;47011:95:0;47124:10;47135:5;47124:17;;;;;;;;:::i;:::-;;;;;;;;;47117:24;;46916:233;;;:::o;54062:101::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54133:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54062:101:::0;:::o;53087:91::-;53129:7;53156:14;:12;:14::i;:::-;53149:21;;53087:91;:::o;31947:239::-;32019:7;32055:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32055:16:0;32090:19;32082:73;;;;-1:-1:-1;;;32082:73:0;;11295:2:1;32082:73:0;;;11277:21:1;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:39;11473:19;;32082:73:0;11093:405:1;31677:208:0;31749:7;-1:-1:-1;;;;;31777:19:0;;31769:74;;;;-1:-1:-1;;;31769:74:0;;10884:2:1;31769:74:0;;;10866:21:1;10923:2;10903:18;;;10896:30;10962:34;10942:18;;;10935:62;-1:-1:-1;;;11013:18:1;;;11006:40;11063:19;;31769:74:0;10682:406:1;31769:74:0;-1:-1:-1;;;;;;31861:16:0;;;;;:9;:16;;;;;;;31677:208::o;10853:94::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;10918:21:::1;10936:1;10918:9;:21::i;32422:104::-:0;32478:13;32511:7;32504:14;;;;;:::i;34105:295::-;-1:-1:-1;;;;;34208:24:0;;9072:10;34208:24;;34200:62;;;;-1:-1:-1;;;34200:62:0;;9336:2:1;34200:62:0;;;9318:21:1;9375:2;9355:18;;;9348:30;9414:27;9394:18;;;9387:55;9459:18;;34200:62:0;9134:349:1;34200:62:0;9072:10;34275:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34275:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34275:53:0;;;;;;;;;;34344:48;;6515:41:1;;;34275:42:0;;9072:10;34344:48;;6488:18:1;34344:48:0;;;;;;;34105:295;;:::o;52844:129::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;52903:21:::1;52908:10;52920:3;52903:4;:21::i;35368:328::-:0;35543:41;9072:10;35576:7;35543:18;:41::i;:::-;35535:103;;;;-1:-1:-1;;;35535:103:0;;;;;;;:::i;:::-;35649:39;35663:4;35669:2;35673:7;35682:5;35649:13;:39::i;32597:334::-;37271:4;37295:16;;;:7;:16;;;;;;32670:13;;-1:-1:-1;;;;;37295:16:0;32696:76;;;;-1:-1:-1;;;32696:76:0;;13250:2:1;32696:76:0;;;13232:21:1;13289:2;13269:18;;;13262:30;13328:34;13308:18;;;13301:62;-1:-1:-1;;;13379:18:1;;;13372:45;13434:19;;32696:76:0;13048:411:1;32696:76:0;32785:21;32809:10;:8;:10::i;:::-;32785:34;;32861:1;32843:7;32837:21;:25;:86;;;;;;;;;;;;;;;;;32889:7;32898:18;:7;:16;:18::i;:::-;32872:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32837:86;32830:93;32597:334;-1:-1:-1;;;32597:334:0:o;52481:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11102:192::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11191:22:0;::::1;11183:73;;;::::0;-1:-1:-1;;;11183:73:0;;8167:2:1;11183:73:0::1;::::0;::::1;8149:21:1::0;8206:2;8186:18;;;8179:30;8245:34;8225:18;;;8218:62;-1:-1:-1;;;8296:18:1;;;8289:36;8342:19;;11183:73:0::1;7965:402:1::0;11183:73:0::1;11267:19;11277:8;11267:9;:19::i;:::-;11102:192:::0;:::o;939:127::-;1028:19;;1046:1;1028:19;;;939:127::o;31308:305::-;31410:4;-1:-1:-1;;;;;;31447:40:0;;-1:-1:-1;;;31447:40:0;;:105;;-1:-1:-1;;;;;;;31504:48:0;;-1:-1:-1;;;31504:48:0;31447:105;:158;;;-1:-1:-1;;;;;;;;;;13319:40:0;;;31569:36;13210:157;41188:174;41263:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41263:29:0;-1:-1:-1;;;;;41263:29:0;;;;;;;;:24;;41317:23;41263:24;41317:14;:23::i;:::-;-1:-1:-1;;;;;41308:46:0;;;;;;;;;;;41188:174;;:::o;37500:348::-;37593:4;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;37610:73;;;;-1:-1:-1;;;37610:73:0;;10046:2:1;37610:73:0;;;10028:21:1;10085:2;10065:18;;;10058:30;10124:34;10104:18;;;10097:62;-1:-1:-1;;;10175:18:1;;;10168:42;10227:19;;37610:73:0;9844:408:1;37610:73:0;37694:13;37710:23;37725:7;37710:14;:23::i;:::-;37694:39;;37763:5;-1:-1:-1;;;;;37752:16:0;:7;-1:-1:-1;;;;;37752:16:0;;:51;;;;37796:7;-1:-1:-1;;;;;37772:31:0;:20;37784:7;37772:11;:20::i;:::-;-1:-1:-1;;;;;37772:31:0;;37752:51;:87;;;-1:-1:-1;;;;;;34592:25:0;;;34568:4;34592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37807:32;37744:96;37500:348;-1:-1:-1;;;;37500:348:0:o;40492:578::-;40651:4;-1:-1:-1;;;;;40624:31:0;:23;40639:7;40624:14;:23::i;:::-;-1:-1:-1;;;;;40624:31:0;;40616:85;;;;-1:-1:-1;;;40616:85:0;;12840:2:1;40616:85:0;;;12822:21:1;12879:2;12859:18;;;12852:30;12918:34;12898:18;;;12891:62;-1:-1:-1;;;12969:18:1;;;12962:39;13018:19;;40616:85:0;12638:405:1;40616:85:0;-1:-1:-1;;;;;40720:16:0;;40712:65;;;;-1:-1:-1;;;40712:65:0;;8931:2:1;40712:65:0;;;8913:21:1;8970:2;8950:18;;;8943:30;9009:34;8989:18;;;8982:62;-1:-1:-1;;;9060:18:1;;;9053:34;9104:19;;40712:65:0;8729:400:1;40712:65:0;40790:39;40811:4;40817:2;40821:7;40790:20;:39::i;:::-;40894:29;40911:1;40915:7;40894:8;:29::i;:::-;-1:-1:-1;;;;;40936:15:0;;;;;;:9;:15;;;;;:20;;40955:1;;40936:15;:20;;40955:1;;40936:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40967:13:0;;;;;;:9;:13;;;;;:18;;40984:1;;40967:13;:18;;40984:1;;40967:18;:::i;:::-;;;;-1:-1:-1;;40996:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40996:21:0;-1:-1:-1;;;;;40996:21:0;;;;;;;;;41035:27;;40996:16;;41035:27;;;;;;;40492:578;;;:::o;52981:98::-;53028:4;53052:19;:9;909:14;;817:114;53755:178;53811:7;53821:14;:12;:14::i;:::-;53811:24;;53846:21;:9;1028:19;;1046:1;1028:19;;;939:127;53846:21;53878:18;53888:3;53893:2;53878:9;:18::i;:::-;53912:13;;53922:2;;53912:13;;;;;53800:133;53755:178;:::o;11302:173::-;11377:6;;;-1:-1:-1;;;;;11394:17:0;;;-1:-1:-1;;;;;;11394:17:0;;;;;;;11427:40;;11377:6;;;11394:17;11377:6;;11427:40;;11358:16;;11427:40;11347:128;11302:173;:::o;36578:315::-;36735:28;36745:4;36751:2;36755:7;36735:9;:28::i;:::-;36782:48;36805:4;36811:2;36815:7;36824:5;36782:22;:48::i;:::-;36774:111;;;;-1:-1:-1;;;36774:111:0;;;;;;;:::i;53941:113::-;54001:13;54034:12;54027:19;;;;;:::i;13685:723::-;13741:13;13962:10;13958:53;;-1:-1:-1;;13989:10:0;;;;;;;;;;;;-1:-1:-1;;;13989:10:0;;;;;13685:723::o;13958:53::-;14036:5;14021:12;14077:78;14084:9;;14077:78;;14110:8;;;;:::i;:::-;;-1:-1:-1;14133:10:0;;-1:-1:-1;14141:2:0;14133:10;;:::i;:::-;;;14077:78;;;14165:19;14197:6;14187:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14187:17:0;;14165:39;;14215:154;14222:10;;14215:154;;14249:11;14259:1;14249:11;;:::i;:::-;;-1:-1:-1;14318:10:0;14326:2;14318:5;:10;:::i;:::-;14305:24;;:2;:24;:::i;:::-;14292:39;;14275:6;14282;14275:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14275:56:0;;;;;;;;-1:-1:-1;14346:11:0;14355:2;14346:11;;:::i;:::-;;;14215:154;;47762:589;-1:-1:-1;;;;;47968:18:0;;47964:187;;48003:40;48035:7;49178:10;:17;;49151:24;;;;:15;:24;;;;;:44;;;49206:24;;;;;;;;;;;;49074:164;48003:40;47964:187;;;48073:2;-1:-1:-1;;;;;48065:10:0;:4;-1:-1:-1;;;;;48065:10:0;;48061:90;;48092:47;48125:4;48131:7;48092:32;:47::i;:::-;-1:-1:-1;;;;;48165:16:0;;48161:183;;48198:45;48235:7;48198:36;:45::i;48161:183::-;48271:4;-1:-1:-1;;;;;48265:10:0;:2;-1:-1:-1;;;;;48265:10:0;;48261:83;;48292:40;48320:2;48324:7;48292:27;:40::i;38190:110::-;38266:26;38276:2;38280:7;38266:26;;;;;;;;;;;;:9;:26::i;41927:799::-;42082:4;-1:-1:-1;;;;;42103:13:0;;16535:20;16583:8;42099:620;;42139:72;;-1:-1:-1;;;42139:72:0;;-1:-1:-1;;;;;42139:36:0;;;;;:72;;9072:10;;42190:4;;42196:7;;42205:5;;42139:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42139:72:0;;;;;;;;-1:-1:-1;;42139:72:0;;;;;;;;;;;;:::i;:::-;;;42135:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42381:13:0;;42377:272;;42424:60;;-1:-1:-1;;;42424:60:0;;;;;;;:::i;42377:272::-;42599:6;42593:13;42584:6;42580:2;42576:15;42569:38;42135:529;-1:-1:-1;;;;;;42262:51:0;-1:-1:-1;;;42262:51:0;;-1:-1:-1;42255:58:0;;42099:620;-1:-1:-1;42703:4:0;41927:799;;;;;;:::o;49865:988::-;50131:22;50181:1;50156:22;50173:4;50156:16;:22::i;:::-;:26;;;;:::i;:::-;50193:18;50214:26;;;:17;:26;;;;;;50131:51;;-1:-1:-1;50347:28:0;;;50343:328;;-1:-1:-1;;;;;50414:18:0;;50392:19;50414:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50465:30;;;;;;:44;;;50582:30;;:17;:30;;;;;:43;;;50343:328;-1:-1:-1;50767:26:0;;;;:17;:26;;;;;;;;50760:33;;;-1:-1:-1;;;;;50811:18:0;;;;;:12;:18;;;;;:34;;;;;;;50804:41;49865:988::o;51148:1079::-;51426:10;:17;51401:22;;51426:21;;51446:1;;51426:21;:::i;:::-;51458:18;51479:24;;;:15;:24;;;;;;51852:10;:26;;51401:46;;-1:-1:-1;51479:24:0;;51401:46;;51852:26;;;;;;:::i;:::-;;;;;;;;;51830:48;;51916:11;51891:10;51902;51891:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51996:28;;;:15;:28;;;;;;;:41;;;52168:24;;;;;52161:31;52203:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51219:1008;;;51148:1079;:::o;48652:221::-;48737:14;48754:20;48771:2;48754:16;:20::i;:::-;-1:-1:-1;;;;;48785:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48830:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48652:221:0:o;38527:321::-;38657:18;38663:2;38667:7;38657:5;:18::i;:::-;38708:54;38739:1;38743:2;38747:7;38756:5;38708:22;:54::i;:::-;38686:154;;;;-1:-1:-1;;;38686:154:0;;;;;;;:::i;39184:382::-;-1:-1:-1;;;;;39264:16:0;;39256:61;;;;-1:-1:-1;;;39256:61:0;;11705:2:1;39256:61:0;;;11687:21:1;;;11724:18;;;11717:30;11783:34;11763:18;;;11756:62;11835:18;;39256:61:0;11503:356:1;39256:61:0;37271:4;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;:30;39328:58;;;;-1:-1:-1;;;39328:58:0;;8574:2:1;39328:58:0;;;8556:21:1;8613:2;8593:18;;;8586:30;8652;8632:18;;;8625:58;8700:18;;39328:58:0;8372:352:1;39328:58:0;39399:45;39428:1;39432:2;39436:7;39399:20;:45::i;:::-;-1:-1:-1;;;;;39457:13:0;;;;;;:9;:13;;;;;:18;;39474:1;;39457:13;:18;;39474:1;;39457:18;:::i;:::-;;;;-1:-1:-1;;39486:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39486:21:0;-1:-1:-1;;;;;39486:21:0;;;;;;;;39525:33;;39486:16;;;39525:33;;39486:16;;39525:33;39184:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5738:632::-;5909:2;5961:21;;;6031:13;;5934:18;;;6053:22;;;5880:4;;5909:2;6132:15;;;;6106:2;6091:18;;;5880:4;6175:169;6189:6;6186:1;6183:13;6175:169;;;6250:13;;6238:26;;6319:15;;;;6284:12;;;;6211:1;6204:9;6175:169;;;-1:-1:-1;6361:3:1;;5738:632;-1:-1:-1;;;;;;5738:632:1:o;6567:219::-;6716:2;6705:9;6698:21;6679:4;6736:44;6776:2;6765:9;6761:18;6753:6;6736:44;:::i;7546:414::-;7748:2;7730:21;;;7787:2;7767:18;;;7760:30;7826:34;7821:2;7806:18;;7799:62;-1:-1:-1;;;7892:2:1;7877:18;;7870:48;7950:3;7935:19;;7546:414::o;12277:356::-;12479:2;12461:21;;;12498:18;;;12491:30;12557:34;12552:2;12537:18;;12530:62;12624:2;12609:18;;12277:356::o;14202:413::-;14404:2;14386:21;;;14443:2;14423:18;;;14416:30;14482:34;14477:2;14462:18;;14455:62;-1:-1:-1;;;14548:2:1;14533:18;;14526:47;14605:3;14590:19;;14202:413::o;15215:128::-;15255:3;15286:1;15282:6;15279:1;15276:13;15273:39;;;15292:18;;:::i;:::-;-1:-1:-1;15328:9:1;;15215:128::o;15348:120::-;15388:1;15414;15404:35;;15419:18;;:::i;:::-;-1:-1:-1;15453:9:1;;15348:120::o;15473:168::-;15513:7;15579:1;15575;15571:6;15567:14;15564:1;15561:21;15556:1;15549:9;15542:17;15538:45;15535:71;;;15586:18;;:::i;:::-;-1:-1:-1;15626:9:1;;15473:168::o;15646:125::-;15686:4;15714:1;15711;15708:8;15705:34;;;15719:18;;:::i;:::-;-1:-1:-1;15756:9:1;;15646:125::o;15776:258::-;15848:1;15858:113;15872:6;15869:1;15866:13;15858:113;;;15948:11;;;15942:18;15929:11;;;15922:39;15894:2;15887:10;15858:113;;;15989:6;15986:1;15983:13;15980:48;;;-1:-1:-1;;16024:1:1;16006:16;;15999:27;15776:258::o;16039:380::-;16118:1;16114:12;;;;16161;;;16182:61;;16236:4;16228:6;16224:17;16214:27;;16182:61;16289:2;16281:6;16278:14;16258:18;16255:38;16252:161;;;16335:10;16330:3;16326:20;16323:1;16316:31;16370:4;16367:1;16360:15;16398:4;16395:1;16388:15;16252:161;;16039:380;;;:::o;16424:135::-;16463:3;-1:-1:-1;;16484:17:1;;16481:43;;;16504:18;;:::i;:::-;-1:-1:-1;16551:1:1;16540:13;;16424:135::o;16564:112::-;16596:1;16622;16612:35;;16627:18;;:::i;:::-;-1:-1:-1;16661:9:1;;16564:112::o;16681:127::-;16742:10;16737:3;16733:20;16730:1;16723:31;16773:4;16770:1;16763:15;16797:4;16794:1;16787:15;16813:127;16874:10;16869:3;16865:20;16862:1;16855:31;16905:4;16902:1;16895:15;16929:4;16926:1;16919:15;16945:127;17006:10;17001:3;16997:20;16994:1;16987:31;17037:4;17034:1;17027:15;17061:4;17058:1;17051:15;17077:127;17138:10;17133:3;17129:20;17126:1;17119:31;17169:4;17166:1;17159:15;17193:4;17190:1;17183:15;17209:127;17270:10;17265:3;17261:20;17258:1;17251:31;17301:4;17298:1;17291:15;17325:4;17322:1;17315:15;17341:131;-1:-1:-1;;;;;;17415:32:1;;17405:43;;17395:71;;17462:1;17459;17452:12

Swarm Source

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