Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multi Chain
Multichain Addresses
1 address found via
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16492660 | 246 days 18 hrs ago | IN | 0 ETH | 0.00069549 | ||||
Set Approval For... | 15977432 | 318 days 17 hrs ago | IN | 0 ETH | 0.00129857 | ||||
Set Approval For... | 13411144 | 716 days 19 hrs ago | IN | 0 ETH | 0.00593482 | ||||
Mint | 13410069 | 717 days 1 min ago | IN | 0 ETH | 0.02339542 | ||||
Mint | 13409977 | 717 days 24 mins ago | IN | 0 ETH | 0.0197559 | ||||
Mint | 13409758 | 717 days 1 hr ago | IN | 0 ETH | 0.02178704 | ||||
0x60806040 | 13409532 | 717 days 2 hrs ago | IN | Create: RoeEthridge | 0 ETH | 0.19325896 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RoeEthridge
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "../royalties/Royalties.sol"; contract RoeEthridge is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Ownable, Royalties { // OpenSea metadata freeze event PermanentURI(string _value, uint256 indexed _id); using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; Counters.Counter private _editionCounter; string private _baseURIextended; uint256 private _MAX_singles = 1000000; constructor( string memory baseURI, string memory contractName, string memory tokenSymbol ) ERC721(contractName, tokenSymbol) { _baseURIextended = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseURIextended; } /* * @dev hard limit of _MAX_singles single tokens */ function mint( address to, string memory _tokenURI, address payable receiver, uint256 basisPoints ) public onlyOwner { require(basisPoints < 10000, "Total royalties exceeds 100%"); uint256 tokenId = getNextTokenId(); require( tokenId < _MAX_singles, "Maximum number of single tokens exceeded" ); _mintSingle(to, tokenId, _tokenURI, receiver, basisPoints); _tokenIdCounter.increment(); } function mintEditions( address to, string memory _tokenURI, uint256 count, address payable receiver, uint256 basisPoints ) public onlyOwner { require(basisPoints < 10000, "Total royalties exceeds 100%"); require(count < 101, "Max of 100 tokens per edition"); require(count > 1, "Must be more than 1 token per edition"); uint256 tokenId = getNextEditionId(); _mintEditions(to, tokenId, count, _tokenURI, receiver, basisPoints); _editionCounter.increment(); } function getNextTokenId() public view returns (uint256) { return _tokenIdCounter.current() + 1; } function getNextEditionId() public view returns (uint256) { return ((_editionCounter.current() + 1) * _MAX_singles) + 1; } function _mintEditions( address to, uint256 tokenId, uint256 count, string memory _tokenURI, address payable receiver, uint256 basisPoints ) internal { for (uint256 i = 0; i < count; i++) { _mintSingle(to, tokenId + i, _tokenURI, receiver, basisPoints); } } function _mintSingle( address to, uint256 tokenId, string memory _tokenURI, address payable receiver, uint256 basisPoints ) internal { _safeMint(to, tokenId); _setTokenURI(tokenId, _tokenURI); if (basisPoints > 0) { _setRoyalties(tokenId, receiver, basisPoints); } emit PermanentURI(tokenURI(tokenId), tokenId); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function _existsRoyalties(uint256 tokenId) internal view virtual override(Royalties) returns (bool) { return super._exists(tokenId); } function _getRoyaltyFallback() internal view override returns (address payable) { return payable(owner()); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId) || _supportsRoyaltyInterfaces(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; abstract contract Royalties { mapping(uint256 => address payable) internal _tokenRoyaltyReceiver; mapping(uint256 => uint256) internal _tokenRoyaltyBPS; function _existsRoyalties(uint256 tokenId) internal view virtual returns (bool); /** * @dev Rarible: RoyaltiesV1 * * bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb * bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f * * => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584 */ bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584; /** * @dev Foundation * * bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c * * => 0xd5a06d4c = 0xd5a06d4c */ bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c; /** * @dev EIP-2981 * * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * * => 0x2a55205a = 0x2a55205a */ bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; function _setRoyalties( uint256 tokenId, address payable receiver, uint256 basisPoints ) internal { require(basisPoints > 0); _tokenRoyaltyReceiver[tokenId] = receiver; _tokenRoyaltyBPS[tokenId] = basisPoints; } /** * @dev 3rd party Marketplace Royalty Support */ /** * @dev IFoundation */ function getFees(uint256 tokenId) external view virtual returns (address payable[] memory, uint256[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); address payable[] memory receivers = new address payable[](1); uint256[] memory bps = new uint256[](1); receivers[0] = _getReceiver(tokenId); bps[0] = _getBps(tokenId); return (receivers, bps); } /** * @dev IRaribleV1 */ function getFeeRecipients(uint256 tokenId) external view virtual returns (address payable[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); address payable[] memory receivers = new address payable[](1); receivers[0] = _getReceiver(tokenId); return receivers; } function getFeeBps(uint256 tokenId) external view virtual returns (uint256[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); uint256[] memory bps = new uint256[](1); bps[0] = _getBps(tokenId); return bps; } /** * @dev EIP-2981 * Returns primary receiver i.e. receivers[0] */ function royaltyInfo(uint256 tokenId, uint256 value) external view virtual returns (address, uint256) { require(_existsRoyalties(tokenId), "Nonexistent token"); return _getRoyaltyInfo(tokenId, value); } function _getRoyaltyInfo(uint256 tokenId, uint256 value) internal view returns (address receiver, uint256 amount) { address _receiver = _getReceiver(tokenId); return (_receiver, (_tokenRoyaltyBPS[tokenId] * value) / 10000); } function _getBps(uint256 tokenId) internal view returns (uint256) { return _tokenRoyaltyBPS[tokenId]; } function _getReceiver(uint256 tokenId) internal view returns (address payable) { uint256 bps = _getBps(tokenId); address payable receiver = _tokenRoyaltyReceiver[tokenId]; if (bps == 0 || receiver == address(0)) { /** * @dev: If bps is 0 the receiver was never set * Fall back to this contract so badly behaved * marketplaces have somewhere to send money to */ return (_getRoyaltyFallback()); } return receiver; } function _getRoyaltyFallback() internal view virtual returns (address payable); function _supportsRoyaltyInterfaces(bytes4 interfaceId) public pure returns (bool) { return interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE || interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981; } }
// 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/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; /** * @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; /** * @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; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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; /** * @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; } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"_supportsRoyaltyInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextEditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mintEditions","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620f42406011553480156200001857600080fd5b5060405162002bb538038062002bb58339810160408190526200003b916200026f565b81518290829062000054906000906020850190620000fc565b5080516200006a906001906020840190620000fc565b5050506200008762000081620000a660201b60201c565b620000aa565b82516200009c906010906020860190620000fc565b505050506200033d565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010a9062000300565b90600052602060002090601f0160209004810192826200012e576000855562000179565b82601f106200014957805160ff191683800117855562000179565b8280016001018555821562000179579182015b82811115620001795782518255916020019190600101906200015c565b50620001879291506200018b565b5090565b5b808211156200018757600081556001016200018c565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ca57600080fd5b81516001600160401b0380821115620001e757620001e7620001a2565b604051601f8301601f19908116603f01168101908282118183101715620002125762000212620001a2565b816040528381526020925086838588010111156200022f57600080fd5b600091505b8382101562000253578582018301518183018401529082019062000234565b83821115620002655760008385830101525b9695505050505050565b6000806000606084860312156200028557600080fd5b83516001600160401b03808211156200029d57600080fd5b620002ab87838801620001b8565b94506020860151915080821115620002c257600080fd5b620002d087838801620001b8565b93506040860151915080821115620002e757600080fd5b50620002f686828701620001b8565b9150509250925092565b600181811c908216806200031557607f821691505b602082108114156200033757634e487b7160e01b600052602260045260246000fd5b50919050565b612868806200034d6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063b88d4fde116100a2578063d5a06d4c11610071578063d5a06d4c146103ea578063da14cbbc1461040b578063e985e9c51461041e578063f2fde38b1461045a57600080fd5b8063b88d4fde1461039c578063b9c4d9fb146103af578063c87b56dd146103cf578063caa0f92a146103e257600080fd5b80638da5cb5b116100de5780638da5cb5b1461036857806395d89b4114610379578063a22cb46514610381578063a66b7ec91461039457600080fd5b80636352211e1461033a57806370a082311461034d578063715018a61461036057600080fd5b8063221dc1e9116101715780632f745c591161014b5780632f745c59146102ee57806342842e0e1461030157806342966c68146103145780634f6ccce71461032757600080fd5b8063221dc1e91461029657806323b872dd146102a95780632a55205a146102bc57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630ebd4c7f14610251578063152fcb2e1461027157806318160ddd1461028457600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120e2565b61046d565b60405190151581526020015b60405180910390f35b61020461048d565b6040516101f39190612157565b61022461021f36600461216a565b61051f565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004612198565b6105ac565b005b61026461025f36600461216a565b6106c2565b6040516101f391906121ff565b6101e761027f3660046120e2565b61073f565b6008545b6040519081526020016101f3565b61024f6102a43660046122be565b610790565b61024f6102b7366004612332565b6108e9565b6102cf6102ca366004612373565b61091b565b604080516001600160a01b0390931683526020830191909152016101f3565b6102886102fc366004612198565b610958565b61024f61030f366004612332565b6109ee565b61024f61032236600461216a565b610a09565b61028861033536600461216a565b610a83565b61022461034836600461216a565b610b16565b61028861035b366004612395565b610b8d565b61024f610c14565b600b546001600160a01b0316610224565b610204610c4a565b61024f61038f3660046123b2565b610c59565b610288610d1e565b61024f6103aa3660046123f0565b610d51565b6103c26103bd36600461216a565b610d89565b6040516101f391906124a9565b6102046103dd36600461216a565b610e0c565b610288610e17565b6103fd6103f836600461216a565b610e22565b6040516101f39291906124bc565b61024f6104193660046124ea565b610ef9565b6101e761042c366004612554565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f610468366004612395565b611004565b60006104788261109c565b8061048757506104878261073f565b92915050565b60606000805461049c90612582565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612582565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826110c1565b6105905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b782610b16565b9050806001600160a01b0316836001600160a01b031614156106255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610587565b336001600160a01b03821614806106415750610641813361042c565b6106b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610587565b6106bd83836110de565b505050565b60606106cd8261114c565b6106e95760405162461bcd60e51b8152600401610587906125bd565b60408051600180825281830190925260009160208083019080368337019050506000848152600d60205260409020549091508160008151811061072e5761072e6125e8565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061077057506001600160e01b031982166335681b5360e21b145b8061048757506001600160e01b0319821663152a902d60e11b1492915050565b600b546001600160a01b031633146107ba5760405162461bcd60e51b8152600401610587906125fe565b612710811061080b5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6065831061085b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206f662031303020746f6b656e73207065722065646974696f6e0000006044820152606401610587565b600183116108b95760405162461bcd60e51b815260206004820152602560248201527f4d757374206265206d6f7265207468616e203120746f6b656e2070657220656460448201526434ba34b7b760d91b6064820152608401610587565b60006108c3610d1e565b90506108d3868286888787611157565b6108e1600f80546001019055565b505050505050565b6108f4335b82611193565b6109105760405162461bcd60e51b815260040161058790612633565b6106bd83838361127d565b6000806109278461114c565b6109435760405162461bcd60e51b8152600401610587906125bd565b61094d8484611428565b915091509250929050565b600061096383610b8d565b82106109c55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610587565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106bd83838360405180602001604052806000815250610d51565b610a12336108ee565b610a775760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610587565b610a808161146f565b50565b6000610a8e60085490565b8210610af15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610587565b60088281548110610b0457610b046125e8565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610587565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610587565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610587906125fe565b610c486000611478565b565b60606001805461049c90612582565b6001600160a01b038216331415610cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610587565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000601154610d2c600f5490565b610d3790600161269a565b610d4191906126b2565b610d4c90600161269a565b905090565b610d5b3383611193565b610d775760405162461bcd60e51b815260040161058790612633565b610d83848484846114ca565b50505050565b6060610d948261114c565b610db05760405162461bcd60e51b8152600401610587906125bd565b60408051600180825281830190925260009160208083019080368337019050509050610ddb836114fd565b81600081518110610dee57610dee6125e8565b6001600160a01b039092166020928302919091019091015292915050565b606061048782611548565b6000610d41600e5490565b606080610e2e8361114c565b610e4a5760405162461bcd60e51b8152600401610587906125bd565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610e98856114fd565b82600081518110610eab57610eab6125e8565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610ee457610ee46125e8565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610f235760405162461bcd60e51b8152600401610587906125fe565b6127108110610f745760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6000610f7e610e17565b90506011548110610fe25760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d206e756d626572206f662073696e676c6520746f6b656e7320604482015267195e18d95959195960c21b6064820152608401610587565b610fef85828686866116aa565b610ffd600e80546001019055565b5050505050565b600b546001600160a01b0316331461102e5760405162461bcd60e51b8152600401610587906125fe565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610a8081611478565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611716565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061111382610b16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610487826110c1565b60005b8481101561118a5761117887611170838961269a565b8686866116aa565b80611182816126d1565b91505061115a565b50505050505050565b600061119e826110c1565b6111ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610587565b600061120a83610b16565b9050806001600160a01b0316846001600160a01b031614806112455750836001600160a01b031661123a8461051f565b6001600160a01b0316145b8061127557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129082610b16565b6001600160a01b0316146112f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610587565b6001600160a01b03821661135a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b611365838383611766565b6113706000826110de565b6001600160a01b03831660009081526003602052604081208054600192906113999084906126ec565b90915550506001600160a01b03821660009081526003602052604081208054600192906113c790849061269a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806000611436856114fd565b6000868152600d60205260409020549091508190612710906114599087906126b2565b6114639190612719565b92509250509250929050565b610a8081611771565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d584848461127d565b6114e1848484846117b1565b610d835760405162461bcd60e51b81526004016105879061272d565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061153457506001600160a01b038116155b15611541576112756118be565b9392505050565b6060611553826110c1565b6115b95760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610587565b6000828152600a6020526040812080546115d290612582565b80601f01602080910402602001604051908101604052809291908181526020018280546115fe90612582565b801561164b5780601f106116205761010080835404028352916020019161164b565b820191906000526020600020905b81548152906001019060200180831161162e57829003601f168201915b50505050509050600061165c6118d2565b905080516000141561166f575092915050565b8151156116a157808260405160200161168992919061277f565b60405160208183030381529060405292505050919050565b611275846118e1565b6116b485856119ab565b6116be84846119c9565b80156116cf576116cf848383611a54565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076116fa86610e0c565b6040516117079190612157565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061174757506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b6106bd838383611a9a565b61177a81611b52565b6000818152600a60205260409020805461179390612582565b159050610a80576000818152600a60205260408120610a8091611ff9565b60006001600160a01b0384163b156118b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f59033908990889088906004016127ae565b602060405180830381600087803b15801561180f57600080fd5b505af192505050801561183f575060408051601f3d908101601f1916820190925261183c918101906127eb565b60015b611899573d80801561186d576040519150601f19603f3d011682016040523d82523d6000602084013e611872565b606091505b5080516118915760405162461bcd60e51b81526004016105879061272d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611275565b506001949350505050565b6000610d4c600b546001600160a01b031690565b60606010805461049c90612582565b60606118ec826110c1565b6119505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b600061195a6118d2565b9050600081511161197a5760405180602001604052806000815250611541565b8061198484611bf9565b60405160200161199592919061277f565b6040516020818303038152906040529392505050565b6119c5828260405180602001604052806000815250611cf7565b5050565b6119d2826110c1565b611a355760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610587565b6000828152600a6020908152604090912082516106bd92840190612033565b60008111611a6157600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b038316611af557611af081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b18565b816001600160a01b0316836001600160a01b031614611b1857611b188382611d2a565b6001600160a01b038216611b2f576106bd81611dc7565b826001600160a01b0316826001600160a01b0316146106bd576106bd8282611e76565b6000611b5d82610b16565b9050611b6b81600084611766565b611b766000836110de565b6001600160a01b0381166000908152600360205260408120805460019290611b9f9084906126ec565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611c1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c475780611c31816126d1565b9150611c409050600a83612719565b9150611c21565b60008167ffffffffffffffff811115611c6257611c62612212565b6040519080825280601f01601f191660200182016040528015611c8c576020820181803683370190505b5090505b841561127557611ca16001836126ec565b9150611cae600a86612808565b611cb990603061269a565b60f81b818381518110611cce57611cce6125e8565b60200101906001600160f81b031916908160001a905350611cf0600a86612719565b9450611c90565b611d018383611eba565b611d0e60008484846117b1565b6106bd5760405162461bcd60e51b81526004016105879061272d565b60006001611d3784610b8d565b611d4191906126ec565b600083815260076020526040902054909150808214611d94576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dd9906001906126ec565b60008381526009602052604081205460088054939450909284908110611e0157611e016125e8565b906000526020600020015490508060088381548110611e2257611e226125e8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e5a57611e5a61281c565b6001900381819060005260206000200160009055905550505050565b6000611e8183610b8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610587565b611f19816110c1565b15611f665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610587565b611f7260008383611766565b6001600160a01b0382166000908152600360205260408120805460019290611f9b90849061269a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461200590612582565b6000825580601f10612015575050565b601f016020900490600052602060002090810190610a8091906120b7565b82805461203f90612582565b90600052602060002090601f01602090048101928261206157600085556120a7565b82601f1061207a57805160ff19168380011785556120a7565b828001600101855582156120a7579182015b828111156120a757825182559160200191906001019061208c565b506120b39291506120b7565b5090565b5b808211156120b357600081556001016120b8565b6001600160e01b031981168114610a8057600080fd5b6000602082840312156120f457600080fd5b8135611541816120cc565b60005b8381101561211a578181015183820152602001612102565b83811115610d835750506000910152565b600081518084526121438160208601602086016120ff565b601f01601f19169290920160200192915050565b602081526000611541602083018461212b565b60006020828403121561217c57600080fd5b5035919050565b6001600160a01b0381168114610a8057600080fd5b600080604083850312156121ab57600080fd5b82356121b681612183565b946020939093013593505050565b600081518084526020808501945080840160005b838110156121f4578151875295820195908201906001016121d8565b509495945050505050565b60208152600061154160208301846121c4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561224357612243612212565b604051601f8501601f19908116603f0116810190828211818310171561226b5761226b612212565b8160405280935085815286868601111561228457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126122af57600080fd5b61154183833560208501612228565b600080600080600060a086880312156122d657600080fd5b85356122e181612183565b9450602086013567ffffffffffffffff8111156122fd57600080fd5b6123098882890161229e565b94505060408601359250606086013561232181612183565b949793965091946080013592915050565b60008060006060848603121561234757600080fd5b833561235281612183565b9250602084013561236281612183565b929592945050506040919091013590565b6000806040838503121561238657600080fd5b50508035926020909101359150565b6000602082840312156123a757600080fd5b813561154181612183565b600080604083850312156123c557600080fd5b82356123d081612183565b9150602083013580151581146123e557600080fd5b809150509250929050565b6000806000806080858703121561240657600080fd5b843561241181612183565b9350602085013561242181612183565b925060408501359150606085013567ffffffffffffffff81111561244457600080fd5b8501601f8101871361245557600080fd5b61246487823560208401612228565b91505092959194509250565b600081518084526020808501945080840160005b838110156121f45781516001600160a01b031687529582019590820190600101612484565b6020815260006115416020830184612470565b6040815260006124cf6040830185612470565b82810360208401526124e181856121c4565b95945050505050565b6000806000806080858703121561250057600080fd5b843561250b81612183565b9350602085013567ffffffffffffffff81111561252757600080fd5b6125338782880161229e565b935050604085013561254481612183565b9396929550929360600135925050565b6000806040838503121561256757600080fd5b823561257281612183565b915060208301356123e581612183565b600181811c9082168061259657607f821691505b602082108114156125b757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126ad576126ad612684565b500190565b60008160001904831182151516156126cc576126cc612684565b500290565b60006000198214156126e5576126e5612684565b5060010190565b6000828210156126fe576126fe612684565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261272857612728612703565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516127918184602088016120ff565b8351908301906127a58183602088016120ff565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e19083018461212b565b9695505050505050565b6000602082840312156127fd57600080fd5b8151611541816120cc565b60008261281757612817612703565b500690565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204669086190b80a5b2d6148e6a16ccaba7aa6c7c8935a13801d9593f23eee93ad64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c526f6520457468726964676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524f450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063b88d4fde116100a2578063d5a06d4c11610071578063d5a06d4c146103ea578063da14cbbc1461040b578063e985e9c51461041e578063f2fde38b1461045a57600080fd5b8063b88d4fde1461039c578063b9c4d9fb146103af578063c87b56dd146103cf578063caa0f92a146103e257600080fd5b80638da5cb5b116100de5780638da5cb5b1461036857806395d89b4114610379578063a22cb46514610381578063a66b7ec91461039457600080fd5b80636352211e1461033a57806370a082311461034d578063715018a61461036057600080fd5b8063221dc1e9116101715780632f745c591161014b5780632f745c59146102ee57806342842e0e1461030157806342966c68146103145780634f6ccce71461032757600080fd5b8063221dc1e91461029657806323b872dd146102a95780632a55205a146102bc57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630ebd4c7f14610251578063152fcb2e1461027157806318160ddd1461028457600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120e2565b61046d565b60405190151581526020015b60405180910390f35b61020461048d565b6040516101f39190612157565b61022461021f36600461216a565b61051f565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004612198565b6105ac565b005b61026461025f36600461216a565b6106c2565b6040516101f391906121ff565b6101e761027f3660046120e2565b61073f565b6008545b6040519081526020016101f3565b61024f6102a43660046122be565b610790565b61024f6102b7366004612332565b6108e9565b6102cf6102ca366004612373565b61091b565b604080516001600160a01b0390931683526020830191909152016101f3565b6102886102fc366004612198565b610958565b61024f61030f366004612332565b6109ee565b61024f61032236600461216a565b610a09565b61028861033536600461216a565b610a83565b61022461034836600461216a565b610b16565b61028861035b366004612395565b610b8d565b61024f610c14565b600b546001600160a01b0316610224565b610204610c4a565b61024f61038f3660046123b2565b610c59565b610288610d1e565b61024f6103aa3660046123f0565b610d51565b6103c26103bd36600461216a565b610d89565b6040516101f391906124a9565b6102046103dd36600461216a565b610e0c565b610288610e17565b6103fd6103f836600461216a565b610e22565b6040516101f39291906124bc565b61024f6104193660046124ea565b610ef9565b6101e761042c366004612554565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f610468366004612395565b611004565b60006104788261109c565b8061048757506104878261073f565b92915050565b60606000805461049c90612582565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612582565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826110c1565b6105905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b782610b16565b9050806001600160a01b0316836001600160a01b031614156106255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610587565b336001600160a01b03821614806106415750610641813361042c565b6106b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610587565b6106bd83836110de565b505050565b60606106cd8261114c565b6106e95760405162461bcd60e51b8152600401610587906125bd565b60408051600180825281830190925260009160208083019080368337019050506000848152600d60205260409020549091508160008151811061072e5761072e6125e8565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061077057506001600160e01b031982166335681b5360e21b145b8061048757506001600160e01b0319821663152a902d60e11b1492915050565b600b546001600160a01b031633146107ba5760405162461bcd60e51b8152600401610587906125fe565b612710811061080b5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6065831061085b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206f662031303020746f6b656e73207065722065646974696f6e0000006044820152606401610587565b600183116108b95760405162461bcd60e51b815260206004820152602560248201527f4d757374206265206d6f7265207468616e203120746f6b656e2070657220656460448201526434ba34b7b760d91b6064820152608401610587565b60006108c3610d1e565b90506108d3868286888787611157565b6108e1600f80546001019055565b505050505050565b6108f4335b82611193565b6109105760405162461bcd60e51b815260040161058790612633565b6106bd83838361127d565b6000806109278461114c565b6109435760405162461bcd60e51b8152600401610587906125bd565b61094d8484611428565b915091509250929050565b600061096383610b8d565b82106109c55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610587565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106bd83838360405180602001604052806000815250610d51565b610a12336108ee565b610a775760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610587565b610a808161146f565b50565b6000610a8e60085490565b8210610af15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610587565b60088281548110610b0457610b046125e8565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610587565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610587565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610587906125fe565b610c486000611478565b565b60606001805461049c90612582565b6001600160a01b038216331415610cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610587565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000601154610d2c600f5490565b610d3790600161269a565b610d4191906126b2565b610d4c90600161269a565b905090565b610d5b3383611193565b610d775760405162461bcd60e51b815260040161058790612633565b610d83848484846114ca565b50505050565b6060610d948261114c565b610db05760405162461bcd60e51b8152600401610587906125bd565b60408051600180825281830190925260009160208083019080368337019050509050610ddb836114fd565b81600081518110610dee57610dee6125e8565b6001600160a01b039092166020928302919091019091015292915050565b606061048782611548565b6000610d41600e5490565b606080610e2e8361114c565b610e4a5760405162461bcd60e51b8152600401610587906125bd565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610e98856114fd565b82600081518110610eab57610eab6125e8565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610ee457610ee46125e8565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610f235760405162461bcd60e51b8152600401610587906125fe565b6127108110610f745760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6000610f7e610e17565b90506011548110610fe25760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d206e756d626572206f662073696e676c6520746f6b656e7320604482015267195e18d95959195960c21b6064820152608401610587565b610fef85828686866116aa565b610ffd600e80546001019055565b5050505050565b600b546001600160a01b0316331461102e5760405162461bcd60e51b8152600401610587906125fe565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610a8081611478565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611716565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061111382610b16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610487826110c1565b60005b8481101561118a5761117887611170838961269a565b8686866116aa565b80611182816126d1565b91505061115a565b50505050505050565b600061119e826110c1565b6111ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610587565b600061120a83610b16565b9050806001600160a01b0316846001600160a01b031614806112455750836001600160a01b031661123a8461051f565b6001600160a01b0316145b8061127557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129082610b16565b6001600160a01b0316146112f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610587565b6001600160a01b03821661135a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b611365838383611766565b6113706000826110de565b6001600160a01b03831660009081526003602052604081208054600192906113999084906126ec565b90915550506001600160a01b03821660009081526003602052604081208054600192906113c790849061269a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806000611436856114fd565b6000868152600d60205260409020549091508190612710906114599087906126b2565b6114639190612719565b92509250509250929050565b610a8081611771565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d584848461127d565b6114e1848484846117b1565b610d835760405162461bcd60e51b81526004016105879061272d565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061153457506001600160a01b038116155b15611541576112756118be565b9392505050565b6060611553826110c1565b6115b95760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610587565b6000828152600a6020526040812080546115d290612582565b80601f01602080910402602001604051908101604052809291908181526020018280546115fe90612582565b801561164b5780601f106116205761010080835404028352916020019161164b565b820191906000526020600020905b81548152906001019060200180831161162e57829003601f168201915b50505050509050600061165c6118d2565b905080516000141561166f575092915050565b8151156116a157808260405160200161168992919061277f565b60405160208183030381529060405292505050919050565b611275846118e1565b6116b485856119ab565b6116be84846119c9565b80156116cf576116cf848383611a54565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076116fa86610e0c565b6040516117079190612157565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061174757506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b6106bd838383611a9a565b61177a81611b52565b6000818152600a60205260409020805461179390612582565b159050610a80576000818152600a60205260408120610a8091611ff9565b60006001600160a01b0384163b156118b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f59033908990889088906004016127ae565b602060405180830381600087803b15801561180f57600080fd5b505af192505050801561183f575060408051601f3d908101601f1916820190925261183c918101906127eb565b60015b611899573d80801561186d576040519150601f19603f3d011682016040523d82523d6000602084013e611872565b606091505b5080516118915760405162461bcd60e51b81526004016105879061272d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611275565b506001949350505050565b6000610d4c600b546001600160a01b031690565b60606010805461049c90612582565b60606118ec826110c1565b6119505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b600061195a6118d2565b9050600081511161197a5760405180602001604052806000815250611541565b8061198484611bf9565b60405160200161199592919061277f565b6040516020818303038152906040529392505050565b6119c5828260405180602001604052806000815250611cf7565b5050565b6119d2826110c1565b611a355760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610587565b6000828152600a6020908152604090912082516106bd92840190612033565b60008111611a6157600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b038316611af557611af081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b18565b816001600160a01b0316836001600160a01b031614611b1857611b188382611d2a565b6001600160a01b038216611b2f576106bd81611dc7565b826001600160a01b0316826001600160a01b0316146106bd576106bd8282611e76565b6000611b5d82610b16565b9050611b6b81600084611766565b611b766000836110de565b6001600160a01b0381166000908152600360205260408120805460019290611b9f9084906126ec565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611c1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c475780611c31816126d1565b9150611c409050600a83612719565b9150611c21565b60008167ffffffffffffffff811115611c6257611c62612212565b6040519080825280601f01601f191660200182016040528015611c8c576020820181803683370190505b5090505b841561127557611ca16001836126ec565b9150611cae600a86612808565b611cb990603061269a565b60f81b818381518110611cce57611cce6125e8565b60200101906001600160f81b031916908160001a905350611cf0600a86612719565b9450611c90565b611d018383611eba565b611d0e60008484846117b1565b6106bd5760405162461bcd60e51b81526004016105879061272d565b60006001611d3784610b8d565b611d4191906126ec565b600083815260076020526040902054909150808214611d94576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dd9906001906126ec565b60008381526009602052604081205460088054939450909284908110611e0157611e016125e8565b906000526020600020015490508060088381548110611e2257611e226125e8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e5a57611e5a61281c565b6001900381819060005260206000200160009055905550505050565b6000611e8183610b8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610587565b611f19816110c1565b15611f665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610587565b611f7260008383611766565b6001600160a01b0382166000908152600360205260408120805460019290611f9b90849061269a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461200590612582565b6000825580601f10612015575050565b601f016020900490600052602060002090810190610a8091906120b7565b82805461203f90612582565b90600052602060002090601f01602090048101928261206157600085556120a7565b82601f1061207a57805160ff19168380011785556120a7565b828001600101855582156120a7579182015b828111156120a757825182559160200191906001019061208c565b506120b39291506120b7565b5090565b5b808211156120b357600081556001016120b8565b6001600160e01b031981168114610a8057600080fd5b6000602082840312156120f457600080fd5b8135611541816120cc565b60005b8381101561211a578181015183820152602001612102565b83811115610d835750506000910152565b600081518084526121438160208601602086016120ff565b601f01601f19169290920160200192915050565b602081526000611541602083018461212b565b60006020828403121561217c57600080fd5b5035919050565b6001600160a01b0381168114610a8057600080fd5b600080604083850312156121ab57600080fd5b82356121b681612183565b946020939093013593505050565b600081518084526020808501945080840160005b838110156121f4578151875295820195908201906001016121d8565b509495945050505050565b60208152600061154160208301846121c4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561224357612243612212565b604051601f8501601f19908116603f0116810190828211818310171561226b5761226b612212565b8160405280935085815286868601111561228457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126122af57600080fd5b61154183833560208501612228565b600080600080600060a086880312156122d657600080fd5b85356122e181612183565b9450602086013567ffffffffffffffff8111156122fd57600080fd5b6123098882890161229e565b94505060408601359250606086013561232181612183565b949793965091946080013592915050565b60008060006060848603121561234757600080fd5b833561235281612183565b9250602084013561236281612183565b929592945050506040919091013590565b6000806040838503121561238657600080fd5b50508035926020909101359150565b6000602082840312156123a757600080fd5b813561154181612183565b600080604083850312156123c557600080fd5b82356123d081612183565b9150602083013580151581146123e557600080fd5b809150509250929050565b6000806000806080858703121561240657600080fd5b843561241181612183565b9350602085013561242181612183565b925060408501359150606085013567ffffffffffffffff81111561244457600080fd5b8501601f8101871361245557600080fd5b61246487823560208401612228565b91505092959194509250565b600081518084526020808501945080840160005b838110156121f45781516001600160a01b031687529582019590820190600101612484565b6020815260006115416020830184612470565b6040815260006124cf6040830185612470565b82810360208401526124e181856121c4565b95945050505050565b6000806000806080858703121561250057600080fd5b843561250b81612183565b9350602085013567ffffffffffffffff81111561252757600080fd5b6125338782880161229e565b935050604085013561254481612183565b9396929550929360600135925050565b6000806040838503121561256757600080fd5b823561257281612183565b915060208301356123e581612183565b600181811c9082168061259657607f821691505b602082108114156125b757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126ad576126ad612684565b500190565b60008160001904831182151516156126cc576126cc612684565b500290565b60006000198214156126e5576126e5612684565b5060010190565b6000828210156126fe576126fe612684565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261272857612728612703565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516127918184602088016120ff565b8351908301906127a58183602088016120ff565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e19083018461212b565b9695505050505050565b6000602082840312156127fd57600080fd5b8151611541816120cc565b60008261281757612817612703565b500690565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204669086190b80a5b2d6148e6a16ccaba7aa6c7c8935a13801d9593f23eee93ad64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c526f6520457468726964676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524f450000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://
Arg [1] : contractName (string): Roe Ethridge
Arg [2] : tokenSymbol (string): ROE
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 526f652045746872696467650000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 524f450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
494:4159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4379:272;;;;;;:::i;:::-;;:::i;:::-;;;565:14:17;;558:22;540:41;;528:2;513:18;4379:272:0;;;;;;;;2414:98:3;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:17;;;1674:51;;1662:2;1647:18;3925:217:3;1528:203:17;3463:401:3;;;;;;:::i;:::-;;:::i;:::-;;2477:298:1;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4217:320::-;;;;;;:::i;:::-;;:::i;1535:111:7:-;1622:10;:17;1535:111;;;3044:25:17;;;3032:2;3017:18;1535:111:7;2898:177:17;1824:554:0;;;;;;:::i;:::-;;:::i;4789:330:3:-;;;;;;:::i;:::-;;:::i;2868:258:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5731:32:17;;;5713:51;;5795:2;5780:18;;5773:34;;;;5686:18;2868:258:1;5539:274:17;1211:253:7;;;;;;:::i;:::-;;:::i;5185:179:3:-;;;;;;:::i;:::-;;:::i;451:241:6:-;;;;;;:::i;:::-;;:::i;1718:230:7:-;;;;;;:::i;:::-;;:::i;2117:235:3:-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;1605:92:2:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:2;973:85;;2576:102:3;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;2499:134:0:-;;;:::i;5430:320:3:-;;;;;;:::i;:::-;;:::i;2119:352:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3826:189:0:-;;;;;;:::i;:::-;;:::i;2384:109::-;;;:::i;1622:452:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1319:499:0:-;;;;;;:::i;:::-;;:::i;4565:162:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:3;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1846:189:2;;;;;;:::i;:::-;;:::i;4379:272:0:-;4514:4;4553:36;4577:11;4553:23;:36::i;:::-;:91;;;;4605:39;4632:11;4605:26;:39::i;:::-;4534:110;4379:272;-1:-1:-1;;4379:272:0:o;2414:98:3:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;-1:-1:-1;;;4020:73:3;;10209:2:17;4020:73:3;;;10191:21:17;10248:2;10228:18;;;10221:30;10287:34;10267:18;;;10260:62;-1:-1:-1;;;10338:18:17;;;10331:42;10390:19;;4020:73:3;;;;;;;;;-1:-1:-1;4111:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:3;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:3;:2;-1:-1:-1;;;;;3600:11:3;;;3592:57;;;;-1:-1:-1;;;3592:57:3;;10622:2:17;3592:57:3;;;10604:21:17;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:17;;;10744:31;10792:19;;3592:57:3;10420:397:17;3592:57:3;666:10:12;-1:-1:-1;;;;;3681:21:3;;;;:62;;-1:-1:-1;3706:37:3;3723:5;666:10:12;4565:162:3;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:3;;11024:2:17;3660:165:3;;;11006:21:17;11063:2;11043:18;;;11036:30;11102:34;11082:18;;;11075:62;11173:26;11153:18;;;11146:54;11217:19;;3660:165:3;10822:420:17;3660:165:3;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;2477:298:1:-;2576:16;2616:25;2633:7;2616:16;:25::i;:::-;2608:55;;;;-1:-1:-1;;;2608:55:1;;;;;;;:::i;:::-;2697:16;;;2711:1;2697:16;;;;;;;;;2674:20;;2697:16;;;;;;;;;;;-1:-1:-1;;3468:7:1;3494:25;;;:16;:25;;;;;;2674:39;;-1:-1:-1;2723:3:1;2727:1;2723:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2765:3;2477:298;-1:-1:-1;;2477:298:1:o;4217:320::-;4318:4;-1:-1:-1;;;;;;4357:46:1;;-1:-1:-1;;;4357:46:1;;:111;;-1:-1:-1;;;;;;;4419:49:1;;-1:-1:-1;;;4419:49:1;4357:111;:173;;;-1:-1:-1;;;;;;;4484:46:1;;-1:-1:-1;;;4484:46:1;4338:192;4217:320;-1:-1:-1;;4217:320:1:o;1824:554:0:-;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;2040:5:0::1;2026:11;:19;2018:60;;;::::0;-1:-1:-1;;;2018:60:0;;12288:2:17;2018:60:0::1;::::0;::::1;12270:21:17::0;12327:2;12307:18;;;12300:30;12366;12346:18;;;12339:58;12414:18;;2018:60:0::1;12086:352:17::0;2018:60:0::1;2104:3;2096:5;:11;2088:53;;;::::0;-1:-1:-1;;;2088:53:0;;12645:2:17;2088:53:0::1;::::0;::::1;12627:21:17::0;12684:2;12664:18;;;12657:30;12723:31;12703:18;;;12696:59;12772:18;;2088:53:0::1;12443:353:17::0;2088:53:0::1;2167:1;2159:5;:9;2151:59;;;::::0;-1:-1:-1;;;2151:59:0;;13003:2:17;2151:59:0::1;::::0;::::1;12985:21:17::0;13042:2;13022:18;;;13015:30;13081:34;13061:18;;;13054:62;-1:-1:-1;;;13132:18:17;;;13125:35;13177:19;;2151:59:0::1;12801:401:17::0;2151:59:0::1;2221:15;2239:18;:16;:18::i;:::-;2221:36;;2267:67;2281:2;2285:7;2294:5;2301:9;2312:8;2322:11;2267:13;:67::i;:::-;2344:27;:15;978:19:13::0;;996:1;978:19;;;891:123;2344:27:0::1;2008:370;1824:554:::0;;;;;:::o;4789:330:3:-;4978:41;666:10:12;4997:12:3;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:3;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;2868:258:1:-;2984:7;2993;3024:25;3041:7;3024:16;:25::i;:::-;3016:55;;;;-1:-1:-1;;;3016:55:1;;;;;;;:::i;:::-;3088:31;3104:7;3113:5;3088:15;:31::i;:::-;3081:38;;;;2868:258;;;;;:::o;1211:253:7:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:7;;13827:2:17;1327:87:7;;;13809:21:17;13866:2;13846:18;;;13839:30;13905:34;13885:18;;;13878:62;-1:-1:-1;;;13956:18:17;;;13949:41;14007:19;;1327:87:7;13625:407:17;1327:87:7;-1:-1:-1;;;;;;1431:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:3:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;451:241:6:-;567:41;666:10:12;586:12:6;587:96:12;567:41:6;559:102;;;;-1:-1:-1;;;559:102:6;;14239:2:17;559:102:6;;;14221:21:17;14278:2;14258:18;;;14251:30;14317:34;14297:18;;;14290:62;-1:-1:-1;;;14368:18:17;;;14361:46;14424:19;;559:102:6;14037:412:17;559:102:6;671:14;677:7;671:5;:14::i;:::-;451:241;:::o;1718:230:7:-;1793:7;1828:30;1622:10;:17;;1535:111;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:7;;14656:2:17;1812:95:7;;;14638:21:17;14695:2;14675:18;;;14668:30;14734:34;14714:18;;;14707:62;-1:-1:-1;;;14785:18:17;;;14778:42;14837:19;;1812:95:7;14454:408:17;1812:95:7;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;1917:24;;1718:230;;;:::o;2117:235:3:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:3;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:3;;15069:2:17;2250:73:3;;;15051:21:17;15108:2;15088:18;;;15081:30;15147:34;15127:18;;;15120:62;-1:-1:-1;;;15198:18:17;;;15191:39;15247:19;;2250:73:3;14867:405:17;1855:205:3;1927:7;-1:-1:-1;;;;;1954:19:3;;1946:74;;;;-1:-1:-1;;;1946:74:3;;15479:2:17;1946:74:3;;;15461:21:17;15518:2;15498:18;;;15491:30;15557:34;15537:18;;;15530:62;-1:-1:-1;;;15608:18:17;;;15601:40;15658:19;;1946:74:3;15277:406:17;1946:74:3;-1:-1:-1;;;;;;2037:16:3;;;;;:9;:16;;;;;;;1855:205::o;1605:92:2:-;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2576:102:3:-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:3;;666:10:12;4311:24:3;;4303:62;;;;-1:-1:-1;;;4303:62:3;;15890:2:17;4303:62:3;;;15872:21:17;15929:2;15909:18;;;15902:30;15968:27;15948:18;;;15941:55;16013:18;;4303:62:3;15688:349:17;4303:62:3;666:10:12;4376:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:3;;;;;;;;;;4444:48;;540:41:17;;;4376:42:3;;666:10:12;4444:48:3;;513:18:17;4444:48:3;;;;;;;4209:290;;:::o;2499:134:0:-;2548:7;2609:12;;2576:25;:15;864:14:13;;773:112;2576:25:0;:29;;2604:1;2576:29;:::i;:::-;2575:46;;;;:::i;:::-;2574:52;;2625:1;2574:52;:::i;:::-;2567:59;;2499:134;:::o;5430:320:3:-;5599:41;666:10:12;5632:7:3;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:3;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2119:352:1:-;2225:24;2273:25;2290:7;2273:16;:25::i;:::-;2265:55;;;;-1:-1:-1;;;2265:55:1;;;;;;;:::i;:::-;2368:24;;;2390:1;2368:24;;;;;;;;;2331:34;;2368:24;;;;;;;;;;;-1:-1:-1;2368:24:1;2331:61;;2417:21;2430:7;2417:12;:21::i;:::-;2402:9;2412:1;2402:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2402:36:1;;;:12;;;;;;;;;;;:36;2455:9;2119:352;-1:-1:-1;;2119:352:1:o;3826:189:0:-;3949:13;3985:23;4000:7;3985:14;:23::i;2384:109::-;2431:7;2457:25;:15;864:14:13;;773:112;1622:452:1;1719:24;1745:16;1785:25;1802:7;1785:16;:25::i;:::-;1777:55;;;;-1:-1:-1;;;1777:55:1;;;;;;;:::i;:::-;1880:24;;;1902:1;1880:24;;;;;;;;;1843:34;;1880:24;;;;;;;;;-1:-1:-1;;1937:16:1;;;1951:1;1937:16;;;;;;;;;1843:61;;-1:-1:-1;1914:20:1;;1937:16;-1:-1:-1;1937:16:1;;;;;;;;;;;-1:-1:-1;1937:16:1;1914:39;;1978:21;1991:7;1978:12;:21::i;:::-;1963:9;1973:1;1963:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1963:36:1;;;:12;;;;;;;;;;:36;3468:7;3494:25;;;:16;:25;;;;;;;2009:3;2013:1;2009:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2052:9;;2063:3;;-1:-1:-1;1622:452:1;-1:-1:-1;;1622:452:1:o;1319:499:0:-;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1504:5:0::1;1490:11;:19;1482:60;;;::::0;-1:-1:-1;;;1482:60:0;;12288:2:17;1482:60:0::1;::::0;::::1;12270:21:17::0;12327:2;12307:18;;;12300:30;12366;12346:18;;;12339:58;12414:18;;1482:60:0::1;12086:352:17::0;1482:60:0::1;1552:15;1570:16;:14;:16::i;:::-;1552:34;;1627:12;;1617:7;:22;1596:109;;;::::0;-1:-1:-1;;;1596:109:0;;16682:2:17;1596:109:0::1;::::0;::::1;16664:21:17::0;16721:2;16701:18;;;16694:30;16760:34;16740:18;;;16733:62;-1:-1:-1;;;16811:18:17;;;16804:38;16859:19;;1596:109:0::1;16480:404:17::0;1596:109:0::1;1716:58;1728:2;1732:7;1741:9;1752:8;1762:11;1716;:58::i;:::-;1784:27;:15;978:19:13::0;;996:1;978:19;;;891:123;1784:27:0::1;1472:346;1319:499:::0;;;;:::o;1846:189:2:-;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:2;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:2;;17091:2:17;1926:73:2::1;::::0;::::1;17073:21:17::0;17130:2;17110:18;;;17103:30;17169:34;17149:18;;;17142:62;-1:-1:-1;;;17220:18:17;;;17213:36;17266:19;;1926:73:2::1;16889:402:17::0;1926:73:2::1;2009:19;2019:8;2009:9;:19::i;910:222:7:-:0;1012:4;-1:-1:-1;;;;;;1035:50:7;;-1:-1:-1;;;1035:50:7;;:90;;;1089:36;1113:11;1089:23;:36::i;7222:125:3:-;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:3;:30;;;7222:125::o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:3;-1:-1:-1;;;;;11147:29:3;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:3;;;;;;;;;;;11073:171;;:::o;4021:190:0:-;4155:4;4182:22;4196:7;4182:13;:22::i;2639:341::-;2856:9;2851:123;2875:5;2871:1;:9;2851:123;;;2901:62;2913:2;2917:11;2927:1;2917:7;:11;:::i;:::-;2930:9;2941:8;2951:11;2901;:62::i;:::-;2882:3;;;;:::i;:::-;;;;2851:123;;;;2639:341;;;;;;:::o;7505:344:3:-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;-1:-1:-1;;;7614:73:3;;17638:2:17;7614:73:3;;;17620:21:17;17677:2;17657:18;;;17650:30;17716:34;17696:18;;;17689:62;-1:-1:-1;;;17767:18:17;;;17760:42;17819:19;;7614:73:3;17436:408:17;7614:73:3;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:3;:7;-1:-1:-1;;;;;7754:16:3;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:3;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:3;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:3;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:3:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:3;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:3;;10521:85;;;;-1:-1:-1;;;10521:85:3;;18051:2:17;10521:85:3;;;18033:21:17;18090:2;18070:18;;;18063:30;18129:34;18109:18;;;18102:62;-1:-1:-1;;;18180:18:17;;;18173:39;18229:19;;10521:85:3;17849:405:17;10521:85:3;-1:-1:-1;;;;;10624:16:3;;10616:65;;;;-1:-1:-1;;;10616:65:3;;18461:2:17;10616:65:3;;;18443:21:17;18500:2;18480:18;;;18473:30;18539:34;18519:18;;;18512:62;-1:-1:-1;;;18590:18:17;;;18583:34;18634:19;;10616:65:3;18259:400:17;10616:65:3;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:3;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:3;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:3;-1:-1:-1;;;;;10891:21:3;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;3132:273:1:-;3236:16;3254:14;3284:17;3304:21;3317:7;3304:12;:21::i;:::-;3355:25;;;;:16;:25;;;;;;3284:41;;-1:-1:-1;3284:41:1;;3392:5;;3355:33;;3383:5;;3355:33;:::i;:::-;3354:43;;;;:::i;:::-;3335:63;;;;;3132:273;;;;;:::o;3687:133:0:-;3793:20;3805:7;3793:11;:20::i;2041:169:2:-;2115:6;;;-1:-1:-1;;;;;2131:17:2;;;-1:-1:-1;;;;;;2131:17:2;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;6612:307:3:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:3;;;;;;;:::i;3532:562:1:-;3618:15;3494:25;;;:16;:25;;;;;;;;;3716:21;:30;;;;;;-1:-1:-1;;;;;3716:30:1;3760:8;;;:34;;-1:-1:-1;;;;;;3772:22:1;;;3760:34;3756:306;;;4029:21;:19;:21::i;3756:306::-;4079:8;3532:562;-1:-1:-1;;;3532:562:1:o;387:663:8:-;460:13;493:16;501:7;493;:16::i;:::-;485:78;;;;-1:-1:-1;;;485:78:8;;19672:2:17;485:78:8;;;19654:21:17;19711:2;19691:18;;;19684:30;19750:34;19730:18;;;19723:62;-1:-1:-1;;;19801:18:17;;;19794:47;19858:19;;485:78:8;19470:413:17;485:78:8;574:23;600:19;;;:10;:19;;;;;574:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629:18;650:10;:8;:10::i;:::-;629:31;;739:4;733:18;755:1;733:23;729:70;;;-1:-1:-1;779:9:8;387:663;-1:-1:-1;;387:663:8:o;729:70::-;901:23;;:27;897:106;;975:4;981:9;958:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;944:48;;;;387:663;;;:::o;897:106::-;1020:23;1035:7;1020:14;:23::i;2986:413:0:-;3173:22;3183:2;3187:7;3173:9;:22::i;:::-;3205:32;3218:7;3227:9;3205:12;:32::i;:::-;3251:15;;3247:91;;3282:45;3296:7;3305:8;3315:11;3282:13;:45::i;:::-;3384:7;3352:40;3365:17;3374:7;3365:8;:17::i;:::-;3352:40;;;;;;:::i;:::-;;;;;;;;2986:413;;;;;:::o;1496:300:3:-;1598:4;-1:-1:-1;;;;;;1633:40:3;;-1:-1:-1;;;1633:40:3;;:104;;-1:-1:-1;;;;;;;1689:48:3;;-1:-1:-1;;;1689:48:3;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:15;;;1753:36:3;763:155:15;3472:209:0;3629:45;3656:4;3662:2;3666:7;3629:26;:45::i;1628:200:8:-;1696:20;1708:7;1696:11;:20::i;:::-;1737:19;;;;:10;:19;;;;;1731:33;;;;;:::i;:::-;:38;;-1:-1:-1;1727:95:8;;1792:19;;;;:10;:19;;;;;1785:26;;;:::i;11797:778:3:-;11947:4;-1:-1:-1;;;;;11967:13:3;;1034:20:11;1080:8;11963:606:3;;12002:72;;-1:-1:-1;;;12002:72:3;;-1:-1:-1;;;;;12002:36:3;;;;;:72;;666:10:12;;12053:4:3;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:3;;;;;;;;-1:-1:-1;;12002:72:3;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:3;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:3;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:3;-1:-1:-1;;;12124:51:3;;-1:-1:-1;12117:58:3;;11963:606;-1:-1:-1;12554:4:3;11797:778;;;;;;:::o;4217:156:0:-;4312:15;4358:7;1045:6:2;;-1:-1:-1;;;;;1045:6:2;;973:85;1138:107:0;1190:13;1222:16;1215:23;;;;;:::i;2744:329:3:-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;-1:-1:-1;;;2842:76:3;;21313:2:17;2842:76:3;;;21295:21:17;21352:2;21332:18;;;21325:30;21391:34;21371:18;;;21364:62;-1:-1:-1;;;21442:18:17;;;21435:45;21497:19;;2842:76:3;21111:411:17;2842:76:3;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2973:93;2744:329;-1:-1:-1;;;2744:329:3:o;8179:108::-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;:::-;8179:108;;:::o;1197:214:8:-;1296:16;1304:7;1296;:16::i;:::-;1288:75;;;;-1:-1:-1;;;1288:75:8;;21729:2:17;1288:75:8;;;21711:21:17;21768:2;21748:18;;;21741:30;21807:34;21787:18;;;21780:62;-1:-1:-1;;;21858:18:17;;;21851:44;21912:19;;1288:75:8;21527:410:17;1288:75:8;1373:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;1242:267:1:-;1400:1;1386:11;:15;1378:24;;;;;;1412:30;;;;:21;:30;;;;;;;;:41;;-1:-1:-1;;;;;;1412:41:1;-1:-1:-1;;;;;1412:41:1;;;;;;;;;;;1463:16;:25;;;;:39;1242:267::o;2544:572:7:-;-1:-1:-1;;;;;2743:18:7;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:7;:4;-1:-1:-1;;;;;2838:10:7;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:7;;2931:179;;2967:45;3004:7;2967:36;:45::i;2931:179::-;3039:4;-1:-1:-1;;;;;3033:10:7;:2;-1:-1:-1;;;;;3033:10:7;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;9730:348:3:-;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9839:48;9860:5;9875:1;9879:7;9839:20;:48::i;:::-;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:3;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:3;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;;;;;9996:23:3;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:3;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;275:703:14:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:14;;;;;;;;;;;;-1:-1:-1;;;574:10:14;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:14;;-1:-1:-1;720:2:14;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:14;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:14;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:14;;;;;;;;-1:-1:-1;919:11:14;928:2;919:11;;:::i;:::-;;;791:150;;8508:311:3;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:3;;;;;;;:::i;4600:970:7:-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:7;;;5070:323;;-1:-1:-1;;;;;5140:18:7;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:7;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:7;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:7;;6107:46;;6552:26;;;;;;:::i;:::-;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:7:o;9141:372:3:-;-1:-1:-1;;;;;9220:16:3;;9212:61;;;;-1:-1:-1;;;9212:61:3;;22393:2:17;9212:61:3;;;22375:21:17;;;22412:18;;;22405:30;22471:34;22451:18;;;22444:62;22523:18;;9212:61:3;22191:356:17;9212:61:3;9292:16;9300:7;9292;:16::i;:::-;9291:17;9283:58;;;;-1:-1:-1;;;9283:58:3;;22754:2:17;9283:58:3;;;22736:21:17;22793:2;22773:18;;;22766:30;22832;22812:18;;;22805:58;22880:18;;9283:58:3;22552:352:17;9283:58:3;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:3;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:3;-1:-1:-1;;;;;9436:21:3;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:17;-1:-1:-1;;;;;;88:32:17;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:17;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:17;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:17:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:17;;1343:180;-1:-1:-1;1343:180:17:o;1736:131::-;-1:-1:-1;;;;;1811:31:17;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:17:o;2192:435::-;2245:3;2283:5;2277:12;2310:6;2305:3;2298:19;2336:4;2365:2;2360:3;2356:12;2349:19;;2402:2;2395:5;2391:14;2423:1;2433:169;2447:6;2444:1;2441:13;2433:169;;;2508:13;;2496:26;;2542:12;;;;2577:15;;;;2469:1;2462:9;2433:169;;;-1:-1:-1;2618:3:17;;2192:435;-1:-1:-1;;;;;2192:435:17:o;2632:261::-;2811:2;2800:9;2793:21;2774:4;2831:56;2883:2;2872:9;2868:18;2860:6;2831:56;:::i;3080:127::-;3141:10;3136:3;3132:20;3129:1;3122:31;3172:4;3169:1;3162:15;3196:4;3193:1;3186:15;3212:632;3277:5;3307:18;3348:2;3340:6;3337:14;3334:40;;;3354:18;;:::i;:::-;3429:2;3423:9;3397:2;3483:15;;-1:-1:-1;;3479:24:17;;;3505:2;3475:33;3471:42;3459:55;;;3529:18;;;3549:22;;;3526:46;3523:72;;;3575:18;;:::i;:::-;3615:10;3611:2;3604:22;3644:6;3635:15;;3674:6;3666;3659:22;3714:3;3705:6;3700:3;3696:16;3693:25;3690:45;;;3731:1;3728;3721:12;3690:45;3781:6;3776:3;3769:4;3761:6;3757:17;3744:44;3836:1;3829:4;3820:6;3812;3808:19;3804:30;3797:41;;;;3212:632;;;;;:::o;3849:222::-;3892:5;3945:3;3938:4;3930:6;3926:17;3922:27;3912:55;;3963:1;3960;3953:12;3912:55;3985:80;4061:3;4052:6;4039:20;4032:4;4024:6;4020:17;3985:80;:::i;4076:744::-;4189:6;4197;4205;4213;4221;4274:3;4262:9;4253:7;4249:23;4245:33;4242:53;;;4291:1;4288;4281:12;4242:53;4330:9;4317:23;4349:31;4374:5;4349:31;:::i;:::-;4399:5;-1:-1:-1;4455:2:17;4440:18;;4427:32;4482:18;4471:30;;4468:50;;;4514:1;4511;4504:12;4468:50;4537;4579:7;4570:6;4559:9;4555:22;4537:50;:::i;:::-;4527:60;;;4634:2;4623:9;4619:18;4606:32;4596:42;;4690:2;4679:9;4675:18;4662:32;4703:33;4728:7;4703:33;:::i;:::-;4076:744;;;;-1:-1:-1;4076:744:17;;4809:3;4794:19;4781:33;;4076:744;-1:-1:-1;;4076:744:17:o;4825:456::-;4902:6;4910;4918;4971:2;4959:9;4950:7;4946:23;4942:32;4939:52;;;4987:1;4984;4977:12;4939:52;5026:9;5013:23;5045:31;5070:5;5045:31;:::i;:::-;5095:5;-1:-1:-1;5152:2:17;5137:18;;5124:32;5165:33;5124:32;5165:33;:::i;:::-;4825:456;;5217:7;;-1:-1:-1;;;5271:2:17;5256:18;;;;5243:32;;4825:456::o;5286:248::-;5354:6;5362;5415:2;5403:9;5394:7;5390:23;5386:32;5383:52;;;5431:1;5428;5421:12;5383:52;-1:-1:-1;;5454:23:17;;;5524:2;5509:18;;;5496:32;;-1:-1:-1;5286:248:17:o;5818:247::-;5877:6;5930:2;5918:9;5909:7;5905:23;5901:32;5898:52;;;5946:1;5943;5936:12;5898:52;5985:9;5972:23;6004:31;6029:5;6004:31;:::i;6070:416::-;6135:6;6143;6196:2;6184:9;6175:7;6171:23;6167:32;6164:52;;;6212:1;6209;6202:12;6164:52;6251:9;6238:23;6270:31;6295:5;6270:31;:::i;:::-;6320:5;-1:-1:-1;6377:2:17;6362:18;;6349:32;6419:15;;6412:23;6400:36;;6390:64;;6450:1;6447;6440:12;6390:64;6473:7;6463:17;;;6070:416;;;;;:::o;6491:795::-;6586:6;6594;6602;6610;6663:3;6651:9;6642:7;6638:23;6634:33;6631:53;;;6680:1;6677;6670:12;6631:53;6719:9;6706:23;6738:31;6763:5;6738:31;:::i;:::-;6788:5;-1:-1:-1;6845:2:17;6830:18;;6817:32;6858:33;6817:32;6858:33;:::i;:::-;6910:7;-1:-1:-1;6964:2:17;6949:18;;6936:32;;-1:-1:-1;7019:2:17;7004:18;;6991:32;7046:18;7035:30;;7032:50;;;7078:1;7075;7068:12;7032:50;7101:22;;7154:4;7146:13;;7142:27;-1:-1:-1;7132:55:17;;7183:1;7180;7173:12;7132:55;7206:74;7272:7;7267:2;7254:16;7249:2;7245;7241:11;7206:74;:::i;:::-;7196:84;;;6491:795;;;;;;;:::o;7291:469::-;7352:3;7390:5;7384:12;7417:6;7412:3;7405:19;7443:4;7472:2;7467:3;7463:12;7456:19;;7509:2;7502:5;7498:14;7530:1;7540:195;7554:6;7551:1;7548:13;7540:195;;;7619:13;;-1:-1:-1;;;;;7615:39:17;7603:52;;7675:12;;;;7710:15;;;;7651:1;7569:9;7540:195;;7765:285;7960:2;7949:9;7942:21;7923:4;7980:64;8040:2;8029:9;8025:18;8017:6;7980:64;:::i;8055:489::-;8328:2;8317:9;8310:21;8291:4;8354:64;8414:2;8403:9;8399:18;8391:6;8354:64;:::i;:::-;8466:9;8458:6;8454:22;8449:2;8438:9;8434:18;8427:50;8494:44;8531:6;8523;8494:44;:::i;:::-;8486:52;8055:489;-1:-1:-1;;;;;8055:489:17:o;8549:675::-;8653:6;8661;8669;8677;8730:3;8718:9;8709:7;8705:23;8701:33;8698:53;;;8747:1;8744;8737:12;8698:53;8786:9;8773:23;8805:31;8830:5;8805:31;:::i;:::-;8855:5;-1:-1:-1;8911:2:17;8896:18;;8883:32;8938:18;8927:30;;8924:50;;;8970:1;8967;8960:12;8924:50;8993;9035:7;9026:6;9015:9;9011:22;8993:50;:::i;:::-;8983:60;;;9095:2;9084:9;9080:18;9067:32;9108:33;9133:7;9108:33;:::i;:::-;8549:675;;;;-1:-1:-1;9160:7:17;;9214:2;9199:18;9186:32;;-1:-1:-1;;8549:675:17:o;9229:388::-;9297:6;9305;9358:2;9346:9;9337:7;9333:23;9329:32;9326:52;;;9374:1;9371;9364:12;9326:52;9413:9;9400:23;9432:31;9457:5;9432:31;:::i;:::-;9482:5;-1:-1:-1;9539:2:17;9524:18;;9511:32;9552:33;9511:32;9552:33;:::i;9622:380::-;9701:1;9697:12;;;;9744;;;9765:61;;9819:4;9811:6;9807:17;9797:27;;9765:61;9872:2;9864:6;9861:14;9841:18;9838:38;9835:161;;;9918:10;9913:3;9909:20;9906:1;9899:31;9953:4;9950:1;9943:15;9981:4;9978:1;9971:15;9835:161;;9622:380;;;:::o;11247:341::-;11449:2;11431:21;;;11488:2;11468:18;;;11461:30;-1:-1:-1;;;11522:2:17;11507:18;;11500:47;11579:2;11564:18;;11247:341::o;11593:127::-;11654:10;11649:3;11645:20;11642:1;11635:31;11685:4;11682:1;11675:15;11709:4;11706:1;11699:15;11725:356;11927:2;11909:21;;;11946:18;;;11939:30;12005:34;12000:2;11985:18;;11978:62;12072:2;12057:18;;11725:356::o;13207:413::-;13409:2;13391:21;;;13448:2;13428:18;;;13421:30;13487:34;13482:2;13467:18;;13460:62;-1:-1:-1;;;13553:2:17;13538:18;;13531:47;13610:3;13595:19;;13207:413::o;16042:127::-;16103:10;16098:3;16094:20;16091:1;16084:31;16134:4;16131:1;16124:15;16158:4;16155:1;16148:15;16174:128;16214:3;16245:1;16241:6;16238:1;16235:13;16232:39;;;16251:18;;:::i;:::-;-1:-1:-1;16287:9:17;;16174:128::o;16307:168::-;16347:7;16413:1;16409;16405:6;16401:14;16398:1;16395:21;16390:1;16383:9;16376:17;16372:45;16369:71;;;16420:18;;:::i;:::-;-1:-1:-1;16460:9:17;;16307:168::o;17296:135::-;17335:3;-1:-1:-1;;17356:17:17;;17353:43;;;17376:18;;:::i;:::-;-1:-1:-1;17423:1:17;17412:13;;17296:135::o;18664:125::-;18704:4;18732:1;18729;18726:8;18723:34;;;18737:18;;:::i;:::-;-1:-1:-1;18774:9:17;;18664:125::o;18794:127::-;18855:10;18850:3;18846:20;18843:1;18836:31;18886:4;18883:1;18876:15;18910:4;18907:1;18900:15;18926:120;18966:1;18992;18982:35;;18997:18;;:::i;:::-;-1:-1:-1;19031:9:17;;18926:120::o;19051:414::-;19253:2;19235:21;;;19292:2;19272:18;;;19265:30;19331:34;19326:2;19311:18;;19304:62;-1:-1:-1;;;19397:2:17;19382:18;;19375:48;19455:3;19440:19;;19051:414::o;19888:470::-;20067:3;20105:6;20099:13;20121:53;20167:6;20162:3;20155:4;20147:6;20143:17;20121:53;:::i;:::-;20237:13;;20196:16;;;;20259:57;20237:13;20196:16;20293:4;20281:17;;20259:57;:::i;:::-;20332:20;;19888:470;-1:-1:-1;;;;19888:470:17:o;20363:489::-;-1:-1:-1;;;;;20632:15:17;;;20614:34;;20684:15;;20679:2;20664:18;;20657:43;20731:2;20716:18;;20709:34;;;20779:3;20774:2;20759:18;;20752:31;;;20557:4;;20800:46;;20826:19;;20818:6;20800:46;:::i;:::-;20792:54;20363:489;-1:-1:-1;;;;;;20363:489:17:o;20857:249::-;20926:6;20979:2;20967:9;20958:7;20954:23;20950:32;20947:52;;;20995:1;20992;20985:12;20947:52;21027:9;21021:16;21046:30;21070:5;21046:30;:::i;21942:112::-;21974:1;22000;21990:35;;22005:18;;:::i;:::-;-1:-1:-1;22039:9:17;;21942:112::o;22059:127::-;22120:10;22115:3;22111:20;22108:1;22101:31;22151:4;22148:1;22141:15;22175:4;22172:1;22165:15
Swarm Source
ipfs://4669086190b80a5b2d6148e6a16ccaba7aa6c7c8935a13801d9593f23eee93ad
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.