Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 342 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 16945362 | 588 days ago | IN | 0 ETH | 0.00087402 | ||||
Transfer From | 16945358 | 588 days ago | IN | 0 ETH | 0.00099344 | ||||
Transfer From | 16945353 | 588 days ago | IN | 0 ETH | 0.00095886 | ||||
Transfer From | 16945349 | 588 days ago | IN | 0 ETH | 0.0009707 | ||||
Transfer From | 16945344 | 588 days ago | IN | 0 ETH | 0.00091341 | ||||
Transfer From | 16945340 | 588 days ago | IN | 0 ETH | 0.00137624 | ||||
Set Approval For... | 16586235 | 638 days ago | IN | 0 ETH | 0.00164956 | ||||
Set Approval For... | 16394129 | 665 days ago | IN | 0 ETH | 0.00086571 | ||||
Mint | 16012440 | 718 days ago | IN | 0 ETH | 0.00173592 | ||||
Set Approval For... | 15851210 | 741 days ago | IN | 0 ETH | 0.00022906 | ||||
Set Approval For... | 15844526 | 742 days ago | IN | 0 ETH | 0.00045751 | ||||
Transfer From | 15778819 | 751 days ago | IN | 0 ETH | 0.00096201 | ||||
Mint | 15719679 | 759 days ago | IN | 0 ETH | 0.00168354 | ||||
Set Approval For... | 15551219 | 783 days ago | IN | 0 ETH | 0.00018754 | ||||
Safe Transfer Fr... | 15462194 | 797 days ago | IN | 0 ETH | 0.00186772 | ||||
Set Approval For... | 15458633 | 797 days ago | IN | 0 ETH | 0.00032523 | ||||
Set Approval For... | 15346904 | 815 days ago | IN | 0 ETH | 0.00087434 | ||||
Set Approval For... | 15335848 | 817 days ago | IN | 0 ETH | 0.00072496 | ||||
Transfer From | 15311158 | 821 days ago | IN | 0 ETH | 0.00075742 | ||||
Set Approval For... | 15291107 | 824 days ago | IN | 0 ETH | 0.00025234 | ||||
Set Approval For... | 15288259 | 824 days ago | IN | 0 ETH | 0.00036979 | ||||
Set Approval For... | 15275241 | 826 days ago | IN | 0 ETH | 0.00062099 | ||||
Set Approval For... | 15242163 | 832 days ago | IN | 0 ETH | 0.00029218 | ||||
Set Approval For... | 15206481 | 837 days ago | IN | 0 ETH | 0.00029502 | ||||
Set Approval For... | 15206309 | 837 days ago | IN | 0 ETH | 0.0005494 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PixelApe
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Tradable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract IApe { function balanceOf(address _address) public view returns(uint256){} } contract PixelApe is ERC721Tradable { bool public salePublicIsActive; uint256 public maxPublicSupply; address public daoAddress; string internal baseTokenURI; mapping(address => uint256) public pixelApesClaimed; using Counters for Counters.Counter; Counters.Counter public totalPublicSupply; IApe public Ape; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721Tradable(_name, _symbol, _proxyRegistryAddress) { salePublicIsActive = true; maxPublicSupply = 3333; daoAddress = 0x050F30bd067ac136B471Ed7CB7e7BE05cA11d779; baseTokenURI = "https://radioactiveapes.io/api/meta/2/"; Ape = IApe(0x5A817E0dB5712ABabD75C6037Bf5C83D87c79d19); } function contractURI() public pure returns (string memory) { return "https://radioactiveapes.io/api/contract/2"; } function mint(uint256 numberOfTokens) public payable { require(salePublicIsActive, "Sale not active"); require(canClaim(_msgSender()) && numberOfTokens <= Ape.balanceOf(_msgSender()) , "Cannot claim"); require(totalPublicSupply.current() + numberOfTokens <= maxPublicSupply, "Max supply reached"); _mintN(_msgSender(), numberOfTokens); pixelApesClaimed[_msgSender()] = numberOfTokens; } function _mintN(address _to, uint256 numberOfTokens) private { for (uint256 i=0; i<numberOfTokens; i++) { totalPublicSupply.increment(); _safeMint(_to, totalPublicSupply.current()); } } function canClaim(address _address) public view returns(bool) { return pixelApesClaimed[_address] == 0; } function mintReserved(address _to, uint256 numberOfTokens) external onlyOwner { _mintN(_to, numberOfTokens); } function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId))); } function flipSalePublicStatus() external onlyOwner { salePublicIsActive = !salePublicIsActive; } function setDaoAddress(address _daoAddress) external onlyOwner { daoAddress = _daoAddress; } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function withdraw() external onlyOwner { uint balance = address(this).balance; require(balance > 0); _withdraw(daoAddress, balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Tx failed"); } function setApe(address _address) external onlyOwner { Ape = IApe(_address); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./common/meta-transactions/ContentMixin.sol"; import "./common/meta-transactions/NativeMetaTransaction.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable */ abstract contract ERC721Tradable is ERC721, ContextMixin, NativeMetaTransaction, Ownable { address public proxyRegistryAddress; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } }
// 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// 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 {} }
// 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { SafeMathUpgradeable as SafeMath } from "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } }
// 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; }
// 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); }
// 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); }
// 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); } } } }
// 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; } }
// 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); } }
// 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; } }
// 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMathUpgradeable { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","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":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Ape","outputs":[{"internalType":"contract IApe","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"daoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipSalePublicStatus","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":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pixelApesClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePublicIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setApe","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoAddress","type":"address"}],"name":"setDaoAddress","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"_value","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003243380380620032438339810160408190526200003491620004e4565b82828282828160009080519060200190620000519291906200038b565b508051620000679060019060208401906200038b565b505050620000846200007e6200014c60201b60201c565b62000169565b600a80546001600160a01b0319166001600160a01b038316179055620000aa83620001bb565b5050600a805460ff60a01b1916600160a01b17905550610d05600b55600c80546001600160a01b03191673050f30bd067ac136b471ed7cb7e7be05ca11d779179055604080516060810190915260268082526200321d602083013980516200011b91600d916020909101906200038b565b5050601080546001600160a01b031916735a817e0db5712ababd75c6037bf5c83d87c79d1917905550620005c09050565b6000620001636200028b60201b620018dc1760201c565b90505b90565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654610100900460ff1680620001d5575060065460ff16155b6200023d5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600654610100900460ff1615801562000269576006805460ff1961ff0019909116610100171660011790555b6200027482620002e9565b801562000287576006805461ff00191690555b5050565b600033301415620002e457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620001669050565b503390565b6040518060800160405280604f8152602001620031ce604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b82805462000399906200056d565b90600052602060002090601f016020900481019282620003bd576000855562000408565b82601f10620003d857805160ff191683800117855562000408565b8280016001018555821562000408579182015b8281111562000408578251825591602001919060010190620003eb565b50620004169291506200041a565b5090565b5b808211156200041657600081556001016200041b565b600082601f83011262000442578081fd5b81516001600160401b03808211156200045f576200045f620005aa565b604051601f8301601f19908116603f011681019082821181831017156200048a576200048a620005aa565b81604052838152602092508683858801011115620004a6578485fd5b8491505b83821015620004c95785820183015181830184015290820190620004aa565b83821115620004da57848385830101525b9695505050505050565b600080600060608486031215620004f9578283fd5b83516001600160401b038082111562000510578485fd5b6200051e8783880162000431565b9450602086015191508082111562000534578384fd5b50620005438682870162000431565b604086015190935090506001600160a01b038116811462000562578182fd5b809150509250925092565b6002810460018216806200058257607f821691505b60208210811415620005a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bfe80620005d06000396000f3fe6080604052600436106102855760003560e01c80637de55fe111610153578063c87b56dd116100cb578063e6a5931e1161007f578063e985e9c511610064578063e985e9c51461070f578063f2fde38b1461072f578063fa05bb1e1461074f57610285565b8063e6a5931e146106e3578063e8a3d485146106fa57610285565b8063d26ea6c0116100b0578063d26ea6c01461068e578063d42dbcfd146106ae578063e6019716146106ce57610285565b8063c87b56dd1461064e578063cd7c03261461066e57610285565b8063a0712d6811610122578063b6c65d3811610107578063b6c65d38146105d6578063b88d4fde146105f7578063bf3506c11461061757610285565b8063a0712d68146105a3578063a22cb465146105b657610285565b80637de55fe1146105305780638da5cb5b1461055057806395d89b411461056e5780639a3cac6a1461058357610285565b806323b872dd116102015780633ccfd60b116101b55780636352211e1161019a5780636352211e146104db57806370a08231146104fb578063715018a61461051b57610285565b80633ccfd60b146104a657806342842e0e146104bb57610285565b80632d0335ab116101e65780632d0335ab1461043d57806330176e13146104735780633408e4701461049357610285565b806323b872dd1461040757806326a74d8e1461042757610285565b80630c53c51c11610258578063110139ce1161023d578063110139ce1461039757806320379ee5146103d25780632131c68c146103e757610285565b80630c53c51c1461033b5780630f7e59701461034e57610285565b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612790565b61076f565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461080e565b6040516102b69190612a03565b3480156102ed57600080fd5b506103016102fc36600461282a565b6108a1565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612765565b61093b565b005b6102d46103493660046126ea565b610a7f565b34801561035a57600080fd5b506102d46040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b3480156103a357600080fd5b506103c46103b23660046125bb565b600e6020526000908152604090205481565b6040519081526020016102b6565b3480156103de57600080fd5b506007546103c4565b3480156103f357600080fd5b50600c54610301906001600160a01b031681565b34801561041357600080fd5b5061033961042236600461260f565b610c85565b34801561043357600080fd5b506103c4600b5481565b34801561044957600080fd5b506103c46104583660046125bb565b6001600160a01b031660009081526008602052604090205490565b34801561047f57600080fd5b5061033961048e3660046127e4565b610d13565b34801561049f57600080fd5b50466103c4565b3480156104b257600080fd5b50610339610da3565b3480156104c757600080fd5b506103396104d636600461260f565b610e40565b3480156104e757600080fd5b506103016104f636600461282a565b610e5b565b34801561050757600080fd5b506103c46105163660046125bb565b610ee6565b34801561052757600080fd5b50610339610f80565b34801561053c57600080fd5b5061033961054b366004612765565b611005565b34801561055c57600080fd5b506009546001600160a01b0316610301565b34801561057a57600080fd5b506102d4611088565b34801561058f57600080fd5b5061033961059e3660046125bb565b611097565b6103396105b136600461282a565b611132565b3480156105c257600080fd5b506103396105d13660046126b9565b61131d565b3480156105e257600080fd5b50600a546102aa90600160a01b900460ff1681565b34801561060357600080fd5b5061033961061236600461264f565b61141f565b34801561062357600080fd5b506102aa6106323660046125bb565b6001600160a01b03166000908152600e60205260409020541590565b34801561065a57600080fd5b506102d461066936600461282a565b6114b4565b34801561067a57600080fd5b50600a54610301906001600160a01b031681565b34801561069a57600080fd5b506103396106a93660046125bb565b6114e8565b3480156106ba57600080fd5b506103396106c93660046125bb565b611583565b3480156106da57600080fd5b5061033961161e565b3480156106ef57600080fd5b50600f546103c49081565b34801561070657600080fd5b506102d46116d3565b34801561071b57600080fd5b506102aa61072a3660046125d7565b6116f3565b34801561073b57600080fd5b5061033961074a3660046125bb565b6117de565b34801561075b57600080fd5b50601054610301906001600160a01b031681565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061080657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b90505b919050565b60606000805461081d90612a85565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612a85565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b031661091f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094682610e5b565b9050806001600160a01b0316836001600160a01b031614156109d05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610916565b806001600160a01b03166109e2611938565b6001600160a01b031614806109fe57506109fe8161072a611938565b610a705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610916565b610a7a8383611947565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610abd87828787876119b5565b610b2f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610916565b6001600160a01b038716600090815260086020526040902054610b53906001611abd565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ba390899033908a9061299b565b60405180910390a1600080306001600160a01b0316888a604051602001610bcb9291906128be565b60408051601f1981840301815290829052610be5916128a2565b6000604051808303816000865af19150503d8060008114610c22576040519150601f19603f3d011682016040523d82523d6000602084013e610c27565b606091505b509150915081610c795760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610916565b98975050505050505050565b610c96610c90611938565b82611ad0565b610d085760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610916565b610a7a838383611b9f565b610d1b611938565b6001600160a01b0316610d366009546001600160a01b031690565b6001600160a01b031614610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b8051610d9f90600d90602084019061248d565b5050565b610dab611938565b6001600160a01b0316610dc66009546001600160a01b031690565b6001600160a01b031614610e1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b4780610e2757600080fd5b600c54610e3d906001600160a01b031682611d6c565b50565b610a7a8383836040518060200160405280600081525061141f565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610916565b60006001600160a01b038216610f645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610916565b506001600160a01b031660009081526003602052604090205490565b610f88611938565b6001600160a01b0316610fa36009546001600160a01b031690565b6001600160a01b031614610ff95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b6110036000611e0f565b565b61100d611938565b6001600160a01b03166110286009546001600160a01b031690565b6001600160a01b03161461107e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b610d9f8282611e61565b60606001805461081d90612a85565b61109f611938565b6001600160a01b03166110ba6009546001600160a01b031690565b6001600160a01b0316146111105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a54600160a01b900460ff1661118b5760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610916565b611196610632611938565b801561123157506010546001600160a01b03166370a082316111b6611938565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156111f557600080fd5b505afa158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190612842565b8111155b61127d5760405162461bcd60e51b815260206004820152600c60248201527f43616e6e6f7420636c61696d00000000000000000000000000000000000000006044820152606401610916565b600b548161128a600f5490565b6112949190612a16565b11156112e25760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610916565b6112f36112ed611938565b82611e61565b80600e6000611300611938565b6001600160a01b0316815260208101919091526040016000205550565b611325611938565b6001600160a01b0316826001600160a01b031614156113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610916565b8060056000611393611938565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113d7611938565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611413911515815260200190565b60405180910390a35050565b61143061142a611938565b83611ad0565b6114a25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610916565b6114ae84848484611e9e565b50505050565b6060600d6114c183611f1c565b6040516020016114d29291906128f5565b6040516020818303038152906040529050919050565b6114f0611938565b6001600160a01b031661150b6009546001600160a01b031690565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61158b611938565b6001600160a01b03166115a66009546001600160a01b031690565b6001600160a01b0316146115fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b611626611938565b6001600160a01b03166116416009546001600160a01b031690565b6001600160a01b0316146116975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6060604051806060016040528060298152602001612ba060299139905090565b600a546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561175957600080fd5b505afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179191906127c8565b6001600160a01b031614156117aa5760019150506117d8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b9150505b92915050565b6117e6611938565b6001600160a01b03166118016009546001600160a01b031690565b6001600160a01b0316146118575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610916565b610e3d81611e0f565b60003330141561193357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061089e9050565b503390565b60006119426118dc565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197c82610e5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611a335760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610916565b6001611a46611a4187612073565b6120f0565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611a94573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611ac98284612a16565b9392505050565b6000818152600260205260408120546001600160a01b0316611b495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610916565b6000611b5483610e5b565b9050806001600160a01b0316846001600160a01b03161480611b8f5750836001600160a01b0316611b84846108a1565b6001600160a01b0316145b806117d457506117d481856116f3565b826001600160a01b0316611bb282610e5b565b6001600160a01b031614611c2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610916565b6001600160a01b038216611ca95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610916565b611cb4600082611947565b6001600160a01b0383166000908152600360205260408120805460019290611cdd908490612a42565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d0b908490612a16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5050905080610a7a5760405162461bcd60e51b815260206004820152600960248201527f5478206661696c656400000000000000000000000000000000000000000000006044820152606401610916565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7a57611e7a600f80546001019055565b611e8c83611e87600f5490565b61213b565b80611e9681612ac0565b915050611e64565b611ea9848484611b9f565b611eb584848484612155565b6114ae5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b606081611f5d575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610809565b8160005b8115611f875780611f7181612ac0565b9150611f809050600a83612a2e565b9150611f61565b60008167ffffffffffffffff811115611fb057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fda576020820181803683370190505b5090505b841561206b57611fef600183612a42565b9150611ffc600a86612adb565b612007906030612a16565b60f81b81838151811061202a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612064600a86612a2e565b9450611fde565b949350505050565b6000604051806080016040528060438152602001612b5d60439139805160209182012083518483015160408087015180519086012090516120d3950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006120fb60075490565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810191909152604281018390526062016120d3565b610d9f8282604051806020016040528060008152506122cd565b60006001600160a01b0384163b156122c257836001600160a01b031663150b7a0261217e611938565b8786866040518563ffffffff1660e01b81526004016121a094939291906129c7565b602060405180830381600087803b1580156121ba57600080fd5b505af19250505080156121ea575060408051601f3d908101601f191682019092526121e7918101906127ac565b60015b61228f573d808015612218576040519150601f19603f3d011682016040523d82523d6000602084013e61221d565b606091505b5080516122875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061206b565b506001949350505050565b6122d7838361234b565b6122e46000848484612155565b610a7a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b6001600160a01b0382166123a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610916565b6000818152600260205260409020546001600160a01b0316156124065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610916565b6001600160a01b038216600090815260036020526040812080546001929061242f908490612a16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249990612a85565b90600052602060002090601f0160209004810192826124bb5760008555612501565b82601f106124d457805160ff1916838001178555612501565b82800160010185558215612501579182015b828111156125015782518255916020019190600101906124e6565b5061250d929150612511565b5090565b5b8082111561250d5760008155600101612512565b600067ffffffffffffffff8084111561254157612541612b1b565b604051601f8501601f19908116603f0116810190828211818310171561256957612569612b1b565b8160405280935085815286868601111561258257600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126125ac578081fd5b611ac983833560208501612526565b6000602082840312156125cc578081fd5b8135611ac981612b31565b600080604083850312156125e9578081fd5b82356125f481612b31565b9150602083013561260481612b31565b809150509250929050565b600080600060608486031215612623578081fd5b833561262e81612b31565b9250602084013561263e81612b31565b929592945050506040919091013590565b60008060008060808587031215612664578081fd5b843561266f81612b31565b9350602085013561267f81612b31565b925060408501359150606085013567ffffffffffffffff8111156126a1578182fd5b6126ad8782880161259c565b91505092959194509250565b600080604083850312156126cb578182fd5b82356126d681612b31565b915060208301358015158114612604578182fd5b600080600080600060a08688031215612701578081fd5b853561270c81612b31565b9450602086013567ffffffffffffffff811115612727578182fd5b6127338882890161259c565b9450506040860135925060608601359150608086013560ff81168114612757578182fd5b809150509295509295909350565b60008060408385031215612777578182fd5b823561278281612b31565b946020939093013593505050565b6000602082840312156127a1578081fd5b8135611ac981612b46565b6000602082840312156127bd578081fd5b8151611ac981612b46565b6000602082840312156127d9578081fd5b8151611ac981612b31565b6000602082840312156127f5578081fd5b813567ffffffffffffffff81111561280b578182fd5b8201601f8101841361281b578182fd5b6117d484823560208401612526565b60006020828403121561283b578081fd5b5035919050565b600060208284031215612853578081fd5b5051919050565b60008151808452612872816020860160208601612a59565b601f01601f19169290920160200192915050565b60008151612898818560208601612a59565b9290920192915050565b600082516128b4818460208701612a59565b9190910192915050565b600083516128d0818460208801612a59565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b825460009081906002810460018083168061291157607f831692505b602080841082141561293157634e487b7160e01b87526022600452602487fd5b818015612945576001811461295657612982565b60ff19861689528489019650612982565b60008b815260209020885b8681101561297a5781548b820152908501908301612961565b505084890196505b5050505050506129928185612886565b95945050505050565b60006001600160a01b03808616835280851660208401525060606040830152612992606083018461285a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129f9608083018461285a565b9695505050505050565b600060208252611ac9602083018461285a565b60008219821115612a2957612a29612aef565b500190565b600082612a3d57612a3d612b05565b500490565b600082821015612a5457612a54612aef565b500390565b60005b83811015612a74578181015183820152602001612a5c565b838111156114ae5750506000910152565b600281046001821680612a9957607f821691505b60208210811415612aba57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ad457612ad4612aef565b5060010190565b600082612aea57612aea612b05565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e3d57600080fd5b6001600160e01b031981168114610e3d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f726164696f616374697665617065732e696f2f6170692f636f6e74726163742f32a2646970667358221220eeba741e3b5012acf8236c87c1c17d5518d3e973a31513889fbf3c6ff932eb8964736f6c63430008020033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f726164696f616374697665617065732e696f2f6170692f6d6574612f322f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000015506978656c20526164696f616374697665204170650000000000000000000000000000000000000000000000000000000000000000000000000000000000000b504958454c207278415045000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102855760003560e01c80637de55fe111610153578063c87b56dd116100cb578063e6a5931e1161007f578063e985e9c511610064578063e985e9c51461070f578063f2fde38b1461072f578063fa05bb1e1461074f57610285565b8063e6a5931e146106e3578063e8a3d485146106fa57610285565b8063d26ea6c0116100b0578063d26ea6c01461068e578063d42dbcfd146106ae578063e6019716146106ce57610285565b8063c87b56dd1461064e578063cd7c03261461066e57610285565b8063a0712d6811610122578063b6c65d3811610107578063b6c65d38146105d6578063b88d4fde146105f7578063bf3506c11461061757610285565b8063a0712d68146105a3578063a22cb465146105b657610285565b80637de55fe1146105305780638da5cb5b1461055057806395d89b411461056e5780639a3cac6a1461058357610285565b806323b872dd116102015780633ccfd60b116101b55780636352211e1161019a5780636352211e146104db57806370a08231146104fb578063715018a61461051b57610285565b80633ccfd60b146104a657806342842e0e146104bb57610285565b80632d0335ab116101e65780632d0335ab1461043d57806330176e13146104735780633408e4701461049357610285565b806323b872dd1461040757806326a74d8e1461042757610285565b80630c53c51c11610258578063110139ce1161023d578063110139ce1461039757806320379ee5146103d25780632131c68c146103e757610285565b80630c53c51c1461033b5780630f7e59701461034e57610285565b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612790565b61076f565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461080e565b6040516102b69190612a03565b3480156102ed57600080fd5b506103016102fc36600461282a565b6108a1565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612765565b61093b565b005b6102d46103493660046126ea565b610a7f565b34801561035a57600080fd5b506102d46040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b3480156103a357600080fd5b506103c46103b23660046125bb565b600e6020526000908152604090205481565b6040519081526020016102b6565b3480156103de57600080fd5b506007546103c4565b3480156103f357600080fd5b50600c54610301906001600160a01b031681565b34801561041357600080fd5b5061033961042236600461260f565b610c85565b34801561043357600080fd5b506103c4600b5481565b34801561044957600080fd5b506103c46104583660046125bb565b6001600160a01b031660009081526008602052604090205490565b34801561047f57600080fd5b5061033961048e3660046127e4565b610d13565b34801561049f57600080fd5b50466103c4565b3480156104b257600080fd5b50610339610da3565b3480156104c757600080fd5b506103396104d636600461260f565b610e40565b3480156104e757600080fd5b506103016104f636600461282a565b610e5b565b34801561050757600080fd5b506103c46105163660046125bb565b610ee6565b34801561052757600080fd5b50610339610f80565b34801561053c57600080fd5b5061033961054b366004612765565b611005565b34801561055c57600080fd5b506009546001600160a01b0316610301565b34801561057a57600080fd5b506102d4611088565b34801561058f57600080fd5b5061033961059e3660046125bb565b611097565b6103396105b136600461282a565b611132565b3480156105c257600080fd5b506103396105d13660046126b9565b61131d565b3480156105e257600080fd5b50600a546102aa90600160a01b900460ff1681565b34801561060357600080fd5b5061033961061236600461264f565b61141f565b34801561062357600080fd5b506102aa6106323660046125bb565b6001600160a01b03166000908152600e60205260409020541590565b34801561065a57600080fd5b506102d461066936600461282a565b6114b4565b34801561067a57600080fd5b50600a54610301906001600160a01b031681565b34801561069a57600080fd5b506103396106a93660046125bb565b6114e8565b3480156106ba57600080fd5b506103396106c93660046125bb565b611583565b3480156106da57600080fd5b5061033961161e565b3480156106ef57600080fd5b50600f546103c49081565b34801561070657600080fd5b506102d46116d3565b34801561071b57600080fd5b506102aa61072a3660046125d7565b6116f3565b34801561073b57600080fd5b5061033961074a3660046125bb565b6117de565b34801561075b57600080fd5b50601054610301906001600160a01b031681565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061080657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b90505b919050565b60606000805461081d90612a85565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612a85565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b031661091f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094682610e5b565b9050806001600160a01b0316836001600160a01b031614156109d05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610916565b806001600160a01b03166109e2611938565b6001600160a01b031614806109fe57506109fe8161072a611938565b610a705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610916565b610a7a8383611947565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610abd87828787876119b5565b610b2f5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610916565b6001600160a01b038716600090815260086020526040902054610b53906001611abd565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ba390899033908a9061299b565b60405180910390a1600080306001600160a01b0316888a604051602001610bcb9291906128be565b60408051601f1981840301815290829052610be5916128a2565b6000604051808303816000865af19150503d8060008114610c22576040519150601f19603f3d011682016040523d82523d6000602084013e610c27565b606091505b509150915081610c795760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610916565b98975050505050505050565b610c96610c90611938565b82611ad0565b610d085760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610916565b610a7a838383611b9f565b610d1b611938565b6001600160a01b0316610d366009546001600160a01b031690565b6001600160a01b031614610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b8051610d9f90600d90602084019061248d565b5050565b610dab611938565b6001600160a01b0316610dc66009546001600160a01b031690565b6001600160a01b031614610e1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b4780610e2757600080fd5b600c54610e3d906001600160a01b031682611d6c565b50565b610a7a8383836040518060200160405280600081525061141f565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610916565b60006001600160a01b038216610f645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610916565b506001600160a01b031660009081526003602052604090205490565b610f88611938565b6001600160a01b0316610fa36009546001600160a01b031690565b6001600160a01b031614610ff95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b6110036000611e0f565b565b61100d611938565b6001600160a01b03166110286009546001600160a01b031690565b6001600160a01b03161461107e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b610d9f8282611e61565b60606001805461081d90612a85565b61109f611938565b6001600160a01b03166110ba6009546001600160a01b031690565b6001600160a01b0316146111105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a54600160a01b900460ff1661118b5760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610916565b611196610632611938565b801561123157506010546001600160a01b03166370a082316111b6611938565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156111f557600080fd5b505afa158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190612842565b8111155b61127d5760405162461bcd60e51b815260206004820152600c60248201527f43616e6e6f7420636c61696d00000000000000000000000000000000000000006044820152606401610916565b600b548161128a600f5490565b6112949190612a16565b11156112e25760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610916565b6112f36112ed611938565b82611e61565b80600e6000611300611938565b6001600160a01b0316815260208101919091526040016000205550565b611325611938565b6001600160a01b0316826001600160a01b031614156113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610916565b8060056000611393611938565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556113d7611938565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611413911515815260200190565b60405180910390a35050565b61143061142a611938565b83611ad0565b6114a25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610916565b6114ae84848484611e9e565b50505050565b6060600d6114c183611f1c565b6040516020016114d29291906128f5565b6040516020818303038152906040529050919050565b6114f0611938565b6001600160a01b031661150b6009546001600160a01b031690565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61158b611938565b6001600160a01b03166115a66009546001600160a01b031690565b6001600160a01b0316146115fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b611626611938565b6001600160a01b03166116416009546001600160a01b031690565b6001600160a01b0316146116975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6060604051806060016040528060298152602001612ba060299139905090565b600a546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561175957600080fd5b505afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179191906127c8565b6001600160a01b031614156117aa5760019150506117d8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b9150505b92915050565b6117e6611938565b6001600160a01b03166118016009546001600160a01b031690565b6001600160a01b0316146118575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610916565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610916565b610e3d81611e0f565b60003330141561193357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061089e9050565b503390565b60006119426118dc565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197c82610e5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611a335760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610916565b6001611a46611a4187612073565b6120f0565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611a94573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611ac98284612a16565b9392505050565b6000818152600260205260408120546001600160a01b0316611b495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610916565b6000611b5483610e5b565b9050806001600160a01b0316846001600160a01b03161480611b8f5750836001600160a01b0316611b84846108a1565b6001600160a01b0316145b806117d457506117d481856116f3565b826001600160a01b0316611bb282610e5b565b6001600160a01b031614611c2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610916565b6001600160a01b038216611ca95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610916565b611cb4600082611947565b6001600160a01b0383166000908152600360205260408120805460019290611cdd908490612a42565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d0b908490612a16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5050905080610a7a5760405162461bcd60e51b815260206004820152600960248201527f5478206661696c656400000000000000000000000000000000000000000000006044820152606401610916565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7a57611e7a600f80546001019055565b611e8c83611e87600f5490565b61213b565b80611e9681612ac0565b915050611e64565b611ea9848484611b9f565b611eb584848484612155565b6114ae5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b606081611f5d575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610809565b8160005b8115611f875780611f7181612ac0565b9150611f809050600a83612a2e565b9150611f61565b60008167ffffffffffffffff811115611fb057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fda576020820181803683370190505b5090505b841561206b57611fef600183612a42565b9150611ffc600a86612adb565b612007906030612a16565b60f81b81838151811061202a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612064600a86612a2e565b9450611fde565b949350505050565b6000604051806080016040528060438152602001612b5d60439139805160209182012083518483015160408087015180519086012090516120d3950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006120fb60075490565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810191909152604281018390526062016120d3565b610d9f8282604051806020016040528060008152506122cd565b60006001600160a01b0384163b156122c257836001600160a01b031663150b7a0261217e611938565b8786866040518563ffffffff1660e01b81526004016121a094939291906129c7565b602060405180830381600087803b1580156121ba57600080fd5b505af19250505080156121ea575060408051601f3d908101601f191682019092526121e7918101906127ac565b60015b61228f573d808015612218576040519150601f19603f3d011682016040523d82523d6000602084013e61221d565b606091505b5080516122875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061206b565b506001949350505050565b6122d7838361234b565b6122e46000848484612155565b610a7a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610916565b6001600160a01b0382166123a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610916565b6000818152600260205260409020546001600160a01b0316156124065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610916565b6001600160a01b038216600090815260036020526040812080546001929061242f908490612a16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249990612a85565b90600052602060002090601f0160209004810192826124bb5760008555612501565b82601f106124d457805160ff1916838001178555612501565b82800160010185558215612501579182015b828111156125015782518255916020019190600101906124e6565b5061250d929150612511565b5090565b5b8082111561250d5760008155600101612512565b600067ffffffffffffffff8084111561254157612541612b1b565b604051601f8501601f19908116603f0116810190828211818310171561256957612569612b1b565b8160405280935085815286868601111561258257600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126125ac578081fd5b611ac983833560208501612526565b6000602082840312156125cc578081fd5b8135611ac981612b31565b600080604083850312156125e9578081fd5b82356125f481612b31565b9150602083013561260481612b31565b809150509250929050565b600080600060608486031215612623578081fd5b833561262e81612b31565b9250602084013561263e81612b31565b929592945050506040919091013590565b60008060008060808587031215612664578081fd5b843561266f81612b31565b9350602085013561267f81612b31565b925060408501359150606085013567ffffffffffffffff8111156126a1578182fd5b6126ad8782880161259c565b91505092959194509250565b600080604083850312156126cb578182fd5b82356126d681612b31565b915060208301358015158114612604578182fd5b600080600080600060a08688031215612701578081fd5b853561270c81612b31565b9450602086013567ffffffffffffffff811115612727578182fd5b6127338882890161259c565b9450506040860135925060608601359150608086013560ff81168114612757578182fd5b809150509295509295909350565b60008060408385031215612777578182fd5b823561278281612b31565b946020939093013593505050565b6000602082840312156127a1578081fd5b8135611ac981612b46565b6000602082840312156127bd578081fd5b8151611ac981612b46565b6000602082840312156127d9578081fd5b8151611ac981612b31565b6000602082840312156127f5578081fd5b813567ffffffffffffffff81111561280b578182fd5b8201601f8101841361281b578182fd5b6117d484823560208401612526565b60006020828403121561283b578081fd5b5035919050565b600060208284031215612853578081fd5b5051919050565b60008151808452612872816020860160208601612a59565b601f01601f19169290920160200192915050565b60008151612898818560208601612a59565b9290920192915050565b600082516128b4818460208701612a59565b9190910192915050565b600083516128d0818460208801612a59565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b825460009081906002810460018083168061291157607f831692505b602080841082141561293157634e487b7160e01b87526022600452602487fd5b818015612945576001811461295657612982565b60ff19861689528489019650612982565b60008b815260209020885b8681101561297a5781548b820152908501908301612961565b505084890196505b5050505050506129928185612886565b95945050505050565b60006001600160a01b03808616835280851660208401525060606040830152612992606083018461285a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129f9608083018461285a565b9695505050505050565b600060208252611ac9602083018461285a565b60008219821115612a2957612a29612aef565b500190565b600082612a3d57612a3d612b05565b500490565b600082821015612a5457612a54612aef565b500390565b60005b83811015612a74578181015183820152602001612a5c565b838111156114ae5750506000910152565b600281046001821680612a9957607f821691505b60208210811415612aba57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ad457612ad4612aef565b5060010190565b600082612aea57612aea612b05565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e3d57600080fd5b6001600160e01b031981168114610e3d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f726164696f616374697665617065732e696f2f6170692f636f6e74726163742f32a2646970667358221220eeba741e3b5012acf8236c87c1c17d5518d3e973a31513889fbf3c6ff932eb8964736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000015506978656c20526164696f616374697665204170650000000000000000000000000000000000000000000000000000000000000000000000000000000000000b504958454c207278415045000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Pixel Radioactive Ape
Arg [1] : _symbol (string): PIXEL rxAPE
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 506978656c20526164696f616374697665204170650000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 504958454c207278415045000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.