ETH Price: $3,067.49 (+1.38%)
Gas: 7 Gwei

Token

Future ApeDads (FUTDAD)
 

Overview

Max Total Supply

932 FUTDAD

Holders

422

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FUTDAD
0x9e8e45461b95f318d8fc87a1ae89256b82cee60c
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:
MutantApeDadsV2

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 12 : MutantApeDadsV2.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MutantApeDadsV2 is ERC721, Ownable {
    uint256 public _totalSupply;

    string public provenanceHash;
    string public baseURI;

    address public              proxyRegistryAddress;
    uint256 public              MAX_SUPPLY;
    address public              apeDadsContract;
    address public              apeDadsSerumContract;

    mapping(uint256 => bool) public mutantApeDadsClaimed; // holds apedads nft ids
    uint256[] private claimedIds;
    mapping(address => bool) public projectProxy;

    event MutantApeDadsClaimed(uint256 apeDadsId);

    constructor(
        string memory _baseURL,
        address _proxyRegistryAddress,
        address _apeDadsContract,
        address _apeDadsSerumContract
    ) ERC721("Future ApeDads", "FUTDAD")
    {
        baseURI = _baseURL;
        proxyRegistryAddress = _proxyRegistryAddress;
        apeDadsContract = _apeDadsContract;
        apeDadsSerumContract = _apeDadsSerumContract;
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function toggleProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function togglePublicSale(uint256 _MAX_SUPPLY) external onlyOwner {
        require(_MAX_SUPPLY <= 4000, "max 4000");
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function publicMint(uint256[] memory tokenIdsToCheck) public {
        require(tokenIdsToCheck.length < 30, "Max 30 mints at one transaction");
        uint256[] memory tokenIds = unclaimedMutantApeDads(_msgSender(), tokenIdsToCheck);
        uint256 count = tokenIds.length;

        require(count > 0, "You dont have any ApeDads to mutate");
        uint256 serumBalance = IApeDadsJuice(apeDadsSerumContract).balanceOf(_msgSender(), 0);
        require(serumBalance > 0, "You dont have any serum");

        require(_totalSupply + count <= MAX_SUPPLY, "Exceeds max supply.");

        uint256 countToMint = count >= serumBalance ? serumBalance : count;

        for (uint i; i < countToMint; i++) {
            mutantApeDadsClaimed[tokenIds[i]] = true;
            claimedIds.push(tokenIds[i]);
            emit MutantApeDadsClaimed(tokenIds[i]);
            _mint(_msgSender(), tokenIds[i]);
            _totalSupply++;
        }
        IApeDadsJuice(apeDadsSerumContract).burn(countToMint);
    }

    function adminMint(uint256[] memory tokenIdsToCheck, address[] memory minters) public onlyOwner {
        require(tokenIdsToCheck.length < 30, "Max 30 mints at one transaction");
        require(_totalSupply + tokenIdsToCheck.length <= 4000, "Exceeds max supply.");

        for (uint i; i < tokenIdsToCheck.length; i++) {
            mutantApeDadsClaimed[tokenIdsToCheck[i]] = true;
            claimedIds.push(tokenIdsToCheck[i]);
            emit MutantApeDadsClaimed(tokenIdsToCheck[i]);
            _mint(minters[i], tokenIdsToCheck[i]);
            _totalSupply++;
        }

    }

    function getClaimedIds() public view returns(uint256[] memory) {
        return claimedIds;
    }


    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function unclaimedMutantApeDads(address account, uint256[] memory tokenIdsToCheck) public view returns (uint256[] memory) {
        uint256 unclaimedCount = 0;
        uint256 latestIndex = 0;
        uint256 length = tokenIdsToCheck.length;
        uint256[] memory tokenIds = new uint256[](length);

        for (uint i; i < length; i++) {
            require(ERC721(apeDadsContract).ownerOf(tokenIdsToCheck[i]) == account, "Not your token");
            tokenIds[i] = tokenIdsToCheck[i];

            if (mutantApeDadsClaimed[tokenIdsToCheck[i]]) {
                continue;
            }

            unclaimedCount++;
        }

        uint256[] memory unclaimedMutantApeDadsOfUser = new uint256[](unclaimedCount);
        for (uint i; i < length; i++) {
            if (mutantApeDadsClaimed[tokenIds[i]]) {
                continue;
            }
            unclaimedMutantApeDadsOfUser[latestIndex] = tokenIds[i];
            latestIndex++;
        }

        return unclaimedMutantApeDadsOfUser;
    }

    function setProvenanceHash(string memory newProvenanceHash) public onlyOwner {
        provenanceHash = newProvenanceHash;
    }

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

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

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

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }
}

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

interface IApeDadsJuice {
    function burn(uint256 amount) external;
    function balanceOf(address account, uint256 id) external returns (uint256);
}

File 2 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURL","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_apeDadsContract","type":"address"},{"internalType":"address","name":"_apeDadsSerumContract","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":false,"internalType":"uint256","name":"apeDadsId","type":"uint256"}],"name":"MutantApeDadsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIdsToCheck","type":"uint256[]"},{"internalType":"address[]","name":"minters","type":"address[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"apeDadsContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apeDadsSerumContract","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimedIds","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":"","type":"uint256"}],"name":"mutantApeDadsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIdsToCheck","type":"uint256[]"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"toggleProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIdsToCheck","type":"uint256[]"}],"name":"unclaimedMutantApeDads","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e9a38038062002e9a833981016040819052620000349162000266565b604080518082018252600e81527f467574757265204170654461647300000000000000000000000000000000000060208083019182528351808501909452600684527f4655544441440000000000000000000000000000000000000000000000000000908401528151919291620000ae91600091620001a3565b508051620000c4906001906020840190620001a3565b505050620000f3620000e46200014d640100000000026401000000009004565b64010000000062000151810204565b835162000108906009906020870190620001a3565b50600a8054600160a060020a03948516600160a060020a031991821617909155600c805493851693821693909317909255600d80549190931691161790555062000402565b3390565b60068054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b1906200037d565b90600052602060002090601f016020900481019282620001d5576000855562000220565b82601f10620001f057805160ff191683800117855562000220565b8280016001018555821562000220579182015b828111156200022057825182559160200191906001019062000203565b506200022e92915062000232565b5090565b5b808211156200022e576000815560010162000233565b8051600160a060020a03811681146200026157600080fd5b919050565b600080600080608085870312156200027d57600080fd5b845167ffffffffffffffff808211156200029657600080fd5b818701915087601f830112620002ab57600080fd5b815181811115620002c057620002c0620003d3565b604051601f8201601f19908116603f01168101908382118183101715620002eb57620002eb620003d3565b81604052828152602093508a848487010111156200030857600080fd5b600091505b828210156200032c57848201840151818301850152908301906200030d565b828211156200033e5760008484830101525b97506200035091505087820162000249565b94505050620003626040860162000249565b9150620003726060860162000249565b905092959194509250565b6002810460018216806200039257607f821691505b60208210811415620003cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8880620004126000396000f3fe608060405234801561001057600080fd5b50600436106102205760003560e060020a900480636c0360eb11610129578063bdaf1b08116100b1578063cd7c032611610080578063cd7c032614610472578063d26ea6c014610485578063df6e26a414610498578063e985e9c5146104bb578063f2fde38b146104ce57600080fd5b8063bdaf1b081461043c578063c6ab67a31461044f578063c87b56dd14610457578063c9d70d401461046a57600080fd5b80638da5cb5b116100f85780638da5cb5b146103ea57806395d89b41146103fb578063a22cb46514610403578063b88d4fde14610416578063bbd2dc111461042957600080fd5b80636c0360eb146103b457806370a08231146103bc578063715018a6146103cf5780638cf7be7e146103d757600080fd5b806332cb6b0c116101ac57806342842e0e1161017b57806342842e0e1461034557806342966c681461035857806355f804b31461036b5780635bab26e21461037e5780636352211e146103a157600080fd5b806332cb6b0c1461030d57806333c199a214610316578063389c88a1146103295780633eaaf86b1461033c57600080fd5b806310969523116101f357806310969523146102a25780631566558d146102b557806318160ddd146102c857806322ecfba9146102da57806323b872dd146102fa57600080fd5b806301ffc9a71461022557806306fdde031461024d578063081812fc14610262578063095ea7b31461028d575b600080fd5b610238610233366004612600565b6104e1565b60405190151581526020015b60405180910390f35b61025561057e565b6040516102449190612790565b610275610270366004612683565b610610565b604051600160a060020a039091168152602001610244565b6102a061029b3660046124d7565b6106be565b005b6102a06102b036600461263a565b6107f6565b600c5461027590600160a060020a031681565b6007545b604051908152602001610244565b6102ed6102e8366004612454565b61083a565b604051610244919061274c565b6102a0610308366004612393565b610b1e565b6102cc600b5481565b600d5461027590600160a060020a031681565b6102a0610337366004612503565b610b53565b6102cc60075481565b6102a0610353366004612393565b610f2d565b6102a0610366366004612683565b610f48565b6102a061037936600461263a565b610fac565b61023861038c366004612320565b60106020526000908152604090205460ff1681565b6102756103af366004612683565b610fec565b61025561107a565b6102cc6103ca366004612320565b611108565b6102a06111a5565b6102a06103e5366004612683565b6111de565b600654600160a060020a0316610275565b610255611265565b6102a06104113660046124a4565b611274565b6102a06104243660046123d4565b61133c565b6102a0610437366004612320565b611377565b6102a061044a366004612538565b6113cd565b6102556115e1565b610255610465366004612683565b6115ee565b6102ed6116da565b600a5461027590600160a060020a031681565b6102a0610493366004612320565b611731565b6102386104a6366004612683565b600e6020526000908152604090205460ff1681565b6102386104c936600461235a565b61178d565b6102a06104dc366004612320565b611899565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105445750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061057857507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b60606000805461058d90612956565b80601f01602080910402602001604051908101604052809291908181526020018280546105b990612956565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106a25760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106c982610fec565b905080600160a060020a031683600160a060020a031614156107565760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610699565b33600160a060020a03821614806107725750610772813361178d565b6107e75760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610699565b6107f1838361194e565b505050565b600654600160a060020a031633146108235760405160e560020a62461bcd02815260040161069990612800565b80516108369060089060208401906121c0565b5050565b606060008060008451905060008167ffffffffffffffff81111561086057610860612a0e565b604051908082528060200260200182016040528015610889578160200160208202803683370190505b50905060005b82811015610a2a57600c548751600160a060020a03808b16921690636352211e908a90859081106108c2576108c26129f5565b60200260200101516040518263ffffffff1660e060020a0281526004016108eb91815260200190565b60206040518083038186803b15801561090357600080fd5b505afa158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b919061233d565b600160a060020a0316146109945760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420796f757220746f6b656e0000000000000000000000000000000000006044820152606401610699565b8681815181106109a6576109a66129f5565b60200260200101518282815181106109c0576109c06129f5565b602002602001018181525050600e60008883815181106109e2576109e26129f5565b60209081029190910181015182528101919091526040016000205460ff1615610a0a57610a18565b84610a1481612994565b9550505b80610a2281612994565b91505061088f565b5060008467ffffffffffffffff811115610a4657610a46612a0e565b604051908082528060200260200182016040528015610a6f578160200160208202803683370190505b50905060005b83811015610b1257600e6000848381518110610a9357610a936129f5565b60209081029190910181015182528101919091526040016000205460ff1615610abb57610b00565b828181518110610acd57610acd6129f5565b6020026020010151828681518110610ae757610ae76129f5565b602090810291909101015284610afc81612994565b9550505b80610b0a81612994565b915050610a75565b50979650505050505050565b610b29335b826119c9565b610b485760405160e560020a62461bcd02815260040161069990612835565b6107f1838383611aac565b601e815110610ba75760405160e560020a62461bcd02815260206004820152601f60248201527f4d6178203330206d696e7473206174206f6e65207472616e73616374696f6e006044820152606401610699565b6000610bb3338361083a565b805190915080610c2e5760405160e560020a62461bcd02815260206004820152602360248201527f596f7520646f6e74206861766520616e79204170654461647320746f206d757460448201527f61746500000000000000000000000000000000000000000000000000000000006064820152608401610699565b600d54600090600160a060020a031662fdd58e3360405160e060020a63ffffffff8416028152600160a060020a03909116600482015260006024820152604401602060405180830381600087803b158015610c8857600080fd5b505af1158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc0919061269c565b905060008111610d155760405160e560020a62461bcd02815260206004820152601760248201527f596f7520646f6e74206861766520616e7920736572756d0000000000000000006044820152606401610699565b600b5482600754610d2691906128e7565b1115610d775760405160e560020a62461bcd02815260206004820152601360248201527f45786365656473206d617820737570706c792e000000000000000000000000006044820152606401610699565b600081831015610d875782610d89565b815b905060005b81811015610eae576001600e6000878481518110610dae57610dae6129f5565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600f858281518110610def57610def6129f5565b6020908102919091018101518254600181018455600093845291909220015584517f846986d1eed1382419bc51a3eef87587b95ccec146959b0b5fcd10efe03cb5b990869083908110610e4457610e446129f5565b6020026020010151604051610e5b91815260200190565b60405180910390a1610e8633868381518110610e7957610e796129f5565b6020026020010151611c8c565b60078054906000610e9683612994565b91905055508080610ea690612994565b915050610d8e565b50600d546040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052600160a060020a03909116906342966c6890602401600060405180830381600087803b158015610f0e57600080fd5b505af1158015610f22573d6000803e3d6000fd5b505050505050505050565b6107f18383836040518060200160405280600081525061133c565b610f5133610b23565b610fa05760405160e560020a62461bcd02815260206004820152601560248201527f4e6f7420617070726f76656420746f206275726e2e00000000000000000000006044820152606401610699565b610fa981611de1565b50565b600654600160a060020a03163314610fd95760405160e560020a62461bcd02815260040161069990612800565b80516108369060099060208401906121c0565b600081815260026020526040812054600160a060020a0316806105785760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610699565b6009805461108790612956565b80601f01602080910402602001604051908101604052809291908181526020018280546110b390612956565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b6000600160a060020a0382166111895760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610699565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146111d25760405160e560020a62461bcd02815260040161069990612800565b6111dc6000611e89565b565b600654600160a060020a0316331461120b5760405160e560020a62461bcd02815260040161069990612800565b610fa08111156112605760405160e560020a62461bcd02815260206004820152600860248201527f6d617820343030300000000000000000000000000000000000000000000000006044820152606401610699565b600b55565b60606001805461058d90612956565b600160a060020a0382163314156112d05760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610699565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61134633836119c9565b6113655760405160e560020a62461bcd02815260040161069990612835565b61137184848484611ee8565b50505050565b600654600160a060020a031633146113a45760405160e560020a62461bcd02815260040161069990612800565b600160a060020a03166000908152601060205260409020805460ff19811660ff90911615179055565b600654600160a060020a031633146113fa5760405160e560020a62461bcd02815260040161069990612800565b601e82511061144e5760405160e560020a62461bcd02815260206004820152601f60248201527f4d6178203330206d696e7473206174206f6e65207472616e73616374696f6e006044820152606401610699565b610fa0825160075461146091906128e7565b11156114b15760405160e560020a62461bcd02815260206004820152601360248201527f45786365656473206d617820737570706c792e000000000000000000000000006044820152606401610699565b60005b82518110156107f1576001600e60008584815181106114d5576114d56129f5565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600f838281518110611516576115166129f5565b6020908102919091018101518254600181018455600093845291909220015582517f846986d1eed1382419bc51a3eef87587b95ccec146959b0b5fcd10efe03cb5b99084908390811061156b5761156b6129f5565b602002602001015160405161158291815260200190565b60405180910390a16115b982828151811061159f5761159f6129f5565b6020026020010151848381518110610e7957610e796129f5565b600780549060006115c983612994565b919050555080806115d990612994565b9150506114b4565b6008805461108790612956565b600081815260026020526040902054606090600160a060020a031661167e5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610699565b6000611688611f1e565b905060008151116116a857604051806020016040528060008152506116d3565b806116b284611f2d565b6040516020016116c39291906126e1565b6040516020818303038152906040525b9392505050565b6060600f80548060200260200160405190810160405280929190818152602001828054801561060657602002820191906000526020600020905b815481526020019060010190808311611714575050505050905090565b600654600160a060020a0316331461175e5760405160e560020a62461bcd02815260040161069990612800565b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600a546040517fc4552791000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156117f357600080fd5b505afa158015611807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182b919061233d565b600160a060020a031614806118585750600160a060020a03831660009081526010602052604090205460ff165b15611867576001915050610578565b600160a060020a0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600654600160a060020a031633146118c65760405160e560020a62461bcd02815260040161069990612800565b600160a060020a0381166119455760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610699565b610fa981611e89565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061199082610fec565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a0316611a565760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610699565b6000611a6183610fec565b905080600160a060020a031684600160a060020a03161480611a9c575083600160a060020a0316611a9184610610565b600160a060020a0316145b806118915750611891818561178d565b82600160a060020a0316611abf82610fec565b600160a060020a031614611b3e5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610699565b600160a060020a038216611bbc5760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610699565b611bc760008261194e565b600160a060020a0383166000908152600360205260408120805460019290611bf0908490612913565b9091555050600160a060020a0382166000908152600360205260408120805460019290611c1e9084906128e7565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600160a060020a038216611ce55760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610699565b600081815260026020526040902054600160a060020a031615611d4d5760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610699565b600160a060020a0382166000908152600360205260408120805460019290611d769084906128e7565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611dec82610fec565b9050611df960008361194e565b600160a060020a0381166000908152600360205260408120805460019290611e22908490612913565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916905551839190600160a060020a038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ef3848484611aac565b611eff8484848461207e565b6113715760405160e560020a62461bcd028152600401610699906127a3565b60606009805461058d90612956565b606081611f6d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f975780611f8181612994565b9150611f909050600a836128ff565b9150611f71565b60008167ffffffffffffffff811115611fb257611fb2612a0e565b6040519080825280601f01601f191660200182016040528015611fdc576020820181803683370190505b5090505b841561189157611ff1600183612913565b9150611ffe600a866129af565b6120099060306128e7565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061203d5761203d6129f5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612077600a866128ff565b9450611fe0565b6000600160a060020a0384163b156121b5576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a02906120db903390899088908890600401612710565b602060405180830381600087803b1580156120f557600080fd5b505af1925050508015612125575060408051601f3d908101601f191682019092526121229181019061261d565b60015b612182573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b50805161217a5760405160e560020a62461bcd028152600401610699906127a3565b805181602001fd5b600160e060020a0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611891565b506001949350505050565b8280546121cc90612956565b90600052602060002090601f0160209004810192826121ee5760008555612234565b82601f1061220757805160ff1916838001178555612234565b82800160010185558215612234579182015b82811115612234578251825591602001919060010190612219565b50612240929150612244565b5090565b5b808211156122405760008155600101612245565b600067ffffffffffffffff83111561227357612273612a0e565b612286601f8401601f1916602001612892565b905082815283838301111561229a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126122c257600080fd5b813560206122d76122d2836128c3565b612892565b82815281810190858301838502870184018810156122f457600080fd5b60005b85811015612313578135845292840192908401906001016122f7565b5090979650505050505050565b60006020828403121561233257600080fd5b81356116d381612a27565b60006020828403121561234f57600080fd5b81516116d381612a27565b6000806040838503121561236d57600080fd5b823561237881612a27565b9150602083013561238881612a27565b809150509250929050565b6000806000606084860312156123a857600080fd5b83356123b381612a27565b925060208401356123c381612a27565b929592945050506040919091013590565b600080600080608085870312156123ea57600080fd5b84356123f581612a27565b9350602085013561240581612a27565b925060408501359150606085013567ffffffffffffffff81111561242857600080fd5b8501601f8101871361243957600080fd5b61244887823560208401612259565b91505092959194509250565b6000806040838503121561246757600080fd5b823561247281612a27565b9150602083013567ffffffffffffffff81111561248e57600080fd5b61249a858286016122b1565b9150509250929050565b600080604083850312156124b757600080fd5b82356124c281612a27565b91506020830135801515811461238857600080fd5b600080604083850312156124ea57600080fd5b82356124f581612a27565b946020939093013593505050565b60006020828403121561251557600080fd5b813567ffffffffffffffff81111561252c57600080fd5b611891848285016122b1565b6000806040838503121561254b57600080fd5b823567ffffffffffffffff8082111561256357600080fd5b61256f868387016122b1565b935060209150818501358181111561258657600080fd5b85019050601f8101861361259957600080fd5b80356125a76122d2826128c3565b81815283810190838501858402850186018a10156125c457600080fd5b600094505b838510156125f05780356125dc81612a27565b8352600194909401939185019185016125c9565b5080955050505050509250929050565b60006020828403121561261257600080fd5b81356116d381612a3c565b60006020828403121561262f57600080fd5b81516116d381612a3c565b60006020828403121561264c57600080fd5b813567ffffffffffffffff81111561266357600080fd5b8201601f8101841361267457600080fd5b61189184823560208401612259565b60006020828403121561269557600080fd5b5035919050565b6000602082840312156126ae57600080fd5b5051919050565b600081518084526126cd81602086016020860161292a565b601f01601f19169290920160200192915050565b600083516126f381846020880161292a565b83519083019061270781836020880161292a565b01949350505050565b6000600160a060020a0380871683528086166020840152508360408301526080606083015261274260808301846126b5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561278457835183529284019291840191600101612768565b50909695505050505050565b6020815260006116d360208301846126b5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128bb576128bb612a0e565b604052919050565b600067ffffffffffffffff8211156128dd576128dd612a0e565b5060209081020190565b600082198211156128fa576128fa6129c3565b500190565b60008261290e5761290e6129dc565b500490565b600082821015612925576129256129c3565b500390565b60005b8381101561294557818101518382015260200161292d565b838111156113715750506000910152565b60028104600182168061296a57607f821691505b6020821081141561298e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b60006000198214156129a8576129a86129c3565b5060010190565b6000826129be576129be6129dc565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a0381168114610fa957600080fd5b600160e060020a031981168114610fa957600080fdfea2646970667358221220da4aa5de61ba884bc95965832f05c3b7a4088832b6321257cc7b0ef6353fee0064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000006468f4243faa8c3330baaa0a7a138e2e5628c6f500000000000000000000000053fa4d1a7d9fc25f2af65c7e1774ceaf0e7dfddc000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692d6d7574616e742e617065646164732e636f6d2f6d75746174696f6e2f6e66742f0000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102205760003560e060020a900480636c0360eb11610129578063bdaf1b08116100b1578063cd7c032611610080578063cd7c032614610472578063d26ea6c014610485578063df6e26a414610498578063e985e9c5146104bb578063f2fde38b146104ce57600080fd5b8063bdaf1b081461043c578063c6ab67a31461044f578063c87b56dd14610457578063c9d70d401461046a57600080fd5b80638da5cb5b116100f85780638da5cb5b146103ea57806395d89b41146103fb578063a22cb46514610403578063b88d4fde14610416578063bbd2dc111461042957600080fd5b80636c0360eb146103b457806370a08231146103bc578063715018a6146103cf5780638cf7be7e146103d757600080fd5b806332cb6b0c116101ac57806342842e0e1161017b57806342842e0e1461034557806342966c681461035857806355f804b31461036b5780635bab26e21461037e5780636352211e146103a157600080fd5b806332cb6b0c1461030d57806333c199a214610316578063389c88a1146103295780633eaaf86b1461033c57600080fd5b806310969523116101f357806310969523146102a25780631566558d146102b557806318160ddd146102c857806322ecfba9146102da57806323b872dd146102fa57600080fd5b806301ffc9a71461022557806306fdde031461024d578063081812fc14610262578063095ea7b31461028d575b600080fd5b610238610233366004612600565b6104e1565b60405190151581526020015b60405180910390f35b61025561057e565b6040516102449190612790565b610275610270366004612683565b610610565b604051600160a060020a039091168152602001610244565b6102a061029b3660046124d7565b6106be565b005b6102a06102b036600461263a565b6107f6565b600c5461027590600160a060020a031681565b6007545b604051908152602001610244565b6102ed6102e8366004612454565b61083a565b604051610244919061274c565b6102a0610308366004612393565b610b1e565b6102cc600b5481565b600d5461027590600160a060020a031681565b6102a0610337366004612503565b610b53565b6102cc60075481565b6102a0610353366004612393565b610f2d565b6102a0610366366004612683565b610f48565b6102a061037936600461263a565b610fac565b61023861038c366004612320565b60106020526000908152604090205460ff1681565b6102756103af366004612683565b610fec565b61025561107a565b6102cc6103ca366004612320565b611108565b6102a06111a5565b6102a06103e5366004612683565b6111de565b600654600160a060020a0316610275565b610255611265565b6102a06104113660046124a4565b611274565b6102a06104243660046123d4565b61133c565b6102a0610437366004612320565b611377565b6102a061044a366004612538565b6113cd565b6102556115e1565b610255610465366004612683565b6115ee565b6102ed6116da565b600a5461027590600160a060020a031681565b6102a0610493366004612320565b611731565b6102386104a6366004612683565b600e6020526000908152604090205460ff1681565b6102386104c936600461235a565b61178d565b6102a06104dc366004612320565b611899565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105445750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061057857507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b60606000805461058d90612956565b80601f01602080910402602001604051908101604052809291908181526020018280546105b990612956565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106a25760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106c982610fec565b905080600160a060020a031683600160a060020a031614156107565760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610699565b33600160a060020a03821614806107725750610772813361178d565b6107e75760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610699565b6107f1838361194e565b505050565b600654600160a060020a031633146108235760405160e560020a62461bcd02815260040161069990612800565b80516108369060089060208401906121c0565b5050565b606060008060008451905060008167ffffffffffffffff81111561086057610860612a0e565b604051908082528060200260200182016040528015610889578160200160208202803683370190505b50905060005b82811015610a2a57600c548751600160a060020a03808b16921690636352211e908a90859081106108c2576108c26129f5565b60200260200101516040518263ffffffff1660e060020a0281526004016108eb91815260200190565b60206040518083038186803b15801561090357600080fd5b505afa158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b919061233d565b600160a060020a0316146109945760405160e560020a62461bcd02815260206004820152600e60248201527f4e6f7420796f757220746f6b656e0000000000000000000000000000000000006044820152606401610699565b8681815181106109a6576109a66129f5565b60200260200101518282815181106109c0576109c06129f5565b602002602001018181525050600e60008883815181106109e2576109e26129f5565b60209081029190910181015182528101919091526040016000205460ff1615610a0a57610a18565b84610a1481612994565b9550505b80610a2281612994565b91505061088f565b5060008467ffffffffffffffff811115610a4657610a46612a0e565b604051908082528060200260200182016040528015610a6f578160200160208202803683370190505b50905060005b83811015610b1257600e6000848381518110610a9357610a936129f5565b60209081029190910181015182528101919091526040016000205460ff1615610abb57610b00565b828181518110610acd57610acd6129f5565b6020026020010151828681518110610ae757610ae76129f5565b602090810291909101015284610afc81612994565b9550505b80610b0a81612994565b915050610a75565b50979650505050505050565b610b29335b826119c9565b610b485760405160e560020a62461bcd02815260040161069990612835565b6107f1838383611aac565b601e815110610ba75760405160e560020a62461bcd02815260206004820152601f60248201527f4d6178203330206d696e7473206174206f6e65207472616e73616374696f6e006044820152606401610699565b6000610bb3338361083a565b805190915080610c2e5760405160e560020a62461bcd02815260206004820152602360248201527f596f7520646f6e74206861766520616e79204170654461647320746f206d757460448201527f61746500000000000000000000000000000000000000000000000000000000006064820152608401610699565b600d54600090600160a060020a031662fdd58e3360405160e060020a63ffffffff8416028152600160a060020a03909116600482015260006024820152604401602060405180830381600087803b158015610c8857600080fd5b505af1158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc0919061269c565b905060008111610d155760405160e560020a62461bcd02815260206004820152601760248201527f596f7520646f6e74206861766520616e7920736572756d0000000000000000006044820152606401610699565b600b5482600754610d2691906128e7565b1115610d775760405160e560020a62461bcd02815260206004820152601360248201527f45786365656473206d617820737570706c792e000000000000000000000000006044820152606401610699565b600081831015610d875782610d89565b815b905060005b81811015610eae576001600e6000878481518110610dae57610dae6129f5565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600f858281518110610def57610def6129f5565b6020908102919091018101518254600181018455600093845291909220015584517f846986d1eed1382419bc51a3eef87587b95ccec146959b0b5fcd10efe03cb5b990869083908110610e4457610e446129f5565b6020026020010151604051610e5b91815260200190565b60405180910390a1610e8633868381518110610e7957610e796129f5565b6020026020010151611c8c565b60078054906000610e9683612994565b91905055508080610ea690612994565b915050610d8e565b50600d546040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052600160a060020a03909116906342966c6890602401600060405180830381600087803b158015610f0e57600080fd5b505af1158015610f22573d6000803e3d6000fd5b505050505050505050565b6107f18383836040518060200160405280600081525061133c565b610f5133610b23565b610fa05760405160e560020a62461bcd02815260206004820152601560248201527f4e6f7420617070726f76656420746f206275726e2e00000000000000000000006044820152606401610699565b610fa981611de1565b50565b600654600160a060020a03163314610fd95760405160e560020a62461bcd02815260040161069990612800565b80516108369060099060208401906121c0565b600081815260026020526040812054600160a060020a0316806105785760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610699565b6009805461108790612956565b80601f01602080910402602001604051908101604052809291908181526020018280546110b390612956565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b6000600160a060020a0382166111895760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610699565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146111d25760405160e560020a62461bcd02815260040161069990612800565b6111dc6000611e89565b565b600654600160a060020a0316331461120b5760405160e560020a62461bcd02815260040161069990612800565b610fa08111156112605760405160e560020a62461bcd02815260206004820152600860248201527f6d617820343030300000000000000000000000000000000000000000000000006044820152606401610699565b600b55565b60606001805461058d90612956565b600160a060020a0382163314156112d05760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610699565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61134633836119c9565b6113655760405160e560020a62461bcd02815260040161069990612835565b61137184848484611ee8565b50505050565b600654600160a060020a031633146113a45760405160e560020a62461bcd02815260040161069990612800565b600160a060020a03166000908152601060205260409020805460ff19811660ff90911615179055565b600654600160a060020a031633146113fa5760405160e560020a62461bcd02815260040161069990612800565b601e82511061144e5760405160e560020a62461bcd02815260206004820152601f60248201527f4d6178203330206d696e7473206174206f6e65207472616e73616374696f6e006044820152606401610699565b610fa0825160075461146091906128e7565b11156114b15760405160e560020a62461bcd02815260206004820152601360248201527f45786365656473206d617820737570706c792e000000000000000000000000006044820152606401610699565b60005b82518110156107f1576001600e60008584815181106114d5576114d56129f5565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600f838281518110611516576115166129f5565b6020908102919091018101518254600181018455600093845291909220015582517f846986d1eed1382419bc51a3eef87587b95ccec146959b0b5fcd10efe03cb5b99084908390811061156b5761156b6129f5565b602002602001015160405161158291815260200190565b60405180910390a16115b982828151811061159f5761159f6129f5565b6020026020010151848381518110610e7957610e796129f5565b600780549060006115c983612994565b919050555080806115d990612994565b9150506114b4565b6008805461108790612956565b600081815260026020526040902054606090600160a060020a031661167e5760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610699565b6000611688611f1e565b905060008151116116a857604051806020016040528060008152506116d3565b806116b284611f2d565b6040516020016116c39291906126e1565b6040516020818303038152906040525b9392505050565b6060600f80548060200260200160405190810160405280929190818152602001828054801561060657602002820191906000526020600020905b815481526020019060010190808311611714575050505050905090565b600654600160a060020a0316331461175e5760405160e560020a62461bcd02815260040161069990612800565b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600a546040517fc4552791000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156117f357600080fd5b505afa158015611807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182b919061233d565b600160a060020a031614806118585750600160a060020a03831660009081526010602052604090205460ff165b15611867576001915050610578565b600160a060020a0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600654600160a060020a031633146118c65760405160e560020a62461bcd02815260040161069990612800565b600160a060020a0381166119455760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610699565b610fa981611e89565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061199082610fec565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a0316611a565760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610699565b6000611a6183610fec565b905080600160a060020a031684600160a060020a03161480611a9c575083600160a060020a0316611a9184610610565b600160a060020a0316145b806118915750611891818561178d565b82600160a060020a0316611abf82610fec565b600160a060020a031614611b3e5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610699565b600160a060020a038216611bbc5760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610699565b611bc760008261194e565b600160a060020a0383166000908152600360205260408120805460019290611bf0908490612913565b9091555050600160a060020a0382166000908152600360205260408120805460019290611c1e9084906128e7565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600160a060020a038216611ce55760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610699565b600081815260026020526040902054600160a060020a031615611d4d5760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610699565b600160a060020a0382166000908152600360205260408120805460019290611d769084906128e7565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611dec82610fec565b9050611df960008361194e565b600160a060020a0381166000908152600360205260408120805460019290611e22908490612913565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916905551839190600160a060020a038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ef3848484611aac565b611eff8484848461207e565b6113715760405160e560020a62461bcd028152600401610699906127a3565b60606009805461058d90612956565b606081611f6d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f975780611f8181612994565b9150611f909050600a836128ff565b9150611f71565b60008167ffffffffffffffff811115611fb257611fb2612a0e565b6040519080825280601f01601f191660200182016040528015611fdc576020820181803683370190505b5090505b841561189157611ff1600183612913565b9150611ffe600a866129af565b6120099060306128e7565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061203d5761203d6129f5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612077600a866128ff565b9450611fe0565b6000600160a060020a0384163b156121b5576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a02906120db903390899088908890600401612710565b602060405180830381600087803b1580156120f557600080fd5b505af1925050508015612125575060408051601f3d908101601f191682019092526121229181019061261d565b60015b612182573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b50805161217a5760405160e560020a62461bcd028152600401610699906127a3565b805181602001fd5b600160e060020a0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611891565b506001949350505050565b8280546121cc90612956565b90600052602060002090601f0160209004810192826121ee5760008555612234565b82601f1061220757805160ff1916838001178555612234565b82800160010185558215612234579182015b82811115612234578251825591602001919060010190612219565b50612240929150612244565b5090565b5b808211156122405760008155600101612245565b600067ffffffffffffffff83111561227357612273612a0e565b612286601f8401601f1916602001612892565b905082815283838301111561229a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126122c257600080fd5b813560206122d76122d2836128c3565b612892565b82815281810190858301838502870184018810156122f457600080fd5b60005b85811015612313578135845292840192908401906001016122f7565b5090979650505050505050565b60006020828403121561233257600080fd5b81356116d381612a27565b60006020828403121561234f57600080fd5b81516116d381612a27565b6000806040838503121561236d57600080fd5b823561237881612a27565b9150602083013561238881612a27565b809150509250929050565b6000806000606084860312156123a857600080fd5b83356123b381612a27565b925060208401356123c381612a27565b929592945050506040919091013590565b600080600080608085870312156123ea57600080fd5b84356123f581612a27565b9350602085013561240581612a27565b925060408501359150606085013567ffffffffffffffff81111561242857600080fd5b8501601f8101871361243957600080fd5b61244887823560208401612259565b91505092959194509250565b6000806040838503121561246757600080fd5b823561247281612a27565b9150602083013567ffffffffffffffff81111561248e57600080fd5b61249a858286016122b1565b9150509250929050565b600080604083850312156124b757600080fd5b82356124c281612a27565b91506020830135801515811461238857600080fd5b600080604083850312156124ea57600080fd5b82356124f581612a27565b946020939093013593505050565b60006020828403121561251557600080fd5b813567ffffffffffffffff81111561252c57600080fd5b611891848285016122b1565b6000806040838503121561254b57600080fd5b823567ffffffffffffffff8082111561256357600080fd5b61256f868387016122b1565b935060209150818501358181111561258657600080fd5b85019050601f8101861361259957600080fd5b80356125a76122d2826128c3565b81815283810190838501858402850186018a10156125c457600080fd5b600094505b838510156125f05780356125dc81612a27565b8352600194909401939185019185016125c9565b5080955050505050509250929050565b60006020828403121561261257600080fd5b81356116d381612a3c565b60006020828403121561262f57600080fd5b81516116d381612a3c565b60006020828403121561264c57600080fd5b813567ffffffffffffffff81111561266357600080fd5b8201601f8101841361267457600080fd5b61189184823560208401612259565b60006020828403121561269557600080fd5b5035919050565b6000602082840312156126ae57600080fd5b5051919050565b600081518084526126cd81602086016020860161292a565b601f01601f19169290920160200192915050565b600083516126f381846020880161292a565b83519083019061270781836020880161292a565b01949350505050565b6000600160a060020a0380871683528086166020840152508360408301526080606083015261274260808301846126b5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561278457835183529284019291840191600101612768565b50909695505050505050565b6020815260006116d360208301846126b5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128bb576128bb612a0e565b604052919050565b600067ffffffffffffffff8211156128dd576128dd612a0e565b5060209081020190565b600082198211156128fa576128fa6129c3565b500190565b60008261290e5761290e6129dc565b500490565b600082821015612925576129256129c3565b500390565b60005b8381101561294557818101518382015260200161292d565b838111156113715750506000910152565b60028104600182168061296a57607f821691505b6020821081141561298e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b60006000198214156129a8576129a86129c3565b5060010190565b6000826129be576129be6129dc565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a0381168114610fa957600080fd5b600160e060020a031981168114610fa957600080fdfea2646970667358221220da4aa5de61ba884bc95965832f05c3b7a4088832b6321257cc7b0ef6353fee0064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000006468f4243faa8c3330baaa0a7a138e2e5628c6f500000000000000000000000053fa4d1a7d9fc25f2af65c7e1774ceaf0e7dfddc000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692d6d7574616e742e617065646164732e636f6d2f6d75746174696f6e2f6e66742f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURL (string): https://api-mutant.apedads.com/mutation/nft/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [2] : _apeDadsContract (address): 0x6468f4243Faa8C3330bAAa0a7a138E2e5628C6f5
Arg [3] : _apeDadsSerumContract (address): 0x53Fa4D1a7D9FC25f2AF65c7E1774CeAF0e7dFDdC

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000006468f4243faa8c3330baaa0a7a138e2e5628c6f5
Arg [3] : 00000000000000000000000053fa4d1a7d9fc25f2af65c7e1774ceaf0e7dfddc
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [5] : 68747470733a2f2f6170692d6d7574616e742e617065646164732e636f6d2f6d
Arg [6] : 75746174696f6e2f6e66742f0000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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