ETH Price: $3,363.99 (+0.27%)
Gas: 7 Gwei

Token

FreshApes (FRESH)
 

Overview

Max Total Supply

777 FRESH

Holders

264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FRESH
0xBfb7cb31004F2506Fa63048B62Db21dAC8781Ae8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fresh Apes is a collection of 1,000 unique and totally fresh NFTs inspired by 80s and 90s pop culture. Join the Fresh Apes on The Journey, a wacky adventure trilogy that includes two FREE subsequent mints, a FREE piece of Fresh Apes merch, and much, much more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FreshApes

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-11-06
*/

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

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



pragma solidity ^0.8.0;

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

// 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/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// 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/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/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.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();
    }
}

// File: contracts/FreshApes.sol



pragma solidity 0.8.7;




contract FreshApes is ERC721Enumerable, Ownable {
    
    using SafeMath for uint256;
    
    string public baseTokenURI; 
    uint256 public constant PURCHASE_LIMIT = 10;
    uint256 public constant PRESALE_PURCHASE_LIMIT = 10;
    uint256 public constant MAX_APES = 10000;
    uint256 public price = 0.08 ether;
    uint256 public saleState = 0;  // 0 = paused, 1 = presale, 2 = live
    bool ownerMintsCompleted = false;
    
    mapping (address => uint256) public whitelistAllocations;
    
    // withdraw addresses
    address public a1;
    address public a2;
    address public a3;
    
    //constructor takes in baseTokenURI
    constructor(string memory _baseTokenURI) ERC721("FreshApes","FRESH") {
        setBaseURI(_baseTokenURI);
    }
    
    //mint function
    function mintApes(uint256 num) public payable{
        uint256 supply = totalSupply();
        require( saleState > 1,             "Main sale is not active" );
        require( num <= PURCHASE_LIMIT,     "Requested mints exceed maximum" );
        require( supply + num <= MAX_APES,  "Requested mints exceed remaining supply" );
        require( msg.value >= price * num,  "Ether sent is insufficient" );
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    //presale mint function
    function preSaleMintApes(uint256 num) public payable{
        uint256 supply = totalSupply();
        uint256 mintsAvail = whitelistAllocations[msg.sender];
        require( saleState > 0,             "Presale is not active" );
        require( mintsAvail > 0,            "No mints are available to user" );
        require( num <= mintsAvail,         "Requested mints exceed user allocation" );
        require( supply + num <= MAX_APES,  "Requested mints exceed remaining supply" );
        require( msg.value >= price * num,  "Ether sent is insufficient" );
        whitelistAllocations[msg.sender] = mintsAvail - num;
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    //views
    
    //override so openzeppelin tokenURI() can utilize the baseTokenURI we set
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    //setters
    
    function addToWhitelist(address[] memory _addressList) public onlyOwner {
        for(uint256 i; i < _addressList.length; i++){
            whitelistAllocations[_addressList[i]] = PRESALE_PURCHASE_LIMIT;
        }
    }
    
    //if eth moons, price may have to be adjusted
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    // 0 = paused, 1 = presale, 2 = live 
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    
    function setWithdrawAddresses(address[] memory _a) public onlyOwner {
        a1 = _a[0];
        a2 = _a[1];
        a3 = _a[2];
        
        //creators get first three apes 
        //we want to be a part of the community and have skin in the game
        if( ownerMintsCompleted == false) {
            ownerMintsCompleted = true;
            _safeMint( a1, 0);
            _safeMint( a2, 1);
            _safeMint( a3, 2);
        }
        
    }
    
    //creator utils
    
    function giveAway(address _to, uint256 _count) external onlyOwner() {
        uint256 supply = totalSupply();
        require( supply + _count <= MAX_APES,  "Requested mints exceed remaining supply" );
        for(uint256 i; i < _count; i++){
            _safeMint( _to, supply + i );
        }
    }
    
    function withdrawBalance() public payable onlyOwner {
        uint256 _payment = address(this).balance / 3;
        
        (bool success, ) = payable(a1).call{value: _payment}("");
        require(success, "Transfer failed to a1.");
        (bool success2, ) = payable(a2).call{value: _payment}("");
        require(success2, "Transfer failed to a2.");
        (bool success3, ) = payable(a3).call{value: _payment}("");
        require(success3, "Transfer failed to a3."); 
    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"MAX_APES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintApes","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":"uint256","name":"num","type":"uint256"}],"name":"preSaleMintApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setWithdrawAddresses","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267011c37937e080000600c556000600d55600e805460ff191690553480156200002c57600080fd5b5060405162002d3c38038062002d3c8339810160408190526200004f9162000256565b604080518082018252600981526846726573684170657360b81b60208083019182528351808501909452600584526408ca48aa6960db1b9084015281519192916200009d91600091620001b0565b508051620000b3906001906020840190620001b0565b505050620000d0620000ca620000e260201b60201c565b620000e6565b620000db8162000138565b5062000385565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ac90600b906020840190620001b0565b5050565b828054620001be9062000332565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b600060208083850312156200026a57600080fd5b82516001600160401b03808211156200028257600080fd5b818501915085601f8301126200029757600080fd5b815181811115620002ac57620002ac6200036f565b604051601f8201601f19908116603f01168101908382118183101715620002d757620002d76200036f565b816040528281528886848701011115620002f057600080fd5b600093505b82841015620003145784840186015181850187015292850192620002f5565b82841115620003265760008684830101525b98975050505050505050565b600181811c908216806200034757607f821691505b602082108114156200036957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129a780620003956000396000f3fe6080604052600436106102305760003560e01c80637136fbff1161012e578063a22cb465116100ab578063d547cfb71161006f578063d547cfb71461063f578063d75e611014610443578063e985e9c514610654578063eeca3ba81461069d578063f2fde38b146106ca57600080fd5b8063a22cb465146105a9578063b88d4fde146105c9578063bb8a16bd146105e9578063c87b56dd146105ff578063ca8001441461061f57600080fd5b80639426eef8116100f25780639426eef81461051e57806395d89b411461053e578063969e9d0c146105535780639dfd8d2e14610573578063a035b1fe1461059357600080fd5b80637136fbff14610498578063715018a6146104ab5780637f649783146104c05780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101bc578063603f4d5211610180578063603f4d521461041a578063617152151461043057806362d0f657146104435780636352211e1461045857806370a082311461047857600080fd5b806342842e0e14610385578063438b6300146103a55780634f6ccce7146103d257806355f804b3146103f25780635fd8c7101461041257600080fd5b8063095ea7b311610203578063095ea7b3146102e6578063119552a11461030657806318160ddd1461032657806323b872dd146103455780632f745c591461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063084c4088146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461251a565b6106ea565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610715565b6040516102619190612692565b34801561029857600080fd5b506102ac6102a736600461259d565b6107a7565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461259d565b610841565b005b3480156102f257600080fd5b506102e461030136600461243c565b610870565b34801561031257600080fd5b506010546102ac906001600160a01b031681565b34801561033257600080fd5b506008545b604051908152602001610261565b34801561035157600080fd5b506102e4610360366004612348565b610986565b34801561037157600080fd5b5061033761038036600461243c565b6109b7565b34801561039157600080fd5b506102e46103a0366004612348565b610a4d565b3480156103b157600080fd5b506103c56103c03660046122fa565b610a68565b604051610261919061264e565b3480156103de57600080fd5b506103376103ed36600461259d565b610b0a565b3480156103fe57600080fd5b506102e461040d366004612554565b610b9d565b6102e4610bde565b34801561042657600080fd5b50610337600d5481565b6102e461043e36600461259d565b610df4565b34801561044f57600080fd5b50610337600a81565b34801561046457600080fd5b506102ac61047336600461259d565b610f5c565b34801561048457600080fd5b506103376104933660046122fa565b610fd3565b6102e46104a636600461259d565b61105a565b3480156104b757600080fd5b506102e461123d565b3480156104cc57600080fd5b506102e46104db366004612466565b611273565b3480156104ec57600080fd5b50600a546001600160a01b03166102ac565b34801561050a57600080fd5b506102e461051936600461259d565b611300565b34801561052a57600080fd5b506012546102ac906001600160a01b031681565b34801561054a57600080fd5b5061027f61132f565b34801561055f57600080fd5b506011546102ac906001600160a01b031681565b34801561057f57600080fd5b506102e461058e366004612466565b61133e565b34801561059f57600080fd5b50610337600c5481565b3480156105b557600080fd5b506102e46105c4366004612400565b611486565b3480156105d557600080fd5b506102e46105e4366004612384565b61154b565b3480156105f557600080fd5b5061033761271081565b34801561060b57600080fd5b5061027f61061a36600461259d565b61157d565b34801561062b57600080fd5b506102e461063a36600461243c565b611658565b34801561064b57600080fd5b5061027f6116e5565b34801561066057600080fd5b5061025561066f366004612315565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b506103376106b83660046122fa565b600f6020526000908152604090205481565b3480156106d657600080fd5b506102e46106e53660046122fa565b611773565b60006001600160e01b0319821663780e9d6360e01b148061070f575061070f8261180b565b92915050565b60606000805461072490612883565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612883565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461086b5760405162461bcd60e51b815260040161081c9061273e565b600d55565b600061087b82610f5c565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081c565b336001600160a01b03821614806109055750610905813361066f565b6109775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081c565b610981838361185b565b505050565b61099033826118c9565b6109ac5760405162461bcd60e51b815260040161081c90612773565b6109818383836119c0565b60006109c283610fd3565b8210610a245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109818383836040518060200160405280600081525061154b565b60606000610a7583610fd3565b905060008167ffffffffffffffff811115610a9257610a92612945565b604051908082528060200260200182016040528015610abb578160200160208202803683370190505b50905060005b82811015610b0257610ad385826109b7565b828281518110610ae557610ae561292f565b602090810291909101015280610afa816128be565b915050610ac1565b509392505050565b6000610b1560085490565b8210610b785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081c565b60088281548110610b8b57610b8b61292f565b90600052602060002001549050919050565b600a546001600160a01b03163314610bc75760405162461bcd60e51b815260040161081c9061273e565b8051610bda90600b9060208401906121ed565b5050565b600a546001600160a01b03163314610c085760405162461bcd60e51b815260040161081c9061273e565b6000610c1560034761280d565b6010546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114610c67576040519150601f19603f3d011682016040523d82523d6000602084013e610c6c565b606091505b5050905080610cb65760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b604482015260640161081c565b6011546040516000916001600160a01b03169084908381818185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b5050905080610d525760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030991760511b604482015260640161081c565b6012546040516000916001600160a01b03169085908381818185875af1925050503d8060008114610d9f576040519150601f19603f3d011682016040523d82523d6000602084013e610da4565b606091505b5050905080610dee5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030999760511b604482015260640161081c565b50505050565b6000610dff60085490565b90506001600d5411610e535760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f7420616374697665000000000000000000604482015260640161081c565b600a821115610ea45760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d0000604482015260640161081c565b612710610eb183836127f5565b1115610ecf5760405162461bcd60e51b815260040161081c906126f7565b81600c54610edd9190612821565b341015610f2c5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161081c565b60005b8281101561098157610f4a33610f4583856127f5565b611b6b565b80610f54816128be565b915050610f2f565b6000818152600260205260408120546001600160a01b03168061070f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081c565b60006001600160a01b03821661103e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081c565b506001600160a01b031660009081526003602052604090205490565b600061106560085490565b336000908152600f6020526040902054600d54919250906110c05760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161081c565b600081116111105760405162461bcd60e51b815260206004820152601e60248201527f4e6f206d696e74732061726520617661696c61626c6520746f20757365720000604482015260640161081c565b8083111561116f5760405162461bcd60e51b815260206004820152602660248201527f526571756573746564206d696e747320657863656564207573657220616c6c6f60448201526531b0ba34b7b760d11b606482015260840161081c565b61271061117c84846127f5565b111561119a5760405162461bcd60e51b815260040161081c906126f7565b82600c546111a89190612821565b3410156111f75760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161081c565b6112018382612840565b336000908152600f60205260408120919091555b83811015610dee5761122b33610f4583866127f5565b80611235816128be565b915050611215565b600a546001600160a01b031633146112675760405162461bcd60e51b815260040161081c9061273e565b6112716000611b85565b565b600a546001600160a01b0316331461129d5760405162461bcd60e51b815260040161081c9061273e565b60005b8151811015610bda57600a600f60008484815181106112c1576112c161292f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806112f8906128be565b9150506112a0565b600a546001600160a01b0316331461132a5760405162461bcd60e51b815260040161081c9061273e565b600c55565b60606001805461072490612883565b600a546001600160a01b031633146113685760405162461bcd60e51b815260040161081c9061273e565b8060008151811061137b5761137b61292f565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106113bc576113bc61292f565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806002815181106113fd576113fd61292f565b6020908102919091010151601280546001600160a01b0319166001600160a01b03909216919091179055600e5460ff1661148357600e805460ff19166001179055601054611455906001600160a01b03166000611b6b565b60115461146c906001600160a01b03166001611b6b565b601254611483906001600160a01b03166002611b6b565b50565b6001600160a01b0382163314156114df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155533836118c9565b6115715760405162461bcd60e51b815260040161081c90612773565b610dee84848484611bd7565b6000818152600260205260409020546060906001600160a01b03166115fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081c565b6000611606611c0a565b905060008151116116265760405180602001604052806000815250611651565b8061163084611c19565b6040516020016116419291906125e2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116825760405162461bcd60e51b815260040161081c9061273e565b600061168d60085490565b905061271061169c83836127f5565b11156116ba5760405162461bcd60e51b815260040161081c906126f7565b60005b82811015610dee576116d384610f4583856127f5565b806116dd816128be565b9150506116bd565b600b80546116f290612883565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90612883565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b505050505081565b600a546001600160a01b0316331461179d5760405162461bcd60e51b815260040161081c9061273e565b6001600160a01b0381166118025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b61148381611b85565b60006001600160e01b031982166380ac58cd60e01b148061183c57506001600160e01b03198216635b5e139f60e01b145b8061070f57506301ffc9a760e01b6001600160e01b031983161461070f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189082610f5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081c565b600061194d83610f5c565b9050806001600160a01b0316846001600160a01b031614806119885750836001600160a01b031661197d846107a7565b6001600160a01b0316145b806119b857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119d382610f5c565b6001600160a01b031614611a3b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081c565b6001600160a01b038216611a9d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081c565b611aa8838383611d17565b611ab360008261185b565b6001600160a01b0383166000908152600360205260408120805460019290611adc908490612840565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0a9084906127f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bda828260405180602001604052806000815250611dcf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611be28484846119c0565b611bee84848484611e02565b610dee5760405162461bcd60e51b815260040161081c906126a5565b6060600b805461072490612883565b606081611c3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c675780611c51816128be565b9150611c609050600a8361280d565b9150611c41565b60008167ffffffffffffffff811115611c8257611c82612945565b6040519080825280601f01601f191660200182016040528015611cac576020820181803683370190505b5090505b84156119b857611cc1600183612840565b9150611cce600a866128d9565b611cd99060306127f5565b60f81b818381518110611cee57611cee61292f565b60200101906001600160f81b031916908160001a905350611d10600a8661280d565b9450611cb0565b6001600160a01b038316611d7257611d6d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d95565b816001600160a01b0316836001600160a01b031614611d9557611d958382611f0f565b6001600160a01b038216611dac5761098181611fac565b826001600160a01b0316826001600160a01b03161461098157610981828261205b565b611dd9838361209f565b611de66000848484611e02565b6109815760405162461bcd60e51b815260040161081c906126a5565b60006001600160a01b0384163b15611f0457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e46903390899088908890600401612611565b602060405180830381600087803b158015611e6057600080fd5b505af1925050508015611e90575060408051601f3d908101601f19168201909252611e8d91810190612537565b60015b611eea573d808015611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b508051611ee25760405162461bcd60e51b815260040161081c906126a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b8565b506001949350505050565b60006001611f1c84610fd3565b611f269190612840565b600083815260076020526040902054909150808214611f79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fbe90600190612840565b60008381526009602052604081205460088054939450909284908110611fe657611fe661292f565b9060005260206000200154905080600883815481106120075761200761292f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061203f5761203f612919565b6001900381819060005260206000200160009055905550505050565b600061206683610fd3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081c565b6000818152600260205260409020546001600160a01b03161561215a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081c565b61216660008383611d17565b6001600160a01b038216600090815260036020526040812080546001929061218f9084906127f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121f990612883565b90600052602060002090601f01602090048101928261221b5760008555612261565b82601f1061223457805160ff1916838001178555612261565b82800160010185558215612261579182015b82811115612261578251825591602001919060010190612246565b5061226d929150612271565b5090565b5b8082111561226d5760008155600101612272565b600067ffffffffffffffff8311156122a0576122a0612945565b6122b3601f8401601f19166020016127c4565b90508281528383830111156122c757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122f557600080fd5b919050565b60006020828403121561230c57600080fd5b611651826122de565b6000806040838503121561232857600080fd5b612331836122de565b915061233f602084016122de565b90509250929050565b60008060006060848603121561235d57600080fd5b612366846122de565b9250612374602085016122de565b9150604084013590509250925092565b6000806000806080858703121561239a57600080fd5b6123a3856122de565b93506123b1602086016122de565b925060408501359150606085013567ffffffffffffffff8111156123d457600080fd5b8501601f810187136123e557600080fd5b6123f487823560208401612286565b91505092959194509250565b6000806040838503121561241357600080fd5b61241c836122de565b91506020830135801515811461243157600080fd5b809150509250929050565b6000806040838503121561244f57600080fd5b612458836122de565b946020939093013593505050565b6000602080838503121561247957600080fd5b823567ffffffffffffffff8082111561249157600080fd5b818501915085601f8301126124a557600080fd5b8135818111156124b7576124b7612945565b8060051b91506124c88483016127c4565b8181528481019084860184860187018a10156124e357600080fd5b600095505b8386101561250d576124f9816122de565b8352600195909501949186019186016124e8565b5098975050505050505050565b60006020828403121561252c57600080fd5b81356116518161295b565b60006020828403121561254957600080fd5b81516116518161295b565b60006020828403121561256657600080fd5b813567ffffffffffffffff81111561257d57600080fd5b8201601f8101841361258e57600080fd5b6119b884823560208401612286565b6000602082840312156125af57600080fd5b5035919050565b600081518084526125ce816020860160208601612857565b601f01601f19169290920160200192915050565b600083516125f4818460208801612857565b835190830190612608818360208801612857565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612644908301846125b6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126865783518352928401929184019160010161266a565b50909695505050505050565b60208152600061165160208301846125b6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127ed576127ed612945565b604052919050565b60008219821115612808576128086128ed565b500190565b60008261281c5761281c612903565b500490565b600081600019048311821515161561283b5761283b6128ed565b500290565b600082821015612852576128526128ed565b500390565b60005b8381101561287257818101518382015260200161285a565b83811115610dee5750506000910152565b600181811c9082168061289757607f821691505b602082108114156128b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d2576128d26128ed565b5060010190565b6000826128e8576128e8612903565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148357600080fdfea26469706673582212206ee06bbd1e5bb5b965d772fa686822983531ce250480095328442ae62e2d574164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58557a62713641436647464877734e4647647a476b456b6f4a474c7076574148684d33364a52674e436a6d712f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637136fbff1161012e578063a22cb465116100ab578063d547cfb71161006f578063d547cfb71461063f578063d75e611014610443578063e985e9c514610654578063eeca3ba81461069d578063f2fde38b146106ca57600080fd5b8063a22cb465146105a9578063b88d4fde146105c9578063bb8a16bd146105e9578063c87b56dd146105ff578063ca8001441461061f57600080fd5b80639426eef8116100f25780639426eef81461051e57806395d89b411461053e578063969e9d0c146105535780639dfd8d2e14610573578063a035b1fe1461059357600080fd5b80637136fbff14610498578063715018a6146104ab5780637f649783146104c05780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101bc578063603f4d5211610180578063603f4d521461041a578063617152151461043057806362d0f657146104435780636352211e1461045857806370a082311461047857600080fd5b806342842e0e14610385578063438b6300146103a55780634f6ccce7146103d257806355f804b3146103f25780635fd8c7101461041257600080fd5b8063095ea7b311610203578063095ea7b3146102e6578063119552a11461030657806318160ddd1461032657806323b872dd146103455780632f745c591461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063084c4088146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461251a565b6106ea565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610715565b6040516102619190612692565b34801561029857600080fd5b506102ac6102a736600461259d565b6107a7565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461259d565b610841565b005b3480156102f257600080fd5b506102e461030136600461243c565b610870565b34801561031257600080fd5b506010546102ac906001600160a01b031681565b34801561033257600080fd5b506008545b604051908152602001610261565b34801561035157600080fd5b506102e4610360366004612348565b610986565b34801561037157600080fd5b5061033761038036600461243c565b6109b7565b34801561039157600080fd5b506102e46103a0366004612348565b610a4d565b3480156103b157600080fd5b506103c56103c03660046122fa565b610a68565b604051610261919061264e565b3480156103de57600080fd5b506103376103ed36600461259d565b610b0a565b3480156103fe57600080fd5b506102e461040d366004612554565b610b9d565b6102e4610bde565b34801561042657600080fd5b50610337600d5481565b6102e461043e36600461259d565b610df4565b34801561044f57600080fd5b50610337600a81565b34801561046457600080fd5b506102ac61047336600461259d565b610f5c565b34801561048457600080fd5b506103376104933660046122fa565b610fd3565b6102e46104a636600461259d565b61105a565b3480156104b757600080fd5b506102e461123d565b3480156104cc57600080fd5b506102e46104db366004612466565b611273565b3480156104ec57600080fd5b50600a546001600160a01b03166102ac565b34801561050a57600080fd5b506102e461051936600461259d565b611300565b34801561052a57600080fd5b506012546102ac906001600160a01b031681565b34801561054a57600080fd5b5061027f61132f565b34801561055f57600080fd5b506011546102ac906001600160a01b031681565b34801561057f57600080fd5b506102e461058e366004612466565b61133e565b34801561059f57600080fd5b50610337600c5481565b3480156105b557600080fd5b506102e46105c4366004612400565b611486565b3480156105d557600080fd5b506102e46105e4366004612384565b61154b565b3480156105f557600080fd5b5061033761271081565b34801561060b57600080fd5b5061027f61061a36600461259d565b61157d565b34801561062b57600080fd5b506102e461063a36600461243c565b611658565b34801561064b57600080fd5b5061027f6116e5565b34801561066057600080fd5b5061025561066f366004612315565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a957600080fd5b506103376106b83660046122fa565b600f6020526000908152604090205481565b3480156106d657600080fd5b506102e46106e53660046122fa565b611773565b60006001600160e01b0319821663780e9d6360e01b148061070f575061070f8261180b565b92915050565b60606000805461072490612883565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612883565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461086b5760405162461bcd60e51b815260040161081c9061273e565b600d55565b600061087b82610f5c565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081c565b336001600160a01b03821614806109055750610905813361066f565b6109775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081c565b610981838361185b565b505050565b61099033826118c9565b6109ac5760405162461bcd60e51b815260040161081c90612773565b6109818383836119c0565b60006109c283610fd3565b8210610a245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109818383836040518060200160405280600081525061154b565b60606000610a7583610fd3565b905060008167ffffffffffffffff811115610a9257610a92612945565b604051908082528060200260200182016040528015610abb578160200160208202803683370190505b50905060005b82811015610b0257610ad385826109b7565b828281518110610ae557610ae561292f565b602090810291909101015280610afa816128be565b915050610ac1565b509392505050565b6000610b1560085490565b8210610b785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081c565b60088281548110610b8b57610b8b61292f565b90600052602060002001549050919050565b600a546001600160a01b03163314610bc75760405162461bcd60e51b815260040161081c9061273e565b8051610bda90600b9060208401906121ed565b5050565b600a546001600160a01b03163314610c085760405162461bcd60e51b815260040161081c9061273e565b6000610c1560034761280d565b6010546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114610c67576040519150601f19603f3d011682016040523d82523d6000602084013e610c6c565b606091505b5050905080610cb65760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b604482015260640161081c565b6011546040516000916001600160a01b03169084908381818185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b5050905080610d525760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030991760511b604482015260640161081c565b6012546040516000916001600160a01b03169085908381818185875af1925050503d8060008114610d9f576040519150601f19603f3d011682016040523d82523d6000602084013e610da4565b606091505b5050905080610dee5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030999760511b604482015260640161081c565b50505050565b6000610dff60085490565b90506001600d5411610e535760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f7420616374697665000000000000000000604482015260640161081c565b600a821115610ea45760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d0000604482015260640161081c565b612710610eb183836127f5565b1115610ecf5760405162461bcd60e51b815260040161081c906126f7565b81600c54610edd9190612821565b341015610f2c5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161081c565b60005b8281101561098157610f4a33610f4583856127f5565b611b6b565b80610f54816128be565b915050610f2f565b6000818152600260205260408120546001600160a01b03168061070f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081c565b60006001600160a01b03821661103e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081c565b506001600160a01b031660009081526003602052604090205490565b600061106560085490565b336000908152600f6020526040902054600d54919250906110c05760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161081c565b600081116111105760405162461bcd60e51b815260206004820152601e60248201527f4e6f206d696e74732061726520617661696c61626c6520746f20757365720000604482015260640161081c565b8083111561116f5760405162461bcd60e51b815260206004820152602660248201527f526571756573746564206d696e747320657863656564207573657220616c6c6f60448201526531b0ba34b7b760d11b606482015260840161081c565b61271061117c84846127f5565b111561119a5760405162461bcd60e51b815260040161081c906126f7565b82600c546111a89190612821565b3410156111f75760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161081c565b6112018382612840565b336000908152600f60205260408120919091555b83811015610dee5761122b33610f4583866127f5565b80611235816128be565b915050611215565b600a546001600160a01b031633146112675760405162461bcd60e51b815260040161081c9061273e565b6112716000611b85565b565b600a546001600160a01b0316331461129d5760405162461bcd60e51b815260040161081c9061273e565b60005b8151811015610bda57600a600f60008484815181106112c1576112c161292f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806112f8906128be565b9150506112a0565b600a546001600160a01b0316331461132a5760405162461bcd60e51b815260040161081c9061273e565b600c55565b60606001805461072490612883565b600a546001600160a01b031633146113685760405162461bcd60e51b815260040161081c9061273e565b8060008151811061137b5761137b61292f565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106113bc576113bc61292f565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806002815181106113fd576113fd61292f565b6020908102919091010151601280546001600160a01b0319166001600160a01b03909216919091179055600e5460ff1661148357600e805460ff19166001179055601054611455906001600160a01b03166000611b6b565b60115461146c906001600160a01b03166001611b6b565b601254611483906001600160a01b03166002611b6b565b50565b6001600160a01b0382163314156114df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155533836118c9565b6115715760405162461bcd60e51b815260040161081c90612773565b610dee84848484611bd7565b6000818152600260205260409020546060906001600160a01b03166115fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081c565b6000611606611c0a565b905060008151116116265760405180602001604052806000815250611651565b8061163084611c19565b6040516020016116419291906125e2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116825760405162461bcd60e51b815260040161081c9061273e565b600061168d60085490565b905061271061169c83836127f5565b11156116ba5760405162461bcd60e51b815260040161081c906126f7565b60005b82811015610dee576116d384610f4583856127f5565b806116dd816128be565b9150506116bd565b600b80546116f290612883565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90612883565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b505050505081565b600a546001600160a01b0316331461179d5760405162461bcd60e51b815260040161081c9061273e565b6001600160a01b0381166118025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b61148381611b85565b60006001600160e01b031982166380ac58cd60e01b148061183c57506001600160e01b03198216635b5e139f60e01b145b8061070f57506301ffc9a760e01b6001600160e01b031983161461070f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189082610f5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081c565b600061194d83610f5c565b9050806001600160a01b0316846001600160a01b031614806119885750836001600160a01b031661197d846107a7565b6001600160a01b0316145b806119b857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119d382610f5c565b6001600160a01b031614611a3b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081c565b6001600160a01b038216611a9d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081c565b611aa8838383611d17565b611ab360008261185b565b6001600160a01b0383166000908152600360205260408120805460019290611adc908490612840565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0a9084906127f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bda828260405180602001604052806000815250611dcf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611be28484846119c0565b611bee84848484611e02565b610dee5760405162461bcd60e51b815260040161081c906126a5565b6060600b805461072490612883565b606081611c3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c675780611c51816128be565b9150611c609050600a8361280d565b9150611c41565b60008167ffffffffffffffff811115611c8257611c82612945565b6040519080825280601f01601f191660200182016040528015611cac576020820181803683370190505b5090505b84156119b857611cc1600183612840565b9150611cce600a866128d9565b611cd99060306127f5565b60f81b818381518110611cee57611cee61292f565b60200101906001600160f81b031916908160001a905350611d10600a8661280d565b9450611cb0565b6001600160a01b038316611d7257611d6d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d95565b816001600160a01b0316836001600160a01b031614611d9557611d958382611f0f565b6001600160a01b038216611dac5761098181611fac565b826001600160a01b0316826001600160a01b03161461098157610981828261205b565b611dd9838361209f565b611de66000848484611e02565b6109815760405162461bcd60e51b815260040161081c906126a5565b60006001600160a01b0384163b15611f0457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e46903390899088908890600401612611565b602060405180830381600087803b158015611e6057600080fd5b505af1925050508015611e90575060408051601f3d908101601f19168201909252611e8d91810190612537565b60015b611eea573d808015611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b508051611ee25760405162461bcd60e51b815260040161081c906126a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b8565b506001949350505050565b60006001611f1c84610fd3565b611f269190612840565b600083815260076020526040902054909150808214611f79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fbe90600190612840565b60008381526009602052604081205460088054939450909284908110611fe657611fe661292f565b9060005260206000200154905080600883815481106120075761200761292f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061203f5761203f612919565b6001900381819060005260206000200160009055905550505050565b600061206683610fd3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120f55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081c565b6000818152600260205260409020546001600160a01b03161561215a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081c565b61216660008383611d17565b6001600160a01b038216600090815260036020526040812080546001929061218f9084906127f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121f990612883565b90600052602060002090601f01602090048101928261221b5760008555612261565b82601f1061223457805160ff1916838001178555612261565b82800160010185558215612261579182015b82811115612261578251825591602001919060010190612246565b5061226d929150612271565b5090565b5b8082111561226d5760008155600101612272565b600067ffffffffffffffff8311156122a0576122a0612945565b6122b3601f8401601f19166020016127c4565b90508281528383830111156122c757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122f557600080fd5b919050565b60006020828403121561230c57600080fd5b611651826122de565b6000806040838503121561232857600080fd5b612331836122de565b915061233f602084016122de565b90509250929050565b60008060006060848603121561235d57600080fd5b612366846122de565b9250612374602085016122de565b9150604084013590509250925092565b6000806000806080858703121561239a57600080fd5b6123a3856122de565b93506123b1602086016122de565b925060408501359150606085013567ffffffffffffffff8111156123d457600080fd5b8501601f810187136123e557600080fd5b6123f487823560208401612286565b91505092959194509250565b6000806040838503121561241357600080fd5b61241c836122de565b91506020830135801515811461243157600080fd5b809150509250929050565b6000806040838503121561244f57600080fd5b612458836122de565b946020939093013593505050565b6000602080838503121561247957600080fd5b823567ffffffffffffffff8082111561249157600080fd5b818501915085601f8301126124a557600080fd5b8135818111156124b7576124b7612945565b8060051b91506124c88483016127c4565b8181528481019084860184860187018a10156124e357600080fd5b600095505b8386101561250d576124f9816122de565b8352600195909501949186019186016124e8565b5098975050505050505050565b60006020828403121561252c57600080fd5b81356116518161295b565b60006020828403121561254957600080fd5b81516116518161295b565b60006020828403121561256657600080fd5b813567ffffffffffffffff81111561257d57600080fd5b8201601f8101841361258e57600080fd5b6119b884823560208401612286565b6000602082840312156125af57600080fd5b5035919050565b600081518084526125ce816020860160208601612857565b601f01601f19169290920160200192915050565b600083516125f4818460208801612857565b835190830190612608818360208801612857565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612644908301846125b6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126865783518352928401929184019160010161266a565b50909695505050505050565b60208152600061165160208301846125b6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127ed576127ed612945565b604052919050565b60008219821115612808576128086128ed565b500190565b60008261281c5761281c612903565b500490565b600081600019048311821515161561283b5761283b6128ed565b500290565b600082821015612852576128526128ed565b500390565b60005b8381101561287257818101518382015260200161285a565b83811115610dee5750506000910152565b600181811c9082168061289757607f821691505b602082108114156128b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d2576128d26128ed565b5060010190565b6000826128e8576128e8612903565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148357600080fdfea26469706673582212206ee06bbd1e5bb5b965d772fa686822983531ce250480095328442ae62e2d574164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58557a62713641436647464877734e4647647a476b456b6f4a474c7076574148684d33364a52674e436a6d712f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmXUzbq6ACfGFHwsNFGdzGkEkoJGLpvWAHhM36JRgNCjmq/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d58557a62713641436647464877734e4647647a476b456b
Arg [3] : 6f4a474c7076574148684d33364a52674e436a6d712f00000000000000000000


Deployed Bytecode Sourcemap

50144:4700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43924:224;;;;;;;;;;-1:-1:-1;43924:224:0;;;;;:::i;:::-;;:::i;:::-;;;7236:14:1;;7229:22;7211:41;;7199:2;7184:18;43924:224:0;;;;;;;;31816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33375:221::-;;;;;;;;;;-1:-1:-1;33375:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5897:32:1;;;5879:51;;5867:2;5852:18;33375:221:0;5733:203:1;53288:100:0;;;;;;;;;;-1:-1:-1;53288:100:0;;;;;:::i;:::-;;:::i;:::-;;32898:411;;;;;;;;;;-1:-1:-1;32898:411:0;;;;;:::i;:::-;;:::i;50687:17::-;;;;;;;;;;-1:-1:-1;50687:17:0;;;;-1:-1:-1;;;;;50687:17:0;;;44564:113;;;;;;;;;;-1:-1:-1;44652:10:0;:17;44564:113;;;18483:25:1;;;18471:2;18456:18;44564:113:0;18337:177:1;34265:339:0;;;;;;;;;;-1:-1:-1;34265:339:0;;;;;:::i;:::-;;:::i;44232:256::-;;;;;;;;;;-1:-1:-1;44232:256:0;;;;;:::i;:::-;;:::i;34675:185::-;;;;;;;;;;-1:-1:-1;34675:185:0;;;;;:::i;:::-;;:::i;52480:342::-;;;;;;;;;;-1:-1:-1;52480:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44754:233::-;;;;;;;;;;-1:-1:-1;44754:233:0;;;;;:::i;:::-;;:::i;53400:101::-;;;;;;;;;;-1:-1:-1;53400:101:0;;;;;:::i;:::-;;:::i;54339:490::-;;;:::i;50473:28::-;;;;;;;;;;;;;;;;50952:516;;;;;;:::i;:::-;;:::i;50328:51::-;;;;;;;;;;;;50377:2;50328:51;;31510:239;;;;;;;;;;-1:-1:-1;31510:239:0;;;;;:::i;:::-;;:::i;31240:208::-;;;;;;;;;;-1:-1:-1;31240:208:0;;;;;:::i;:::-;;:::i;51509:736::-;;;;;;:::i;:::-;;:::i;11515:94::-;;;;;;;;;;;;;:::i;52855:223::-;;;;;;;;;;-1:-1:-1;52855:223:0;;;;;:::i;:::-;;:::i;10864:87::-;;;;;;;;;;-1:-1:-1;10937:6:0;;-1:-1:-1;;;;;10937:6:0;10864:87;;53141:92;;;;;;;;;;-1:-1:-1;53141:92:0;;;;;:::i;:::-;;:::i;50735:17::-;;;;;;;;;;-1:-1:-1;50735:17:0;;;;-1:-1:-1;;;;;50735:17:0;;;31985:104;;;;;;;;;;;;;:::i;50711:17::-;;;;;;;;;;-1:-1:-1;50711:17:0;;;;-1:-1:-1;;;;;50711:17:0;;;53513:469;;;;;;;;;;-1:-1:-1;53513:469:0;;;;;:::i;:::-;;:::i;50433:33::-;;;;;;;;;;;;;;;;33668:295;;;;;;;;;;-1:-1:-1;33668:295:0;;;;;:::i;:::-;;:::i;34931:328::-;;;;;;;;;;-1:-1:-1;34931:328:0;;;;;:::i;:::-;;:::i;50386:40::-;;;;;;;;;;;;50421:5;50386:40;;32160:334;;;;;;;;;;-1:-1:-1;32160:334:0;;;;;:::i;:::-;;:::i;54021:306::-;;;;;;;;;;-1:-1:-1;54021:306:0;;;;;:::i;:::-;;:::i;50244:26::-;;;;;;;;;;;;;:::i;34034:164::-;;;;;;;;;;-1:-1:-1;34034:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34034:164;50591:56;;;;;;;;;;-1:-1:-1;50591:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;11764:192;;;;;;;;;;-1:-1:-1;11764:192:0;;;;;:::i;:::-;;:::i;43924:224::-;44026:4;-1:-1:-1;;;;;;44050:50:0;;-1:-1:-1;;;44050:50:0;;:90;;;44104:36;44128:11;44104:23;:36::i;:::-;44043:97;43924:224;-1:-1:-1;;43924:224:0:o;31816:100::-;31870:13;31903:5;31896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31816:100;:::o;33375:221::-;33451:7;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;33471:73;;;;-1:-1:-1;;;33471:73:0;;13529:2:1;33471:73:0;;;13511:21:1;13568:2;13548:18;;;13541:30;13607:34;13587:18;;;13580:62;-1:-1:-1;;;13658:18:1;;;13651:42;13710:19;;33471:73:0;;;;;;;;;-1:-1:-1;33564:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33564:24:0;;33375:221::o;53288:100::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;53358:9:::1;:22:::0;53288:100::o;32898:411::-;32979:13;32995:23;33010:7;32995:14;:23::i;:::-;32979:39;;33043:5;-1:-1:-1;;;;;33037:11:0;:2;-1:-1:-1;;;;;33037:11:0;;;33029:57;;;;-1:-1:-1;;;33029:57:0;;15887:2:1;33029:57:0;;;15869:21:1;15926:2;15906:18;;;15899:30;15965:34;15945:18;;;15938:62;-1:-1:-1;;;16016:18:1;;;16009:31;16057:19;;33029:57:0;15685:397:1;33029:57:0;9732:10;-1:-1:-1;;;;;33121:21:0;;;;:62;;-1:-1:-1;33146:37:0;33163:5;9732:10;34034:164;:::i;33146:37::-;33099:168;;;;-1:-1:-1;;;33099:168:0;;11162:2:1;33099:168:0;;;11144:21:1;11201:2;11181:18;;;11174:30;11240:34;11220:18;;;11213:62;11311:26;11291:18;;;11284:54;11355:19;;33099:168:0;10960:420:1;33099:168:0;33280:21;33289:2;33293:7;33280:8;:21::i;:::-;32968:341;32898:411;;:::o;34265:339::-;34460:41;9732:10;34493:7;34460:18;:41::i;:::-;34452:103;;;;-1:-1:-1;;;34452:103:0;;;;;;;:::i;:::-;34568:28;34578:4;34584:2;34588:7;34568:9;:28::i;44232:256::-;44329:7;44365:23;44382:5;44365:16;:23::i;:::-;44357:5;:31;44349:87;;;;-1:-1:-1;;;44349:87:0;;7689:2:1;44349:87:0;;;7671:21:1;7728:2;7708:18;;;7701:30;7767:34;7747:18;;;7740:62;-1:-1:-1;;;7818:18:1;;;7811:41;7869:19;;44349:87:0;7487:407:1;44349:87:0;-1:-1:-1;;;;;;44454:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44232:256::o;34675:185::-;34813:39;34830:4;34836:2;34840:7;34813:39;;;;;;;;;;;;:16;:39::i;52480:342::-;52539:16;52568:18;52589:17;52599:6;52589:9;:17::i;:::-;52568:38;;52619:25;52661:10;52647:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52647:25:0;;52619:53;;52687:9;52683:106;52702:10;52698:1;:14;52683:106;;;52747:30;52767:6;52775:1;52747:19;:30::i;:::-;52733:8;52742:1;52733:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52714:3;;;;:::i;:::-;;;;52683:106;;;-1:-1:-1;52806:8:0;52480:342;-1:-1:-1;;;52480:342:0:o;44754:233::-;44829:7;44865:30;44652:10;:17;;44564:113;44865:30;44857:5;:38;44849:95;;;;-1:-1:-1;;;44849:95:0;;17058:2:1;44849:95:0;;;17040:21:1;17097:2;17077:18;;;17070:30;17136:34;17116:18;;;17109:62;-1:-1:-1;;;17187:18:1;;;17180:42;17239:19;;44849:95:0;16856:408:1;44849:95:0;44962:10;44973:5;44962:17;;;;;;;;:::i;:::-;;;;;;;;;44955:24;;44754:233;;;:::o;53400:101::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;53471:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53400:101:::0;:::o;54339:490::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;54402:16:::1;54421:25;54445:1;54421:21;:25;:::i;:::-;54494:2;::::0;54486:37:::1;::::0;54402:44;;-1:-1:-1;54468:12:0::1;::::0;-1:-1:-1;;;;;54494:2:0;;::::1;::::0;54402:44;;54468:12;54486:37;54468:12;54486:37;54402:44;54494:2;54486:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54467:56;;;54542:7;54534:42;;;::::0;-1:-1:-1;;;54534:42:0;;9284:2:1;54534:42:0::1;::::0;::::1;9266:21:1::0;9323:2;9303:18;;;9296:30;-1:-1:-1;;;9342:18:1;;;9335:52;9404:18;;54534:42:0::1;9082:346:1::0;54534:42:0::1;54615:2;::::0;54607:37:::1;::::0;54588:13:::1;::::0;-1:-1:-1;;;;;54615:2:0::1;::::0;54631:8;;54588:13;54607:37;54588:13;54607:37;54631:8;54615:2;54607:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54587:57;;;54663:8;54655:43;;;::::0;-1:-1:-1;;;54655:43:0;;14349:2:1;54655:43:0::1;::::0;::::1;14331:21:1::0;14388:2;14368:18;;;14361:30;-1:-1:-1;;;14407:18:1;;;14400:52;14469:18;;54655:43:0::1;14147:346:1::0;54655:43:0::1;54737:2;::::0;54729:37:::1;::::0;54710:13:::1;::::0;-1:-1:-1;;;;;54737:2:0::1;::::0;54753:8;;54710:13;54729:37;54710:13;54729:37;54753:8;54737:2;54729:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54709:57;;;54785:8;54777:43;;;::::0;-1:-1:-1;;;54777:43:0;;16707:2:1;54777:43:0::1;::::0;::::1;16689:21:1::0;16746:2;16726:18;;;16719:30;-1:-1:-1;;;16765:18:1;;;16758:52;16827:18;;54777:43:0::1;16505:346:1::0;54777:43:0::1;54391:438;;;;54339:490::o:0;50952:516::-;51008:14;51025:13;44652:10;:17;;44564:113;51025:13;51008:30;;51070:1;51058:9;;:13;51049:63;;;;-1:-1:-1;;;51049:63:0;;11587:2:1;51049:63:0;;;11569:21:1;11626:2;11606:18;;;11599:30;11665:25;11645:18;;;11638:53;11708:18;;51049:63:0;11385:347:1;51049:63:0;50319:2;51132:3;:21;;51123:70;;;;-1:-1:-1;;;51123:70:0;;18180:2:1;51123:70:0;;;18162:21:1;18219:2;18199:18;;;18192:30;18258:32;18238:18;;;18231:60;18308:18;;51123:70:0;17978:354:1;51123:70:0;50421:5;51213:12;51222:3;51213:6;:12;:::i;:::-;:24;;51204:79;;;;-1:-1:-1;;;51204:79:0;;;;;;;:::i;:::-;51324:3;51316:5;;:11;;;;:::i;:::-;51303:9;:24;;51294:66;;;;-1:-1:-1;;;51294:66:0;;10807:2:1;51294:66:0;;;10789:21:1;10846:2;10826:18;;;10819:30;10885:28;10865:18;;;10858:56;10931:18;;51294:66:0;10605:350:1;51294:66:0;51375:9;51371:90;51390:3;51386:1;:7;51371:90;;;51414:35;51425:10;51437;51446:1;51437:6;:10;:::i;:::-;51414:9;:35::i;:::-;51395:3;;;;:::i;:::-;;;;51371:90;;31510:239;31582:7;31618:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31618:16:0;31653:19;31645:73;;;;-1:-1:-1;;;31645:73:0;;12350:2:1;31645:73:0;;;12332:21:1;12389:2;12369:18;;;12362:30;12428:34;12408:18;;;12401:62;-1:-1:-1;;;12479:18:1;;;12472:39;12528:19;;31645:73:0;12148:405:1;31240:208:0;31312:7;-1:-1:-1;;;;;31340:19:0;;31332:74;;;;-1:-1:-1;;;31332:74:0;;11939:2:1;31332:74:0;;;11921:21:1;11978:2;11958:18;;;11951:30;12017:34;11997:18;;;11990:62;-1:-1:-1;;;12068:18:1;;;12061:40;12118:19;;31332:74:0;11737:406:1;31332:74:0;-1:-1:-1;;;;;;31424:16:0;;;;;:9;:16;;;;;;;31240:208::o;51509:736::-;51572:14;51589:13;44652:10;:17;;44564:113;51589:13;51655:10;51613:18;51634:32;;;:20;:32;;;;;;51686:9;;51572:30;;-1:-1:-1;51634:32:0;51677:61;;;;-1:-1:-1;;;51677:61:0;;17471:2:1;51677:61:0;;;17453:21:1;17510:2;17490:18;;;17483:30;-1:-1:-1;;;17529:18:1;;;17522:51;17590:18;;51677:61:0;17269:345:1;51677:61:0;51771:1;51758:10;:14;51749:70;;;;-1:-1:-1;;;51749:70:0;;17821:2:1;51749:70:0;;;17803:21:1;17860:2;17840:18;;;17833:30;17899:32;17879:18;;;17872:60;17949:18;;51749:70:0;17619:354:1;51749:70:0;51846:10;51839:3;:17;;51830:78;;;;-1:-1:-1;;;51830:78:0;;13942:2:1;51830:78:0;;;13924:21:1;13981:2;13961:18;;;13954:30;14020:34;14000:18;;;13993:62;-1:-1:-1;;;14071:18:1;;;14064:36;14117:19;;51830:78:0;13740:402:1;51830:78:0;50421:5;51928:12;51937:3;51928:6;:12;:::i;:::-;:24;;51919:79;;;;-1:-1:-1;;;51919:79:0;;;;;;;:::i;:::-;52039:3;52031:5;;:11;;;;:::i;:::-;52018:9;:24;;52009:66;;;;-1:-1:-1;;;52009:66:0;;10807:2:1;52009:66:0;;;10789:21:1;10846:2;10826:18;;;10819:30;10885:28;10865:18;;;10858:56;10931:18;;52009:66:0;10605:350:1;52009:66:0;52121:16;52134:3;52121:10;:16;:::i;:::-;52107:10;52086:32;;;;:20;:32;;;;;:51;;;;52148:90;52167:3;52163:1;:7;52148:90;;;52191:35;52202:10;52214;52223:1;52214:6;:10;:::i;52191:35::-;52172:3;;;;:::i;:::-;;;;52148:90;;11515:94;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;11580:21:::1;11598:1;11580:9;:21::i;:::-;11515:94::o:0;52855:223::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52942:9:::1;52938:133;52957:12;:19;52953:1;:23;52938:133;;;50377:2;52997:20;:37;53018:12;53031:1;53018:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52997:37:0::1;-1:-1:-1::0;;;;;52997:37:0::1;;;;;;;;;;;;:62;;;;52978:3;;;;;:::i;:::-;;;;52938:133;;53141:92:::0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;53208:5:::1;:17:::0;53141:92::o;31985:104::-;32041:13;32074:7;32067:14;;;;;:::i;53513:469::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;53597:2:::1;53600:1;53597:5;;;;;;;;:::i;:::-;;;;;;;53592:2;;:10;;;;;-1:-1:-1::0;;;;;53592:10:0::1;;;;;-1:-1:-1::0;;;;;53592:10:0::1;;;;;;53618:2;53621:1;53618:5;;;;;;;;:::i;:::-;;;;;;;53613:2;;:10;;;;;-1:-1:-1::0;;;;;53613:10:0::1;;;;;-1:-1:-1::0;;;;;53613:10:0::1;;;;;;53639:2;53642:1;53639:5;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;53634:2:::1;:10:::0;;-1:-1:-1;;;;;;53634:10:0::1;-1:-1:-1::0;;;;;53634:10:0;;::::1;::::0;;;::::1;::::0;;53786:19:::1;::::0;::::1;;53782:183;;53831:19;:26:::0;;-1:-1:-1;;53831:26:0::1;53853:4;53831:26;::::0;;53883:2:::1;::::0;53872:17:::1;::::0;-1:-1:-1;;;;;53883:2:0::1;53831:19;53872:9;:17::i;:::-;53915:2;::::0;53904:17:::1;::::0;-1:-1:-1;;;;;53915:2:0::1;::::0;53904:9:::1;:17::i;:::-;53947:2;::::0;53936:17:::1;::::0;-1:-1:-1;;;;;53947:2:0::1;53951:1;53936:9;:17::i;:::-;53513:469:::0;:::o;33668:295::-;-1:-1:-1;;;;;33771:24:0;;9732:10;33771:24;;33763:62;;;;-1:-1:-1;;;33763:62:0;;10040:2:1;33763:62:0;;;10022:21:1;10079:2;10059:18;;;10052:30;10118:27;10098:18;;;10091:55;10163:18;;33763:62:0;9838:349:1;33763:62:0;9732:10;33838:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33838:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33838:53:0;;;;;;;;;;33907:48;;7211:41:1;;;33838:42:0;;9732:10;33907:48;;7184:18:1;33907:48:0;;;;;;;33668:295;;:::o;34931:328::-;35106:41;9732:10;35139:7;35106:18;:41::i;:::-;35098:103;;;;-1:-1:-1;;;35098:103:0;;;;;;;:::i;:::-;35212:39;35226:4;35232:2;35236:7;35245:5;35212:13;:39::i;32160:334::-;36834:4;36858:16;;;:7;:16;;;;;;32233:13;;-1:-1:-1;;;;;36858:16:0;32259:76;;;;-1:-1:-1;;;32259:76:0;;15471:2:1;32259:76:0;;;15453:21:1;15510:2;15490:18;;;15483:30;15549:34;15529:18;;;15522:62;-1:-1:-1;;;15600:18:1;;;15593:45;15655:19;;32259:76:0;15269:411:1;32259:76:0;32348:21;32372:10;:8;:10::i;:::-;32348:34;;32424:1;32406:7;32400:21;:25;:86;;;;;;;;;;;;;;;;;32452:7;32461:18;:7;:16;:18::i;:::-;32435:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32400:86;32393:93;32160:334;-1:-1:-1;;;32160:334:0:o;54021:306::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;54100:14:::1;54117:13;44652:10:::0;:17;;44564:113;54117:13:::1;54100:30:::0;-1:-1:-1;50421:5:0::1;54150:15;54159:6:::0;54100:30;54150:15:::1;:::i;:::-;:27;;54141:82;;;;-1:-1:-1::0;;;54141:82:0::1;;;;;;;:::i;:::-;54238:9;54234:86;54253:6;54249:1;:10;54234:86;;;54280:28;54291:3:::0;54296:10:::1;54305:1:::0;54296:6;:10:::1;:::i;54280:28::-;54261:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54234:86;;50244:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11764:192::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11853:22:0;::::1;11845:73;;;::::0;-1:-1:-1;;;11845:73:0;;8520:2:1;11845:73:0::1;::::0;::::1;8502:21:1::0;8559:2;8539:18;;;8532:30;8598:34;8578:18;;;8571:62;-1:-1:-1;;;8649:18:1;;;8642:36;8695:19;;11845:73:0::1;8318:402:1::0;11845:73:0::1;11929:19;11939:8;11929:9;:19::i;30871:305::-:0;30973:4;-1:-1:-1;;;;;;31010:40:0;;-1:-1:-1;;;31010:40:0;;:105;;-1:-1:-1;;;;;;;31067:48:0;;-1:-1:-1;;;31067:48:0;31010:105;:158;;;-1:-1:-1;;;;;;;;;;22959:40:0;;;31132:36;22850:157;40751:174;40826:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40826:29:0;-1:-1:-1;;;;;40826:29:0;;;;;;;;:24;;40880:23;40826:24;40880:14;:23::i;:::-;-1:-1:-1;;;;;40871:46:0;;;;;;;;;;;40751:174;;:::o;37063:348::-;37156:4;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;37173:73;;;;-1:-1:-1;;;37173:73:0;;10394:2:1;37173:73:0;;;10376:21:1;10433:2;10413:18;;;10406:30;10472:34;10452:18;;;10445:62;-1:-1:-1;;;10523:18:1;;;10516:42;10575:19;;37173:73:0;10192:408:1;37173:73:0;37257:13;37273:23;37288:7;37273:14;:23::i;:::-;37257:39;;37326:5;-1:-1:-1;;;;;37315:16:0;:7;-1:-1:-1;;;;;37315:16:0;;:51;;;;37359:7;-1:-1:-1;;;;;37335:31:0;:20;37347:7;37335:11;:20::i;:::-;-1:-1:-1;;;;;37335:31:0;;37315:51;:87;;;-1:-1:-1;;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37370:32;37307:96;37063:348;-1:-1:-1;;;;37063:348:0:o;40055:578::-;40214:4;-1:-1:-1;;;;;40187:31:0;:23;40202:7;40187:14;:23::i;:::-;-1:-1:-1;;;;;40187:31:0;;40179:85;;;;-1:-1:-1;;;40179:85:0;;15061:2:1;40179:85:0;;;15043:21:1;15100:2;15080:18;;;15073:30;15139:34;15119:18;;;15112:62;-1:-1:-1;;;15190:18:1;;;15183:39;15239:19;;40179:85:0;14859:405:1;40179:85:0;-1:-1:-1;;;;;40283:16:0;;40275:65;;;;-1:-1:-1;;;40275:65:0;;9635:2:1;40275:65:0;;;9617:21:1;9674:2;9654:18;;;9647:30;9713:34;9693:18;;;9686:62;-1:-1:-1;;;9764:18:1;;;9757:34;9808:19;;40275:65:0;9433:400:1;40275:65:0;40353:39;40374:4;40380:2;40384:7;40353:20;:39::i;:::-;40457:29;40474:1;40478:7;40457:8;:29::i;:::-;-1:-1:-1;;;;;40499:15:0;;;;;;:9;:15;;;;;:20;;40518:1;;40499:15;:20;;40518:1;;40499:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40530:13:0;;;;;;:9;:13;;;;;:18;;40547:1;;40530:13;:18;;40547:1;;40530:18;:::i;:::-;;;;-1:-1:-1;;40559:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40559:21:0;-1:-1:-1;;;;;40559:21:0;;;;;;;;;40598:27;;40559:16;;40598:27;;;;;;;40055:578;;;:::o;37753:110::-;37829:26;37839:2;37843:7;37829:26;;;;;;;;;;;;:9;:26::i;11964:173::-;12039:6;;;-1:-1:-1;;;;;12056:17:0;;;-1:-1:-1;;;;;;12056:17:0;;;;;;;12089:40;;12039:6;;;12056:17;12039:6;;12089:40;;12020:16;;12089:40;12009:128;11964:173;:::o;36141:315::-;36298:28;36308:4;36314:2;36318:7;36298:9;:28::i;:::-;36345:48;36368:4;36374:2;36378:7;36387:5;36345:22;:48::i;:::-;36337:111;;;;-1:-1:-1;;;36337:111:0;;;;;;;:::i;52355:113::-;52415:13;52448:12;52441:19;;;;;:::i;7268:723::-;7324:13;7545:10;7541:53;;-1:-1:-1;;7572:10:0;;;;;;;;;;;;-1:-1:-1;;;7572:10:0;;;;;7268:723::o;7541:53::-;7619:5;7604:12;7660:78;7667:9;;7660:78;;7693:8;;;;:::i;:::-;;-1:-1:-1;7716:10:0;;-1:-1:-1;7724:2:0;7716:10;;:::i;:::-;;;7660:78;;;7748:19;7780:6;7770:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7770:17:0;;7748:39;;7798:154;7805:10;;7798:154;;7832:11;7842:1;7832:11;;:::i;:::-;;-1:-1:-1;7901:10:0;7909:2;7901:5;:10;:::i;:::-;7888:24;;:2;:24;:::i;:::-;7875:39;;7858:6;7865;7858:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7858:56:0;;;;;;;;-1:-1:-1;7929:11:0;7938:2;7929:11;;:::i;:::-;;;7798:154;;45600:589;-1:-1:-1;;;;;45806:18:0;;45802:187;;45841:40;45873:7;47016:10;:17;;46989:24;;;;:15;:24;;;;;:44;;;47044:24;;;;;;;;;;;;46912:164;45841:40;45802:187;;;45911:2;-1:-1:-1;;;;;45903:10:0;:4;-1:-1:-1;;;;;45903:10:0;;45899:90;;45930:47;45963:4;45969:7;45930:32;:47::i;:::-;-1:-1:-1;;;;;46003:16:0;;45999:183;;46036:45;46073:7;46036:36;:45::i;45999:183::-;46109:4;-1:-1:-1;;;;;46103:10:0;:2;-1:-1:-1;;;;;46103:10:0;;46099:83;;46130:40;46158:2;46162:7;46130:27;:40::i;38090:321::-;38220:18;38226:2;38230:7;38220:5;:18::i;:::-;38271:54;38302:1;38306:2;38310:7;38319:5;38271:22;:54::i;:::-;38249:154;;;;-1:-1:-1;;;38249:154:0;;;;;;;:::i;41490:799::-;41645:4;-1:-1:-1;;;;;41666:13:0;;13233:20;13281:8;41662:620;;41702:72;;-1:-1:-1;;;41702:72:0;;-1:-1:-1;;;;;41702:36:0;;;;;:72;;9732:10;;41753:4;;41759:7;;41768:5;;41702:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41702:72:0;;;;;;;;-1:-1:-1;;41702:72:0;;;;;;;;;;;;:::i;:::-;;;41698:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41944:13:0;;41940:272;;41987:60;;-1:-1:-1;;;41987:60:0;;;;;;;:::i;41940:272::-;42162:6;42156:13;42147:6;42143:2;42139:15;42132:38;41698:529;-1:-1:-1;;;;;;41825:51:0;-1:-1:-1;;;41825:51:0;;-1:-1:-1;41818:58:0;;41662:620;-1:-1:-1;42266:4:0;41490:799;;;;;;:::o;47703:988::-;47969:22;48019:1;47994:22;48011:4;47994:16;:22::i;:::-;:26;;;;:::i;:::-;48031:18;48052:26;;;:17;:26;;;;;;47969:51;;-1:-1:-1;48185:28:0;;;48181:328;;-1:-1:-1;;;;;48252:18:0;;48230:19;48252:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48303:30;;;;;;:44;;;48420:30;;:17;:30;;;;;:43;;;48181:328;-1:-1:-1;48605:26:0;;;;:17;:26;;;;;;;;48598:33;;;-1:-1:-1;;;;;48649:18:0;;;;;:12;:18;;;;;:34;;;;;;;48642:41;47703:988::o;48986:1079::-;49264:10;:17;49239:22;;49264:21;;49284:1;;49264:21;:::i;:::-;49296:18;49317:24;;;:15;:24;;;;;;49690:10;:26;;49239:46;;-1:-1:-1;49317:24:0;;49239:46;;49690:26;;;;;;:::i;:::-;;;;;;;;;49668:48;;49754:11;49729:10;49740;49729:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49834:28;;;:15;:28;;;;;;;:41;;;50006:24;;;;;49999:31;50041:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49057:1008;;;48986:1079;:::o;46490:221::-;46575:14;46592:20;46609:2;46592:16;:20::i;:::-;-1:-1:-1;;;;;46623:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46668:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46490:221:0:o;38747:382::-;-1:-1:-1;;;;;38827:16:0;;38819:61;;;;-1:-1:-1;;;38819:61:0;;12760:2:1;38819:61:0;;;12742:21:1;;;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;12890:18;;38819:61:0;12558:356:1;38819:61:0;36834:4;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;:30;38891:58;;;;-1:-1:-1;;;38891:58:0;;8927:2:1;38891:58:0;;;8909:21:1;8966:2;8946:18;;;8939:30;9005;8985:18;;;8978:58;9053:18;;38891:58:0;8725:352:1;38891:58:0;38962:45;38991:1;38995:2;38999:7;38962:20;:45::i;:::-;-1:-1:-1;;;;;39020:13:0;;;;;;:9;:13;;;;;:18;;39037:1;;39020:13;:18;;39037:1;;39020:18;:::i;:::-;;;;-1:-1:-1;;39049:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39049:21:0;-1:-1:-1;;;;;39049:21:0;;;;;;;;39088:33;;39049:16;;;39088:33;;39049:16;;39088:33;38747:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:1;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:1:o;5048:470::-;5227:3;5265:6;5259:13;5281:53;5327:6;5322:3;5315:4;5307:6;5303:17;5281:53;:::i;:::-;5397:13;;5356:16;;;;5419:57;5397:13;5356:16;5453:4;5441:17;;5419:57;:::i;:::-;5492:20;;5048:470;-1:-1:-1;;;;5048:470:1:o;5941:488::-;-1:-1:-1;;;;;6210:15:1;;;6192:34;;6262:15;;6257:2;6242:18;;6235:43;6309:2;6294:18;;6287:34;;;6357:3;6352:2;6337:18;;6330:31;;;6135:4;;6378:45;;6403:19;;6395:6;6378:45;:::i;:::-;6370:53;5941:488;-1:-1:-1;;;;;;5941:488:1:o;6434:632::-;6605:2;6657:21;;;6727:13;;6630:18;;;6749:22;;;6576:4;;6605:2;6828:15;;;;6802:2;6787:18;;;6576:4;6871:169;6885:6;6882:1;6879:13;6871:169;;;6946:13;;6934:26;;7015:15;;;;6980:12;;;;6907:1;6900:9;6871:169;;;-1:-1:-1;7057:3:1;;6434:632;-1:-1:-1;;;;;;6434:632:1:o;7263:219::-;7412:2;7401:9;7394:21;7375:4;7432:44;7472:2;7461:9;7457:18;7449:6;7432:44;:::i;7899:414::-;8101:2;8083:21;;;8140:2;8120:18;;;8113:30;8179:34;8174:2;8159:18;;8152:62;-1:-1:-1;;;8245:2:1;8230:18;;8223:48;8303:3;8288:19;;7899:414::o;12919:403::-;13121:2;13103:21;;;13160:2;13140:18;;;13133:30;13199:34;13194:2;13179:18;;13172:62;-1:-1:-1;;;13265:2:1;13250:18;;13243:37;13312:3;13297:19;;12919:403::o;14498:356::-;14700:2;14682:21;;;14719:18;;;14712:30;14778:34;14773:2;14758:18;;14751:62;14845:2;14830:18;;14498:356::o;16087:413::-;16289:2;16271:21;;;16328:2;16308:18;;;16301:30;16367:34;16362:2;16347:18;;16340:62;-1:-1:-1;;;16433:2:1;16418:18;;16411:47;16490:3;16475:19;;16087:413::o;18519:275::-;18590:2;18584:9;18655:2;18636:13;;-1:-1:-1;;18632:27:1;18620:40;;18690:18;18675:34;;18711:22;;;18672:62;18669:88;;;18737:18;;:::i;:::-;18773:2;18766:22;18519:275;;-1:-1:-1;18519:275:1:o;18799:128::-;18839:3;18870:1;18866:6;18863:1;18860:13;18857:39;;;18876:18;;:::i;:::-;-1:-1:-1;18912:9:1;;18799:128::o;18932:120::-;18972:1;18998;18988:35;;19003:18;;:::i;:::-;-1:-1:-1;19037:9:1;;18932:120::o;19057:168::-;19097:7;19163:1;19159;19155:6;19151:14;19148:1;19145:21;19140:1;19133:9;19126:17;19122:45;19119:71;;;19170:18;;:::i;:::-;-1:-1:-1;19210:9:1;;19057:168::o;19230:125::-;19270:4;19298:1;19295;19292:8;19289:34;;;19303:18;;:::i;:::-;-1:-1:-1;19340:9:1;;19230:125::o;19360:258::-;19432:1;19442:113;19456:6;19453:1;19450:13;19442:113;;;19532:11;;;19526:18;19513:11;;;19506:39;19478:2;19471:10;19442:113;;;19573:6;19570:1;19567:13;19564:48;;;-1:-1:-1;;19608:1:1;19590:16;;19583:27;19360:258::o;19623:380::-;19702:1;19698:12;;;;19745;;;19766:61;;19820:4;19812:6;19808:17;19798:27;;19766:61;19873:2;19865:6;19862:14;19842:18;19839:38;19836:161;;;19919:10;19914:3;19910:20;19907:1;19900:31;19954:4;19951:1;19944:15;19982:4;19979:1;19972:15;19836:161;;19623:380;;;:::o;20008:135::-;20047:3;-1:-1:-1;;20068:17:1;;20065:43;;;20088:18;;:::i;:::-;-1:-1:-1;20135:1:1;20124:13;;20008:135::o;20148:112::-;20180:1;20206;20196:35;;20211:18;;:::i;:::-;-1:-1:-1;20245:9:1;;20148:112::o;20265:127::-;20326:10;20321:3;20317:20;20314:1;20307:31;20357:4;20354:1;20347:15;20381:4;20378:1;20371:15;20397:127;20458:10;20453:3;20449:20;20446:1;20439:31;20489:4;20486:1;20479:15;20513:4;20510:1;20503:15;20529:127;20590:10;20585:3;20581:20;20578:1;20571:31;20621:4;20618:1;20611:15;20645:4;20642:1;20635:15;20661:127;20722:10;20717:3;20713:20;20710:1;20703:31;20753:4;20750:1;20743:15;20777:4;20774:1;20767:15;20793:127;20854:10;20849:3;20845:20;20842:1;20835:31;20885:4;20882:1;20875:15;20909:4;20906:1;20899:15;20925:131;-1:-1:-1;;;;;;20999:32:1;;20989:43;;20979:71;;21046:1;21043;21036:12

Swarm Source

ipfs://6ee06bbd1e5bb5b965d772fa686822983531ce250480095328442ae62e2d5741
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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