ETH Price: $2,989.41 (+3.60%)
Gas: 7 Gwei

Token

ApeLaunch (AL)
 

Overview

Max Total Supply

0 AL

Holders

716

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 AL
0x16a51077e0548cb265b223d180844beafb76e03b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ApeLaunch

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-08
*/

// SPDX-License-Identifier: MIT
// File: Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
// File: SafeMath.sol



pragma solidity ^0.8.1;

// 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: Strings.sol



pragma solidity ^0.8.1;

/**
 * @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: Context.sol



pragma solidity ^0.8.1;

/**
 * @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: Ownable.sol



pragma solidity ^0.8.1;


/**
 * @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: Address.sol



pragma solidity ^0.8.1;

/**
 * @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: IERC721Receiver.sol



pragma solidity ^0.8.1;

/**
 * @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: IERC165.sol



pragma solidity ^0.8.1;

/**
 * @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: ERC165.sol



pragma solidity ^0.8.1;


/**
 * @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: IERC721.sol



pragma solidity ^0.8.1;


/**
 * @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: IERC721Metadata.sol



pragma solidity ^0.8.1;


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



pragma solidity ^0.8.1;








/**
 * @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: ApeLaunch.sol


pragma solidity ^0.8.7;






contract ApeLaunch is ERC721, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public MAX_APES = 2000;
    uint256 public MAX_APE_PER_MINT = 5;
    uint256 public MAX_FREE = 500;
    uint256 public APE_PRICE = 0.02 ether;

    string public tokenBaseURI;
    string public tokenBaseExtension = ".json";
    bool public saleActive = false;
    address public OWNER;
    address public COLLAB;

    Counters.Counter public tokenSupply;

    constructor(address _collab) ERC721("ApeLaunch", "AL") {
        OWNER = msg.sender;
        COLLAB = _collab;
    }

    function getCurrentSupply() external view returns(uint256) {
        return tokenSupply.current();
    }

    function setTokenBaseURI(string memory _baseURI) external onlyOwner {
        tokenBaseURI = _baseURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {

        require(_exists(_tokenId), "Err: nonexistent token");

        return
            string(
                abi.encodePacked(
                    tokenBaseURI,
                    _tokenId.toString(),
                    tokenBaseExtension
                )
            );
    }

    function mint(uint256 _quantity) external payable {
        require(saleActive, "Err: not active.");
        require(_quantity <= MAX_APE_PER_MINT, "Err: invalid quantity");

        _safeMintApes(_quantity);
    }

    function _safeMintApes(uint256 _quantity) internal {
        require(_quantity > 0, "Err: minimum one");
        if (MAX_FREE < tokenSupply.current().add(_quantity)){
            require(
                tokenSupply.current().add(_quantity) <= MAX_APES,
                "Err: excceed max supply"
            );
            require(msg.value >= APE_PRICE.mul(_quantity), "Err: incorrect amount");        
        }

        for (uint256 i = 0; i < _quantity; i++) {
            uint256 mintIndex = tokenSupply.current();

            if (mintIndex < MAX_APES) {
                tokenSupply.increment();
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function setMaxFree(uint256 _maxFree) external onlyOwner {
        require(tokenSupply.current() <= _maxFree && _maxFree <= MAX_APES, "Err: invalid max free");
        MAX_FREE = _maxFree;
    }

    function setMaxApePerMint(uint256 _maxApePerMint) external onlyOwner {
        MAX_APE_PER_MINT = _maxApePerMint;
    }

    function setApePrice(uint256 _apePrice) external onlyOwner {
        APE_PRICE = _apePrice;
    }

    function setSaleActive(bool _active) external onlyOwner {
        saleActive = _active;
    }

    function setCollab(address _collab) external onlyOwner {
        COLLAB = _collab;
    }

    function setTokenBaseExtension(string memory _tokenBaseExtension)
        external
        onlyOwner
    {
        tokenBaseExtension = _tokenBaseExtension;
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        if (COLLAB == OWNER){
            _withdraw(OWNER, address(this).balance);
        } else {
            _withdraw(COLLAB, balance / 2); // 50%
            _withdraw(OWNER, address(this).balance); // 50%
        }
    }

    function _withdraw(address _addr, uint256 _amt) private {
        (bool success,) = _addr.call{value: _amt}("");
        require(success, "transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_collab","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"APE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLAB","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_APES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_APE_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_apePrice","type":"uint256"}],"name":"setApePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collab","type":"address"}],"name":"setCollab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxApePerMint","type":"uint256"}],"name":"setMaxApePerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseExtension","type":"string"}],"name":"setTokenBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setTokenBaseURI","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":[],"name":"tokenBaseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6107d0600755600560088190556101f460095566470de4df820000600a5560c0604052608081905264173539b7b760d91b60a09081526200004491600c919062000190565b50600d805460ff191690553480156200005c57600080fd5b506040516200238a3803806200238a8339810160408190526200007f9162000236565b6040805180820182526009815268082e0ca98c2eadcc6d60bb1b602080830191825283518085019094526002845261105360f21b908401528151919291620000ca9160009162000190565b508051620000e090600190602084019062000190565b505050620000fd620000f76200013a60201b60201c565b6200013e565b600d8054610100600160a81b0319163361010002179055600e80546001600160a01b0319166001600160a01b0392909216919091179055620002a5565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019e9062000268565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b6000602082840312156200024957600080fd5b81516001600160a01b03811681146200026157600080fd5b9392505050565b600181811c908216806200027d57607f821691505b602082108114156200029f57634e487b7160e01b600052602260045260246000fd5b50919050565b6120d580620002b56000396000f3fe60806040526004361061020e5760003560e01c80637824407f11610118578063aee5d0ac116100a0578063c87b56dd1161006f578063c87b56dd146105bd578063d755bf99146105dd578063e985e9c5146105fd578063ed6661c214610646578063f2fde38b1461065c57600080fd5b8063aee5d0ac14610551578063b661c2e514610571578063b88d4fde14610587578063bb8a16bd146105a757600080fd5b80638da5cb5b116100e75780638da5cb5b146104cb5780638ef79e91146104e957806395d89b4114610509578063a0712d681461051e578063a22cb4651461053157600080fd5b80637824407f1461045f5780637e40eaf914610476578063841718a614610496578063853828b6146104b657600080fd5b806342842e0e1161019b5780636352211e1161016a5780636352211e146103d057806368428a1b146103f05780636be0d5ce1461040a57806370a082311461042a578063715018a61461044a57600080fd5b806342842e0e146103625780634e99b800146103825780634f3e1efc14610397578063607c86fe146103ba57600080fd5b8063081812fc116101e2578063081812fc146102a5578063095ea7b3146102dd578063117803e3146102fd57806323b872dd14610322578063369b012d1461034257600080fd5b8062a6840e1461021357806301ffc9a71461023e57806306ea56181461026e57806306fdde0314610290575b600080fd5b34801561021f57600080fd5b5061022861067c565b6040516102359190611abd565b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611ae6565b61070a565b6040519015158152602001610235565b34801561027a57600080fd5b5061028e610289366004611b03565b61075c565b005b34801561029c57600080fd5b50610228610794565b3480156102b157600080fd5b506102c56102c0366004611b03565b610826565b6040516001600160a01b039091168152602001610235565b3480156102e957600080fd5b5061028e6102f8366004611b38565b6108bb565b34801561030957600080fd5b50600d546102c59061010090046001600160a01b031681565b34801561032e57600080fd5b5061028e61033d366004611b62565b6109d1565b34801561034e57600080fd5b5061028e61035d366004611b9e565b610a02565b34801561036e57600080fd5b5061028e61037d366004611b62565b610a4e565b34801561038e57600080fd5b50610228610a69565b3480156103a357600080fd5b506103ac610a76565b604051908152602001610235565b3480156103c657600080fd5b506103ac600a5481565b3480156103dc57600080fd5b506102c56103eb366004611b03565b610a86565b3480156103fc57600080fd5b50600d5461025e9060ff1681565b34801561041657600080fd5b5061028e610425366004611c45565b610afd565b34801561043657600080fd5b506103ac610445366004611b9e565b610b3e565b34801561045657600080fd5b5061028e610bc5565b34801561046b57600080fd5b50600f546103ac9081565b34801561048257600080fd5b50600e546102c5906001600160a01b031681565b3480156104a257600080fd5b5061028e6104b1366004611c9e565b610bfb565b3480156104c257600080fd5b5061028e610c38565b3480156104d757600080fd5b506006546001600160a01b03166102c5565b3480156104f557600080fd5b5061028e610504366004611c45565b610cdb565b34801561051557600080fd5b50610228610d18565b61028e61052c366004611b03565b610d27565b34801561053d57600080fd5b5061028e61054c366004611cb9565b610dbf565b34801561055d57600080fd5b5061028e61056c366004611b03565b610e84565b34801561057d57600080fd5b506103ac60085481565b34801561059357600080fd5b5061028e6105a2366004611cec565b610eb3565b3480156105b357600080fd5b506103ac60075481565b3480156105c957600080fd5b506102286105d8366004611b03565b610eeb565b3480156105e957600080fd5b5061028e6105f8366004611b03565b610f80565b34801561060957600080fd5b5061025e610618366004611d68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506103ac60095481565b34801561066857600080fd5b5061028e610677366004611b9e565b61100d565b600c805461068990611d92565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611d92565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061073b57506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b0316331461078f5760405162461bcd60e51b815260040161078690611dcd565b60405180910390fd5b600855565b6060600080546107a390611d92565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90611d92565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b506000908152600460205260409020546001600160a01b031690565b60006108c682610a86565b9050806001600160a01b0316836001600160a01b031614156109345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610786565b336001600160a01b038216148061095057506109508133610618565b6109c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610786565b6109cc83836110a5565b505050565b6109db3382611113565b6109f75760405162461bcd60e51b815260040161078690611e02565b6109cc83838361120a565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161078690611dcd565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6109cc83838360405180602001604052806000815250610eb3565b600b805461068990611d92565b6000610a81600f5490565b905090565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610786565b6006546001600160a01b03163314610b275760405162461bcd60e51b815260040161078690611dcd565b8051610b3a90600c9060208401906119cc565b5050565b60006001600160a01b038216610ba95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610786565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bef5760405162461bcd60e51b815260040161078690611dcd565b610bf960006113aa565b565b6006546001600160a01b03163314610c255760405162461bcd60e51b815260040161078690611dcd565b600d805460ff1916911515919091179055565b6006546001600160a01b03163314610c625760405162461bcd60e51b815260040161078690611dcd565b600d54600e54479161010090046001600160a01b0390811691161415610ca057600d54610c9d9061010090046001600160a01b0316476113fc565b50565b600e54610cc0906001600160a01b0316610cbb600284611e7f565b6113fc565b600d54610c9d9061010090046001600160a01b0316476113fc565b6006546001600160a01b03163314610d055760405162461bcd60e51b815260040161078690611dcd565b8051610b3a90600b9060208401906119cc565b6060600180546107a390611d92565b600d5460ff16610d6c5760405162461bcd60e51b815260206004820152601060248201526f22b9391d103737ba1030b1ba34bb329760811b6044820152606401610786565b600854811115610db65760405162461bcd60e51b81526020600482015260156024820152744572723a20696e76616c6964207175616e7469747960581b6044820152606401610786565b610c9d81611491565b6001600160a01b038216331415610e185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610786565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610eae5760405162461bcd60e51b815260040161078690611dcd565b600a55565b610ebd3383611113565b610ed95760405162461bcd60e51b815260040161078690611e02565b610ee5848484846115ef565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4b5760405162461bcd60e51b815260206004820152601660248201527522b9391d103737b732bc34b9ba32b73a103a37b5b2b760511b6044820152606401610786565b600b610f5683611622565b600c604051602001610f6a93929190611f2d565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610faa5760405162461bcd60e51b815260040161078690611dcd565b80610fb4600f5490565b11158015610fc457506007548111155b6110085760405162461bcd60e51b81526020600482015260156024820152744572723a20696e76616c6964206d6178206672656560581b6044820152606401610786565b600955565b6006546001600160a01b031633146110375760405162461bcd60e51b815260040161078690611dcd565b6001600160a01b03811661109c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b610c9d816113aa565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110da82610a86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661118c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b600061119783610a86565b9050806001600160a01b0316846001600160a01b031614806111d25750836001600160a01b03166111c784610826565b6001600160a01b0316145b8061120257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661121d82610a86565b6001600160a01b0316146112855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610786565b6001600160a01b0382166112e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610786565b6112f26000826110a5565b6001600160a01b038316600090815260036020526040812080546001929061131b908490611f60565b90915550506001600160a01b0382166000908152600360205260408120805460019290611349908490611f77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611449576040519150601f19603f3d011682016040523d82523d6000602084013e61144e565b606091505b50509050806109cc5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610786565b600081116114d45760405162461bcd60e51b815260206004820152601060248201526f4572723a206d696e696d756d206f6e6560801b6044820152606401610786565b6114e7816114e1600f5490565b90611720565b60095410156115a257600754611500826114e1600f5490565b111561154e5760405162461bcd60e51b815260206004820152601760248201527f4572723a2065786363656564206d617820737570706c790000000000000000006044820152606401610786565b600a5461155b9082611733565b3410156115a25760405162461bcd60e51b8152602060048201526015602482015274115c9c8e881a5b98dbdc9c9958dd08185b5bdd5b9d605a1b6044820152606401610786565b60005b81811015610b3a5760006115b8600f5490565b90506007548110156115dc576115d2600f80546001019055565b6115dc338261173f565b50806115e781611f8f565b9150506115a5565b6115fa84848461120a565b61160684848484611759565b610ee55760405162461bcd60e51b815260040161078690611faa565b6060816116465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611670578061165a81611f8f565b91506116699050600a83611e7f565b915061164a565b60008167ffffffffffffffff81111561168b5761168b611bb9565b6040519080825280601f01601f1916602001820160405280156116b5576020820181803683370190505b5090505b8415611202576116ca600183611f60565b91506116d7600a86611ffc565b6116e2906030611f77565b60f81b8183815181106116f7576116f7612010565b60200101906001600160f81b031916908160001a905350611719600a86611e7f565b94506116b9565b600061172c8284611f77565b9392505050565b600061172c8284612026565b610b3a828260405180602001604052806000815250611857565b60006001600160a01b0384163b1561184c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061179d903390899088908890600401612045565b6020604051808303816000875af19250505080156117d8575060408051601f3d908101601f191682019092526117d591810190612082565b60015b611832573d808015611806576040519150601f19603f3d011682016040523d82523d6000602084013e61180b565b606091505b50805161182a5760405162461bcd60e51b815260040161078690611faa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611202565b506001949350505050565b611861838361188a565b61186e6000848484611759565b6109cc5760405162461bcd60e51b815260040161078690611faa565b6001600160a01b0382166118e05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610786565b6000818152600260205260409020546001600160a01b0316156119455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610786565b6001600160a01b038216600090815260036020526040812080546001929061196e908490611f77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119d890611d92565b90600052602060002090601f0160209004810192826119fa5760008555611a40565b82601f10611a1357805160ff1916838001178555611a40565b82800160010185558215611a40579182015b82811115611a40578251825591602001919060010190611a25565b50611a4c929150611a50565b5090565b5b80821115611a4c5760008155600101611a51565b60005b83811015611a80578181015183820152602001611a68565b83811115610ee55750506000910152565b60008151808452611aa9816020860160208601611a65565b601f01601f19169290920160200192915050565b60208152600061172c6020830184611a91565b6001600160e01b031981168114610c9d57600080fd5b600060208284031215611af857600080fd5b813561172c81611ad0565b600060208284031215611b1557600080fd5b5035919050565b80356001600160a01b0381168114611b3357600080fd5b919050565b60008060408385031215611b4b57600080fd5b611b5483611b1c565b946020939093013593505050565b600080600060608486031215611b7757600080fd5b611b8084611b1c565b9250611b8e60208501611b1c565b9150604084013590509250925092565b600060208284031215611bb057600080fd5b61172c82611b1c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bea57611bea611bb9565b604051601f8501601f19908116603f01168101908282118183101715611c1257611c12611bb9565b81604052809350858152868686011115611c2b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5757600080fd5b813567ffffffffffffffff811115611c6e57600080fd5b8201601f81018413611c7f57600080fd5b61120284823560208401611bcf565b80358015158114611b3357600080fd5b600060208284031215611cb057600080fd5b61172c82611c8e565b60008060408385031215611ccc57600080fd5b611cd583611b1c565b9150611ce360208401611c8e565b90509250929050565b60008060008060808587031215611d0257600080fd5b611d0b85611b1c565b9350611d1960208601611b1c565b925060408501359150606085013567ffffffffffffffff811115611d3c57600080fd5b8501601f81018713611d4d57600080fd5b611d5c87823560208401611bcf565b91505092959194509250565b60008060408385031215611d7b57600080fd5b611d8483611b1c565b9150611ce360208401611b1c565b600181811c90821680611da657607f821691505b60208210811415611dc757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082611e8e57611e8e611e53565b500490565b8054600090600181811c9080831680611ead57607f831692505b6020808410821415611ecf57634e487b7160e01b600052602260045260246000fd5b818015611ee35760018114611ef457611f21565b60ff19861689528489019650611f21565b60008881526020902060005b86811015611f195781548b820152908501908301611f00565b505084890196505b50505050505092915050565b6000611f398286611e93565b8451611f49818360208901611a65565b611f5581830186611e93565b979650505050505050565b600082821015611f7257611f72611e69565b500390565b60008219821115611f8a57611f8a611e69565b500190565b6000600019821415611fa357611fa3611e69565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261200b5761200b611e53565b500690565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561204057612040611e69565b500290565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207890830184611a91565b9695505050505050565b60006020828403121561209457600080fd5b815161172c81611ad056fea2646970667358221220d0cf2dae0d044bb79d85e52489d2cf0aa7f4d3295675b8eb50c3987c6ebafc1364736f6c634300080a003300000000000000000000000009afb1ec421f40abb7629225d78a9c70a558c940

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80637824407f11610118578063aee5d0ac116100a0578063c87b56dd1161006f578063c87b56dd146105bd578063d755bf99146105dd578063e985e9c5146105fd578063ed6661c214610646578063f2fde38b1461065c57600080fd5b8063aee5d0ac14610551578063b661c2e514610571578063b88d4fde14610587578063bb8a16bd146105a757600080fd5b80638da5cb5b116100e75780638da5cb5b146104cb5780638ef79e91146104e957806395d89b4114610509578063a0712d681461051e578063a22cb4651461053157600080fd5b80637824407f1461045f5780637e40eaf914610476578063841718a614610496578063853828b6146104b657600080fd5b806342842e0e1161019b5780636352211e1161016a5780636352211e146103d057806368428a1b146103f05780636be0d5ce1461040a57806370a082311461042a578063715018a61461044a57600080fd5b806342842e0e146103625780634e99b800146103825780634f3e1efc14610397578063607c86fe146103ba57600080fd5b8063081812fc116101e2578063081812fc146102a5578063095ea7b3146102dd578063117803e3146102fd57806323b872dd14610322578063369b012d1461034257600080fd5b8062a6840e1461021357806301ffc9a71461023e57806306ea56181461026e57806306fdde0314610290575b600080fd5b34801561021f57600080fd5b5061022861067c565b6040516102359190611abd565b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611ae6565b61070a565b6040519015158152602001610235565b34801561027a57600080fd5b5061028e610289366004611b03565b61075c565b005b34801561029c57600080fd5b50610228610794565b3480156102b157600080fd5b506102c56102c0366004611b03565b610826565b6040516001600160a01b039091168152602001610235565b3480156102e957600080fd5b5061028e6102f8366004611b38565b6108bb565b34801561030957600080fd5b50600d546102c59061010090046001600160a01b031681565b34801561032e57600080fd5b5061028e61033d366004611b62565b6109d1565b34801561034e57600080fd5b5061028e61035d366004611b9e565b610a02565b34801561036e57600080fd5b5061028e61037d366004611b62565b610a4e565b34801561038e57600080fd5b50610228610a69565b3480156103a357600080fd5b506103ac610a76565b604051908152602001610235565b3480156103c657600080fd5b506103ac600a5481565b3480156103dc57600080fd5b506102c56103eb366004611b03565b610a86565b3480156103fc57600080fd5b50600d5461025e9060ff1681565b34801561041657600080fd5b5061028e610425366004611c45565b610afd565b34801561043657600080fd5b506103ac610445366004611b9e565b610b3e565b34801561045657600080fd5b5061028e610bc5565b34801561046b57600080fd5b50600f546103ac9081565b34801561048257600080fd5b50600e546102c5906001600160a01b031681565b3480156104a257600080fd5b5061028e6104b1366004611c9e565b610bfb565b3480156104c257600080fd5b5061028e610c38565b3480156104d757600080fd5b506006546001600160a01b03166102c5565b3480156104f557600080fd5b5061028e610504366004611c45565b610cdb565b34801561051557600080fd5b50610228610d18565b61028e61052c366004611b03565b610d27565b34801561053d57600080fd5b5061028e61054c366004611cb9565b610dbf565b34801561055d57600080fd5b5061028e61056c366004611b03565b610e84565b34801561057d57600080fd5b506103ac60085481565b34801561059357600080fd5b5061028e6105a2366004611cec565b610eb3565b3480156105b357600080fd5b506103ac60075481565b3480156105c957600080fd5b506102286105d8366004611b03565b610eeb565b3480156105e957600080fd5b5061028e6105f8366004611b03565b610f80565b34801561060957600080fd5b5061025e610618366004611d68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506103ac60095481565b34801561066857600080fd5b5061028e610677366004611b9e565b61100d565b600c805461068990611d92565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611d92565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061073b57506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b0316331461078f5760405162461bcd60e51b815260040161078690611dcd565b60405180910390fd5b600855565b6060600080546107a390611d92565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90611d92565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b506000908152600460205260409020546001600160a01b031690565b60006108c682610a86565b9050806001600160a01b0316836001600160a01b031614156109345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610786565b336001600160a01b038216148061095057506109508133610618565b6109c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610786565b6109cc83836110a5565b505050565b6109db3382611113565b6109f75760405162461bcd60e51b815260040161078690611e02565b6109cc83838361120a565b6006546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161078690611dcd565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6109cc83838360405180602001604052806000815250610eb3565b600b805461068990611d92565b6000610a81600f5490565b905090565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610786565b6006546001600160a01b03163314610b275760405162461bcd60e51b815260040161078690611dcd565b8051610b3a90600c9060208401906119cc565b5050565b60006001600160a01b038216610ba95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610786565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bef5760405162461bcd60e51b815260040161078690611dcd565b610bf960006113aa565b565b6006546001600160a01b03163314610c255760405162461bcd60e51b815260040161078690611dcd565b600d805460ff1916911515919091179055565b6006546001600160a01b03163314610c625760405162461bcd60e51b815260040161078690611dcd565b600d54600e54479161010090046001600160a01b0390811691161415610ca057600d54610c9d9061010090046001600160a01b0316476113fc565b50565b600e54610cc0906001600160a01b0316610cbb600284611e7f565b6113fc565b600d54610c9d9061010090046001600160a01b0316476113fc565b6006546001600160a01b03163314610d055760405162461bcd60e51b815260040161078690611dcd565b8051610b3a90600b9060208401906119cc565b6060600180546107a390611d92565b600d5460ff16610d6c5760405162461bcd60e51b815260206004820152601060248201526f22b9391d103737ba1030b1ba34bb329760811b6044820152606401610786565b600854811115610db65760405162461bcd60e51b81526020600482015260156024820152744572723a20696e76616c6964207175616e7469747960581b6044820152606401610786565b610c9d81611491565b6001600160a01b038216331415610e185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610786565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610eae5760405162461bcd60e51b815260040161078690611dcd565b600a55565b610ebd3383611113565b610ed95760405162461bcd60e51b815260040161078690611e02565b610ee5848484846115ef565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4b5760405162461bcd60e51b815260206004820152601660248201527522b9391d103737b732bc34b9ba32b73a103a37b5b2b760511b6044820152606401610786565b600b610f5683611622565b600c604051602001610f6a93929190611f2d565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610faa5760405162461bcd60e51b815260040161078690611dcd565b80610fb4600f5490565b11158015610fc457506007548111155b6110085760405162461bcd60e51b81526020600482015260156024820152744572723a20696e76616c6964206d6178206672656560581b6044820152606401610786565b600955565b6006546001600160a01b031633146110375760405162461bcd60e51b815260040161078690611dcd565b6001600160a01b03811661109c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b610c9d816113aa565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110da82610a86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661118c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b600061119783610a86565b9050806001600160a01b0316846001600160a01b031614806111d25750836001600160a01b03166111c784610826565b6001600160a01b0316145b8061120257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661121d82610a86565b6001600160a01b0316146112855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610786565b6001600160a01b0382166112e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610786565b6112f26000826110a5565b6001600160a01b038316600090815260036020526040812080546001929061131b908490611f60565b90915550506001600160a01b0382166000908152600360205260408120805460019290611349908490611f77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611449576040519150601f19603f3d011682016040523d82523d6000602084013e61144e565b606091505b50509050806109cc5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610786565b600081116114d45760405162461bcd60e51b815260206004820152601060248201526f4572723a206d696e696d756d206f6e6560801b6044820152606401610786565b6114e7816114e1600f5490565b90611720565b60095410156115a257600754611500826114e1600f5490565b111561154e5760405162461bcd60e51b815260206004820152601760248201527f4572723a2065786363656564206d617820737570706c790000000000000000006044820152606401610786565b600a5461155b9082611733565b3410156115a25760405162461bcd60e51b8152602060048201526015602482015274115c9c8e881a5b98dbdc9c9958dd08185b5bdd5b9d605a1b6044820152606401610786565b60005b81811015610b3a5760006115b8600f5490565b90506007548110156115dc576115d2600f80546001019055565b6115dc338261173f565b50806115e781611f8f565b9150506115a5565b6115fa84848461120a565b61160684848484611759565b610ee55760405162461bcd60e51b815260040161078690611faa565b6060816116465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611670578061165a81611f8f565b91506116699050600a83611e7f565b915061164a565b60008167ffffffffffffffff81111561168b5761168b611bb9565b6040519080825280601f01601f1916602001820160405280156116b5576020820181803683370190505b5090505b8415611202576116ca600183611f60565b91506116d7600a86611ffc565b6116e2906030611f77565b60f81b8183815181106116f7576116f7612010565b60200101906001600160f81b031916908160001a905350611719600a86611e7f565b94506116b9565b600061172c8284611f77565b9392505050565b600061172c8284612026565b610b3a828260405180602001604052806000815250611857565b60006001600160a01b0384163b1561184c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061179d903390899088908890600401612045565b6020604051808303816000875af19250505080156117d8575060408051601f3d908101601f191682019092526117d591810190612082565b60015b611832573d808015611806576040519150601f19603f3d011682016040523d82523d6000602084013e61180b565b606091505b50805161182a5760405162461bcd60e51b815260040161078690611faa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611202565b506001949350505050565b611861838361188a565b61186e6000848484611759565b6109cc5760405162461bcd60e51b815260040161078690611faa565b6001600160a01b0382166118e05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610786565b6000818152600260205260409020546001600160a01b0316156119455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610786565b6001600160a01b038216600090815260036020526040812080546001929061196e908490611f77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119d890611d92565b90600052602060002090601f0160209004810192826119fa5760008555611a40565b82601f10611a1357805160ff1916838001178555611a40565b82800160010185558215611a40579182015b82811115611a40578251825591602001919060010190611a25565b50611a4c929150611a50565b5090565b5b80821115611a4c5760008155600101611a51565b60005b83811015611a80578181015183820152602001611a68565b83811115610ee55750506000910152565b60008151808452611aa9816020860160208601611a65565b601f01601f19169290920160200192915050565b60208152600061172c6020830184611a91565b6001600160e01b031981168114610c9d57600080fd5b600060208284031215611af857600080fd5b813561172c81611ad0565b600060208284031215611b1557600080fd5b5035919050565b80356001600160a01b0381168114611b3357600080fd5b919050565b60008060408385031215611b4b57600080fd5b611b5483611b1c565b946020939093013593505050565b600080600060608486031215611b7757600080fd5b611b8084611b1c565b9250611b8e60208501611b1c565b9150604084013590509250925092565b600060208284031215611bb057600080fd5b61172c82611b1c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bea57611bea611bb9565b604051601f8501601f19908116603f01168101908282118183101715611c1257611c12611bb9565b81604052809350858152868686011115611c2b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5757600080fd5b813567ffffffffffffffff811115611c6e57600080fd5b8201601f81018413611c7f57600080fd5b61120284823560208401611bcf565b80358015158114611b3357600080fd5b600060208284031215611cb057600080fd5b61172c82611c8e565b60008060408385031215611ccc57600080fd5b611cd583611b1c565b9150611ce360208401611c8e565b90509250929050565b60008060008060808587031215611d0257600080fd5b611d0b85611b1c565b9350611d1960208601611b1c565b925060408501359150606085013567ffffffffffffffff811115611d3c57600080fd5b8501601f81018713611d4d57600080fd5b611d5c87823560208401611bcf565b91505092959194509250565b60008060408385031215611d7b57600080fd5b611d8483611b1c565b9150611ce360208401611b1c565b600181811c90821680611da657607f821691505b60208210811415611dc757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082611e8e57611e8e611e53565b500490565b8054600090600181811c9080831680611ead57607f831692505b6020808410821415611ecf57634e487b7160e01b600052602260045260246000fd5b818015611ee35760018114611ef457611f21565b60ff19861689528489019650611f21565b60008881526020902060005b86811015611f195781548b820152908501908301611f00565b505084890196505b50505050505092915050565b6000611f398286611e93565b8451611f49818360208901611a65565b611f5581830186611e93565b979650505050505050565b600082821015611f7257611f72611e69565b500390565b60008219821115611f8a57611f8a611e69565b500190565b6000600019821415611fa357611fa3611e69565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261200b5761200b611e53565b500690565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561204057612040611e69565b500290565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207890830184611a91565b9695505050505050565b60006020828403121561209457600080fd5b815161172c81611ad056fea2646970667358221220d0cf2dae0d044bb79d85e52489d2cf0aa7f4d3295675b8eb50c3987c6ebafc1364736f6c634300080a0033

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

00000000000000000000000009afb1ec421f40abb7629225d78a9c70a558c940

-----Decoded View---------------
Arg [0] : _collab (address): 0x09Afb1EC421f40ABb7629225d78a9c70a558C940

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000009afb1ec421f40abb7629225d78a9c70a558c940


Deployed Bytecode Sourcemap

44963:3576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45311:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31815:355;;;;;;;;;;-1:-1:-1;31815:355:0;;;;;:::i;:::-;;:::i;:::-;;;1316:14:1;;1309:22;1291:41;;1279:2;1264:18;31815:355:0;1151:187:1;47425:121:0;;;;;;;;;;-1:-1:-1;47425:121:0;;;;;:::i;:::-;;:::i;:::-;;32984:100;;;;;;;;;;;;;:::i;34677:308::-;;;;;;;;;;-1:-1:-1;34677:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34677:308:0;1528:203:1;34200:411:0;;;;;;;;;;-1:-1:-1;34200:411:0;;;;;:::i;:::-;;:::i;45397:20::-;;;;;;;;;;-1:-1:-1;45397:20:0;;;;;;;-1:-1:-1;;;;;45397:20:0;;;35736:376;;;;;;;;;;-1:-1:-1;35736:376:0;;;;;:::i;:::-;;:::i;47764:90::-;;;;;;;;;;-1:-1:-1;47764:90:0;;;;;:::i;:::-;;:::i;36183:185::-;;;;;;;;;;-1:-1:-1;36183:185:0;;;;;:::i;:::-;;:::i;45278:26::-;;;;;;;;;;;;;:::i;45625:106::-;;;;;;;;;;;;;:::i;:::-;;;2843:25:1;;;2831:2;2816:18;45625:106:0;2697:177:1;45232:37:0;;;;;;;;;;;;;;;;32591:326;;;;;;;;;;-1:-1:-1;32591:326:0;;;;;:::i;:::-;;:::i;45360:30::-;;;;;;;;;;-1:-1:-1;45360:30:0;;;;;;;;47862:167;;;;;;;;;;-1:-1:-1;47862:167:0;;;;;:::i;:::-;;:::i;32234:295::-;;;;;;;;;;-1:-1:-1;32234:295:0;;;;;:::i;:::-;;:::i;13017:94::-;;;;;;;;;;;;;:::i;45454:35::-;;;;;;;;;;-1:-1:-1;45454:35:0;;;;;;45424:21;;;;;;;;;;-1:-1:-1;45424:21:0;;;;-1:-1:-1;;;;;45424:21:0;;;47661:95;;;;;;;;;;-1:-1:-1;47661:95:0;;;;;:::i;:::-;;:::i;48037:325::-;;;;;;;;;;;;;:::i;12366:87::-;;;;;;;;;;-1:-1:-1;12439:6:0;;-1:-1:-1;;;;;12439:6:0;12366:87;;45739:110;;;;;;;;;;-1:-1:-1;45739:110:0;;;;;:::i;:::-;;:::i;33153:104::-;;;;;;;;;;;;;:::i;46286:219::-;;;;;;:::i;:::-;;:::i;35057:327::-;;;;;;;;;;-1:-1:-1;35057:327:0;;;;;:::i;:::-;;:::i;47554:99::-;;;;;;;;;;-1:-1:-1;47554:99:0;;;;;:::i;:::-;;:::i;45154:35::-;;;;;;;;;;;;;;;;36439:365;;;;;;;;;;-1:-1:-1;36439:365:0;;;;;:::i;:::-;;:::i;45117:30::-;;;;;;;;;;;;;;;;45857:421;;;;;;;;;;-1:-1:-1;45857:421:0;;;;;:::i;:::-;;:::i;47220:197::-;;;;;;;;;;-1:-1:-1;47220:197:0;;;;;:::i;:::-;;:::i;35455:214::-;;;;;;;;;;-1:-1:-1;35455:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;35626:25:0;;;35597:4;35626:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35455:214;45196:29;;;;;;;;;;;;;;;;13266:229;;;;;;;;;;-1:-1:-1;13266:229:0;;;;;:::i;:::-;;:::i;45311:42::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31815:355::-;31962:4;-1:-1:-1;;;;;;32004:40:0;;-1:-1:-1;;;32004:40:0;;:105;;-1:-1:-1;;;;;;;32061:48:0;;-1:-1:-1;;;32061:48:0;32004:105;:158;;;-1:-1:-1;;;;;;;;;;24860:40:0;;;32126:36;31984:178;31815:355;-1:-1:-1;;31815:355:0:o;47425:121::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;;;;;;;;;47505:16:::1;:33:::0;47425:121::o;32984:100::-;33038:13;33071:5;33064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32984:100;:::o;34677:308::-;34798:7;38440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38440:16:0;34823:110;;;;-1:-1:-1;;;34823:110:0;;6598:2:1;34823:110:0;;;6580:21:1;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:1;;;6720:42;6779:19;;34823:110:0;6396:408:1;34823:110:0;-1:-1:-1;34953:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34953:24:0;;34677:308::o;34200:411::-;34281:13;34297:23;34312:7;34297:14;:23::i;:::-;34281:39;;34345:5;-1:-1:-1;;;;;34339:11:0;:2;-1:-1:-1;;;;;34339:11:0;;;34331:57;;;;-1:-1:-1;;;34331:57:0;;7011:2:1;34331:57:0;;;6993:21:1;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:1;;;7133:31;7181:19;;34331:57:0;6809:397:1;34331:57:0;11240:10;-1:-1:-1;;;;;34423:21:0;;;;:62;;-1:-1:-1;34448:37:0;34465:5;11240:10;35455:214;:::i;34448:37::-;34401:168;;;;-1:-1:-1;;;34401:168:0;;7413:2:1;34401:168:0;;;7395:21:1;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;7562:26;7542:18;;;7535:54;7606:19;;34401:168:0;7211:420:1;34401:168:0;34582:21;34591:2;34595:7;34582:8;:21::i;:::-;34270:341;34200:411;;:::o;35736:376::-;35945:41;11240:10;35978:7;35945:18;:41::i;:::-;35923:140;;;;-1:-1:-1;;;35923:140:0;;;;;;;:::i;:::-;36076:28;36086:4;36092:2;36096:7;36076:9;:28::i;47764:90::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;47830:6:::1;:16:::0;;-1:-1:-1;;;;;;47830:16:0::1;-1:-1:-1::0;;;;;47830:16:0;;;::::1;::::0;;;::::1;::::0;;47764:90::o;36183:185::-;36321:39;36338:4;36344:2;36348:7;36321:39;;;;;;;;;;;;:16;:39::i;45278:26::-;;;;;;;:::i;45625:106::-;45675:7;45702:21;:11;912:14;;820:114;45702:21;45695:28;;45625:106;:::o;32591:326::-;32708:7;32749:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32749:16:0;32798:19;32776:110;;;;-1:-1:-1;;;32776:110:0;;8256:2:1;32776:110:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:39;8434:19;;32776:110:0;8054:405:1;47862:167:0;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;47981:40;;::::1;::::0;:18:::1;::::0;:40:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47862:167:::0;:::o;32234:295::-;32351:7;-1:-1:-1;;;;;32398:19:0;;32376:111;;;;-1:-1:-1;;;32376:111:0;;8666:2:1;32376:111:0;;;8648:21:1;8705:2;8685:18;;;8678:30;8744:34;8724:18;;;8717:62;-1:-1:-1;;;8795:18:1;;;8788:40;8845:19;;32376:111:0;8464:406:1;32376:111:0;-1:-1:-1;;;;;;32505:16:0;;;;;:9;:16;;;;;;;32234:295::o;13017:94::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;13082:21:::1;13100:1;13082:9;:21::i;:::-;13017:94::o:0;47661:95::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;47728:10:::1;:20:::0;;-1:-1:-1;;47728:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47661:95::o;48037:325::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;48152:5:::1;::::0;48142:6:::1;::::0;48106:21:::1;::::0;48152:5:::1;::::0;::::1;-1:-1:-1::0;;;;;48152:5:0;;::::1;48142:6:::0;::::1;:15;48138:217;;;48183:5;::::0;48173:39:::1;::::0;48183:5:::1;::::0;::::1;-1:-1:-1::0;;;;;48183:5:0::1;48190:21;48173:9;:39::i;:::-;48077:285;48037:325::o:0;48138:217::-:1;48255:6;::::0;48245:30:::1;::::0;-1:-1:-1;;;;;48255:6:0::1;48263:11;48273:1;48263:7:::0;:11:::1;:::i;:::-;48245:9;:30::i;:::-;48307:5;::::0;48297:39:::1;::::0;48307:5:::1;::::0;::::1;-1:-1:-1::0;;;;;48307:5:0::1;48314:21;48297:9;:39::i;45739:110::-:0;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;45818:23;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;33153:104::-:0;33209:13;33242:7;33235:14;;;;;:::i;46286:219::-;46355:10;;;;46347:39;;;;-1:-1:-1;;;46347:39:0;;9466:2:1;46347:39:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:46;9580:18;;46347:39:0;9264:340:1;46347:39:0;46418:16;;46405:9;:29;;46397:63;;;;-1:-1:-1;;;46397:63:0;;9811:2:1;46397:63:0;;;9793:21:1;9850:2;9830:18;;;9823:30;-1:-1:-1;;;9869:18:1;;;9862:51;9930:18;;46397:63:0;9609:345:1;46397:63:0;46473:24;46487:9;46473:13;:24::i;35057:327::-;-1:-1:-1;;;;;35192:24:0;;11240:10;35192:24;;35184:62;;;;-1:-1:-1;;;35184:62:0;;10161:2:1;35184:62:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239:27;10219:18;;;10212:55;10284:18;;35184:62:0;9959:349:1;35184:62:0;11240:10;35259:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35259:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35259:53:0;;;;;;;;;;35328:48;;1291:41:1;;;35259:42:0;;11240:10;35328:48;;1264:18:1;35328:48:0;;;;;;;35057:327;;:::o;47554:99::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;47624:9:::1;:21:::0;47554:99::o;36439:365::-;36628:41;11240:10;36661:7;36628:18;:41::i;:::-;36606:140;;;;-1:-1:-1;;;36606:140:0;;;;;;;:::i;:::-;36757:39;36771:4;36777:2;36781:7;36790:5;36757:13;:39::i;:::-;36439:365;;;;:::o;45857:421::-;38416:4;38440:16;;;:7;:16;;;;;;45959:13;;-1:-1:-1;;;;;38440:16:0;45992:52;;;;-1:-1:-1;;;45992:52:0;;10515:2:1;45992:52:0;;;10497:21:1;10554:2;10534:18;;;10527:30;-1:-1:-1;;;10573:18:1;;;10566:52;10635:18;;45992:52:0;10313:346:1;45992:52:0;46141:12;46176:19;:8;:17;:19::i;:::-;46218:18;46102:153;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46057:213;;45857:421;;;:::o;47220:197::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;47321:8:::1;47296:21;:11;912:14:::0;;820:114;47296:21:::1;:33;;:57;;;;;47345:8;;47333;:20;;47296:57;47288:91;;;::::0;-1:-1:-1;;;47288:91:0;;12431:2:1;47288:91:0::1;::::0;::::1;12413:21:1::0;12470:2;12450:18;;;12443:30;-1:-1:-1;;;12489:18:1;;;12482:51;12550:18;;47288:91:0::1;12229:345:1::0;47288:91:0::1;47390:8;:19:::0;47220:197::o;13266:229::-;12439:6;;-1:-1:-1;;;;;12439:6:0;11240:10;12586:23;12578:68;;;;-1:-1:-1;;;12578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13369:22:0;::::1;13347:110;;;::::0;-1:-1:-1;;;13347:110:0;;12781:2:1;13347:110:0::1;::::0;::::1;12763:21:1::0;12820:2;12800:18;;;12793:30;12859:34;12839:18;;;12832:62;-1:-1:-1;;;12910:18:1;;;12903:36;12956:19;;13347:110:0::1;12579:402:1::0;13347:110:0::1;13468:19;13478:8;13468:9;:19::i;42474:174::-:0;42549:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42549:29:0;-1:-1:-1;;;;;42549:29:0;;;;;;;;:24;;42603:23;42549:24;42603:14;:23::i;:::-;-1:-1:-1;;;;;42594:46:0;;;;;;;;;;;42474:174;;:::o;38645:452::-;38774:4;38440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38440:16:0;38796:110;;;;-1:-1:-1;;;38796:110:0;;13188:2:1;38796:110:0;;;13170:21:1;13227:2;13207:18;;;13200:30;13266:34;13246:18;;;13239:62;-1:-1:-1;;;13317:18:1;;;13310:42;13369:19;;38796:110:0;12986:408:1;38796:110:0;38917:13;38933:23;38948:7;38933:14;:23::i;:::-;38917:39;;38986:5;-1:-1:-1;;;;;38975:16:0;:7;-1:-1:-1;;;;;38975:16:0;;:64;;;;39032:7;-1:-1:-1;;;;;39008:31:0;:20;39020:7;39008:11;:20::i;:::-;-1:-1:-1;;;;;39008:31:0;;38975:64;:113;;;-1:-1:-1;;;;;;35626:25:0;;;35597:4;35626:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39056:32;38967:122;38645:452;-1:-1:-1;;;;38645:452:0:o;41741:615::-;41914:4;-1:-1:-1;;;;;41887:31:0;:23;41902:7;41887:14;:23::i;:::-;-1:-1:-1;;;;;41887:31:0;;41865:122;;;;-1:-1:-1;;;41865:122:0;;13601:2:1;41865:122:0;;;13583:21:1;13640:2;13620:18;;;13613:30;13679:34;13659:18;;;13652:62;-1:-1:-1;;;13730:18:1;;;13723:39;13779:19;;41865:122:0;13399:405:1;41865:122:0;-1:-1:-1;;;;;42006:16:0;;41998:65;;;;-1:-1:-1;;;41998:65:0;;14011:2:1;41998:65:0;;;13993:21:1;14050:2;14030:18;;;14023:30;14089:34;14069:18;;;14062:62;-1:-1:-1;;;14140:18:1;;;14133:34;14184:19;;41998:65:0;13809:400:1;41998:65:0;42180:29;42197:1;42201:7;42180:8;:29::i;:::-;-1:-1:-1;;;;;42222:15:0;;;;;;:9;:15;;;;;:20;;42241:1;;42222:15;:20;;42241:1;;42222:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42253:13:0;;;;;;:9;:13;;;;;:18;;42270:1;;42253:13;:18;;42270:1;;42253:18;:::i;:::-;;;;-1:-1:-1;;42282:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42282:21:0;-1:-1:-1;;;;;42282:21:0;;;;;;;;;42321:27;;42282:16;;42321:27;;;;;;;41741:615;;;:::o;13503:173::-;13578:6;;;-1:-1:-1;;;;;13595:17:0;;;-1:-1:-1;;;;;;13595:17:0;;;;;;;13628:40;;13578:6;;;13595:17;13578:6;;13628:40;;13559:16;;13628:40;13548:128;13503:173;:::o;48370:166::-;48438:12;48455:5;-1:-1:-1;;;;;48455:10:0;48473:4;48455:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48437:45;;;48501:7;48493:35;;;;-1:-1:-1;;;48493:35:0;;14889:2:1;48493:35:0;;;14871:21:1;14928:2;14908:18;;;14901:30;-1:-1:-1;;;14947:18:1;;;14940:45;15002:18;;48493:35:0;14687:339:1;46513:699:0;46595:1;46583:9;:13;46575:42;;;;-1:-1:-1;;;46575:42:0;;15233:2:1;46575:42:0;;;15215:21:1;15272:2;15252:18;;;15245:30;-1:-1:-1;;;15291:18:1;;;15284:46;15347:18;;46575:42:0;15031:340:1;46575:42:0;46643:36;46669:9;46643:21;:11;912:14;;820:114;46643:21;:25;;:36::i;:::-;46632:8;;:47;46628:306;;;46761:8;;46721:36;46747:9;46721:21;:11;912:14;;820:114;46721:36;:48;;46695:133;;;;-1:-1:-1;;;46695:133:0;;15578:2:1;46695:133:0;;;15560:21:1;15617:2;15597:18;;;15590:30;15656:25;15636:18;;;15629:53;15699:18;;46695:133:0;15376:347:1;46695:133:0;46864:9;;:24;;46878:9;46864:13;:24::i;:::-;46851:9;:37;;46843:71;;;;-1:-1:-1;;;46843:71:0;;15930:2:1;46843:71:0;;;15912:21:1;15969:2;15949:18;;;15942:30;-1:-1:-1;;;15988:18:1;;;15981:51;16049:18;;46843:71:0;15728:345:1;46843:71:0;46951:9;46946:259;46970:9;46966:1;:13;46946:259;;;47001:17;47021:21;:11;912:14;;820:114;47021:21;47001:41;;47075:8;;47063:9;:20;47059:135;;;47104:23;:11;1031:19;;1049:1;1031:19;;;942:127;47104:23;47146:32;47156:10;47168:9;47146;:32::i;:::-;-1:-1:-1;46981:3:0;;;;:::i;:::-;;;;46946:259;;37686:352;37843:28;37853:4;37859:2;37863:7;37843:9;:28::i;:::-;37904:48;37927:4;37933:2;37937:7;37946:5;37904:22;:48::i;:::-;37882:148;;;;-1:-1:-1;;;37882:148:0;;;;;;;:::i;8774:723::-;8830:13;9051:10;9047:53;;-1:-1:-1;;9078:10:0;;;;;;;;;;;;-1:-1:-1;;;9078:10:0;;;;;8774:723::o;9047:53::-;9125:5;9110:12;9166:78;9173:9;;9166:78;;9199:8;;;;:::i;:::-;;-1:-1:-1;9222:10:0;;-1:-1:-1;9230:2:0;9222:10;;:::i;:::-;;;9166:78;;;9254:19;9286:6;9276:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9276:17:0;;9254:39;;9304:154;9311:10;;9304:154;;9338:11;9348:1;9338:11;;:::i;:::-;;-1:-1:-1;9407:10:0;9415:2;9407:5;:10;:::i;:::-;9394:24;;:2;:24;:::i;:::-;9381:39;;9364:6;9371;9364:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9364:56:0;;;;;;;;-1:-1:-1;9435:11:0;9444:2;9435:11;;:::i;:::-;;;9304:154;;4328:98;4386:7;4413:5;4417:1;4413;:5;:::i;:::-;4406:12;4328:98;-1:-1:-1;;;4328:98:0:o;5066:::-;5124:7;5151:5;5155:1;5151;:5;:::i;39439:110::-;39515:26;39525:2;39529:7;39515:26;;;;;;;;;;;;:9;:26::i;43213:980::-;43368:4;-1:-1:-1;;;;;43389:13:0;;14742:20;14790:8;43385:801;;43442:175;;-1:-1:-1;;;43442:175:0;;-1:-1:-1;;;;;43442:36:0;;;;;:175;;11240:10;;43536:4;;43563:7;;43593:5;;43442:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43442:175:0;;;;;;;;-1:-1:-1;;43442:175:0;;;;;;;;;;;;:::i;:::-;;;43421:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43800:13:0;;43796:320;;43843:108;;-1:-1:-1;;;43843:108:0;;;;;;;:::i;43796:320::-;44066:6;44060:13;44051:6;44047:2;44043:15;44036:38;43421:710;-1:-1:-1;;;;;;43681:51:0;-1:-1:-1;;;43681:51:0;;-1:-1:-1;43674:58:0;;43385:801;-1:-1:-1;44170:4:0;43213:980;;;;;;:::o;39776:321::-;39906:18;39912:2;39916:7;39906:5;:18::i;:::-;39957:54;39988:1;39992:2;39996:7;40005:5;39957:22;:54::i;:::-;39935:154;;;;-1:-1:-1;;;39935:154:0;;;;;;;:::i;40433:382::-;-1:-1:-1;;;;;40513:16:0;;40505:61;;;;-1:-1:-1;;;40505:61:0;;18009:2:1;40505:61:0;;;17991:21:1;;;18028:18;;;18021:30;18087:34;18067:18;;;18060:62;18139:18;;40505:61:0;17807:356:1;40505:61:0;38416:4;38440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38440:16:0;:30;40577:58;;;;-1:-1:-1;;;40577:58:0;;18370:2:1;40577:58:0;;;18352:21:1;18409:2;18389:18;;;18382:30;18448;18428:18;;;18421:58;18496:18;;40577:58:0;18168:352:1;40577:58:0;-1:-1:-1;;;;;40706:13:0;;;;;;:9;:13;;;;;:18;;40723:1;;40706:13;:18;;40723:1;;40706:18;:::i;:::-;;;;-1:-1:-1;;40735:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40735:21:0;-1:-1:-1;;;;;40735:21:0;;;;;;;;40774:33;;40735:16;;;40774:33;;40735:16;;40774:33;40433:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:258:1;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:::-;319:3;357:5;351:12;384:6;379:3;372:19;400:63;456:6;449:4;444:3;440:14;433:4;426:5;422:16;400:63;:::i;:::-;517:2;496:15;-1:-1:-1;;492:29:1;483:39;;;;524:4;479:50;;277:258;-1:-1:-1;;277:258:1:o;540:220::-;689:2;678:9;671:21;652:4;709:45;750:2;739:9;735:18;727:6;709:45;:::i;765:131::-;-1:-1:-1;;;;;;839:32:1;;829:43;;819:71;;886:1;883;876:12;901:245;959:6;1012:2;1000:9;991:7;987:23;983:32;980:52;;;1028:1;1025;1018:12;980:52;1067:9;1054:23;1086:30;1110:5;1086:30;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:328::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2358:29;2377:9;2358:29;:::i;:::-;2348:39;;2406:38;2440:2;2429:9;2425:18;2406:38;:::i;:::-;2396:48;;2491:2;2480:9;2476:18;2463:32;2453:42;;2173:328;;;;;:::o;2506:186::-;2565:6;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;2657:29;2676:9;2657:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;7636:413::-;7838:2;7820:21;;;7877:2;7857:18;;;7850:30;7916:34;7911:2;7896:18;;7889:62;-1:-1:-1;;;7982:2:1;7967:18;;7960:47;8039:3;8024:19;;7636:413::o;8875:127::-;8936:10;8931:3;8927:20;8924:1;8917:31;8967:4;8964:1;8957:15;8991:4;8988:1;8981:15;9007:127;9068:10;9063:3;9059:20;9056:1;9049:31;9099:4;9096:1;9089:15;9123:4;9120:1;9113:15;9139:120;9179:1;9205;9195:35;;9210:18;;:::i;:::-;-1:-1:-1;9244:9:1;;9139:120::o;10790:973::-;10875:12;;10840:3;;10930:1;10950:18;;;;11003;;;;11030:61;;11084:4;11076:6;11072:17;11062:27;;11030:61;11110:2;11158;11150:6;11147:14;11127:18;11124:38;11121:161;;;11204:10;11199:3;11195:20;11192:1;11185:31;11239:4;11236:1;11229:15;11267:4;11264:1;11257:15;11121:161;11298:18;11325:104;;;;11443:1;11438:319;;;;11291:466;;11325:104;-1:-1:-1;;11358:24:1;;11346:37;;11403:16;;;;-1:-1:-1;11325:104:1;;11438:319;10737:1;10730:14;;;10774:4;10761:18;;11532:1;11546:165;11560:6;11557:1;11554:13;11546:165;;;11638:14;;11625:11;;;11618:35;11681:16;;;;11575:10;;11546:165;;;11550:3;;11740:6;11735:3;11731:16;11724:23;;11291:466;;;;;;;10790:973;;;;:::o;11768:456::-;11989:3;12017:38;12051:3;12043:6;12017:38;:::i;:::-;12084:6;12078:13;12100:52;12145:6;12141:2;12134:4;12126:6;12122:17;12100:52;:::i;:::-;12168:50;12210:6;12206:2;12202:15;12194:6;12168:50;:::i;:::-;12161:57;11768:456;-1:-1:-1;;;;;;;11768:456:1:o;14214:125::-;14254:4;14282:1;14279;14276:8;14273:34;;;14287:18;;:::i;:::-;-1:-1:-1;14324:9:1;;14214:125::o;14344:128::-;14384:3;14415:1;14411:6;14408:1;14405:13;14402:39;;;14421:18;;:::i;:::-;-1:-1:-1;14457:9:1;;14344:128::o;16078:135::-;16117:3;-1:-1:-1;;16138:17:1;;16135:43;;;16158:18;;:::i;:::-;-1:-1:-1;16205:1:1;16194:13;;16078:135::o;16218:414::-;16420:2;16402:21;;;16459:2;16439:18;;;16432:30;16498:34;16493:2;16478:18;;16471:62;-1:-1:-1;;;16564:2:1;16549:18;;16542:48;16622:3;16607:19;;16218:414::o;16637:112::-;16669:1;16695;16685:35;;16700:18;;:::i;:::-;-1:-1:-1;16734:9:1;;16637:112::o;16754:127::-;16815:10;16810:3;16806:20;16803:1;16796:31;16846:4;16843:1;16836:15;16870:4;16867:1;16860:15;16886:168;16926:7;16992:1;16988;16984:6;16980:14;16977:1;16974:21;16969:1;16962:9;16955:17;16951:45;16948:71;;;16999:18;;:::i;:::-;-1:-1:-1;17039:9:1;;16886:168::o;17059:489::-;-1:-1:-1;;;;;17328:15:1;;;17310:34;;17380:15;;17375:2;17360:18;;17353:43;17427:2;17412:18;;17405:34;;;17475:3;17470:2;17455:18;;17448:31;;;17253:4;;17496:46;;17522:19;;17514:6;17496:46;:::i;:::-;17488:54;17059:489;-1:-1:-1;;;;;;17059:489:1:o;17553:249::-;17622:6;17675:2;17663:9;17654:7;17650:23;17646:32;17643:52;;;17691:1;17688;17681:12;17643:52;17723:9;17717:16;17742:30;17766:5;17742:30;:::i

Swarm Source

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