ERC-721
Overview
Max Total Supply
15 HONORAIKO
Holders
15
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HONORAIKOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AikoHonorary
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-11 */ // Sources flattened with hardhat v2.9.3 https://hardhat.org // File src/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File src/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File src/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File src/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File src/contracts/tokens/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File src/contracts/tokens/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File src/contracts/tokens/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File src/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File src/contracts/tokens/ERC721Holder.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address, address, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC721Received.selector; } } // File src/contracts/tokens/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, ERC721Holder { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Supply of token. uint256 public totalSupply; // 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 { uint256[] memory ids = new uint256[](1); ids[0] = tokenId; _mintNFTs(to, ids); } function _mintNFTs(address to, uint256[] memory tokenIds) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); uint256 _totalSupply = totalSupply; uint256 _length = tokenIds.length; totalSupply = _totalSupply + _length; _balances[to] += _length; for (uint256 i; i < _length; ++i) { uint256 tokenId = tokenIds[i]; require(!_exists(tokenId), "ERC721: token already minted"); _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File src/contracts/tokens/ERC721URIStorage.sol pragma solidity ^0.8.0; /** * @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]; } } } // File src/contracts/tokens/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File src/contracts/utils/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File src/contracts/AikoHonorary.sol pragma solidity ^0.8.0; contract AikoHonorary is ERC721URIStorage, Ownable { using Strings for string; string public baseURI; mapping(address => bool) public manager; constructor(string memory uri_) Ownable() ERC721("Aiko Virtual - Honorary Edition", "HONORAIKO") { setBaseURI(uri_); } modifier onlyManager() { require(msg.sender == owner() || manager[msg.sender], "not manager"); _; } function setManager(address who, bool managerPower) external onlyOwner { manager[who] = managerPower; } function setApprovalForAll(address /* operator */, bool /* approved */) public virtual override { revert("Cannot approve, transferring not allowed"); } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { revert("Sending not allowed"); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { revert("Sending not allowed"); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { revert("Sending not allowed"); } function setTokenURI(uint256 tokenId, string memory _tokenURI) external onlyManager { _setTokenURI(tokenId, _tokenURI); } function createHonorary(address who, string memory _tokenURI) public onlyManager { uint256 id = totalSupply + 1; _mint(who, id); _setTokenURI(id, _tokenURI); } function adminTransfer(address from, address to, uint256 id) public onlyManager { _transfer(from, to, id); } function createManyHonorary(address[] memory who, string[] memory _tokenURIs) public onlyManager { require(who.length == _tokenURIs.length, "Wrong length"); for (uint256 i; i < who.length; i++) { createHonorary(who[i], _tokenURIs[i]); } } function adminTransferMany(address[] memory froms, address[] memory tos, uint256[] memory ids) public onlyManager { require(froms.length == tos.length, "Wrong length 1"); require(tos.length == ids.length, "Wrong length 2"); for (uint256 i; i < froms.length; i++) { _transfer(froms[i], tos[i], ids[i]); } } function setBaseURI(string memory newURI) public onlyManager { baseURI = newURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"adminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"froms","type":"address[]"},{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"adminTransferMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"createHonorary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"string[]","name":"_tokenURIs","type":"string[]"}],"name":"createManyHonorary","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":"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":"","type":"address"}],"name":"manager","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"managerPower","type":"bool"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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
60806040523480156200001157600080fd5b506040516200259538038062002595833981016040819052620000349162000250565b604080518082018252601f81527f41696b6f205669727475616c202d20486f6e6f726172792045646974696f6e00602080830191825283518085019094526009845268484f4e4f5241494b4f60b81b9084015281519192916200009a91600091620001aa565b508051620000b0906001906020840190620001aa565b5050506000620000c56200012560201b60201c565b600880546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200011e8162000129565b5062000379565b3390565b6008546001600160a01b0316331480620001525750336000908152600a602052604090205460ff165b620001915760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b604482015260640160405180910390fd5b8051620001a6906009906020840190620001aa565b5050565b828054620001b89062000326565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b6000602080838503121562000263578182fd5b82516001600160401b03808211156200027a578384fd5b818501915085601f8301126200028e578384fd5b815181811115620002a357620002a362000363565b604051601f8201601f19908116603f01168101908382118183101715620002ce57620002ce62000363565b816040528281528886848701011115620002e6578687fd5b8693505b82841015620003095784840186015181850187015292850192620002ea565b828411156200031a57868684830101525b98975050505050505050565b600181811c908216806200033b57607f821691505b602082108114156200035d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61220c80620003896000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c80636c0360eb116100f9578063b88d4fde11610097578063d692cc8111610071578063d692cc81146103d2578063da72c1e8146103e5578063e985e9c5146103f8578063f2fde38b1461043457600080fd5b8063b88d4fde1461038e578063c87b56dd1461039c578063d4d2e7f2146103af57600080fd5b80638da5cb5b116100d35780638da5cb5b1461034f57806395d89b4114610360578063a22cb46514610368578063a5e90eee1461037b57600080fd5b80636c0360eb1461032c57806370a0823114610334578063715018a61461034757600080fd5b8063162094c41161016657806323b872dd1161014057806323b872dd146102f357806342842e0e146102f357806355f804b3146103065780636352211e1461031957600080fd5b8063162094c4146102b657806318160ddd146102c95780631c300c2b146102e057600080fd5b8063095ea7b311610197578063095ea7b31461022657806310f480bb1461023b578063150b7a021461024e57600080fd5b806301ffc9a7146101be57806306fdde03146101e6578063081812fc146101fb575b600080fd5b6101d16101cc366004611f2c565b610447565b60405190151581526020015b60405180910390f35b6101ee61052c565b6040516101dd9190612015565b61020e610209366004611f9f565b6105be565b6040516001600160a01b0390911681526020016101dd565b610239610234366004611d53565b610669565b005b610239610249366004611d7c565b61079b565b61028561025c366004611c54565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101dd565b6102396102c4366004611fb7565b610943565b6102d260025481565b6040519081526020016101dd565b6102396102ee366004611d07565b6109b3565b610239610301366004611c19565b610a3c565b610239610314366004611f6c565b610a84565b61020e610327366004611f9f565b610af9565b6101ee610b84565b6102d2610342366004611bcd565b610c12565b610239610cac565b6008546001600160a01b031661020e565b6101ee610d5d565b610239610376366004611ccd565b610d6c565b610239610389366004611ccd565b610dda565b610239610301366004611c54565b6101ee6103aa366004611f9f565b610e7d565b6101d16103bd366004611bcd565b600a6020526000908152604090205460ff1681565b6102396103e0366004611e5a565b611003565b6102396103f3366004611c19565b61112c565b6101d1610406366004611be7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610239610442366004611bcd565b611199565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104da57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061052657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461053b9061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546105679061210c565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661064d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061067482610af9565b9050806001600160a01b0316836001600160a01b031614156106fe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b336001600160a01b038216148061071a575061071a8133610406565b61078c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610644565b61079683836112d8565b505050565b6008546001600160a01b03163314806107c35750336000908152600a602052604090205460ff165b6107fd5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b815183511461084e5760405162461bcd60e51b815260206004820152600e60248201527f57726f6e67206c656e67746820310000000000000000000000000000000000006044820152606401610644565b805182511461089f5760405162461bcd60e51b815260206004820152600e60248201527f57726f6e67206c656e67746820320000000000000000000000000000000000006044820152606401610644565b60005b835181101561093d5761092b8482815181106108ce57634e487b7160e01b600052603260045260246000fd5b60200260200101518483815181106108f657634e487b7160e01b600052603260045260246000fd5b602002602001015184848151811061091e57634e487b7160e01b600052603260045260246000fd5b6020026020010151611353565b8061093581612147565b9150506108a2565b50505050565b6008546001600160a01b031633148061096b5750336000908152600a602052604090205460ff165b6109a55760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b6109af828261152d565b5050565b6008546001600160a01b03163314806109db5750336000908152600a602052604090205460ff165b610a155760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b60006002546001610a26919061209d565b9050610a3283826115d6565b610796818361152d565b60405162461bcd60e51b815260206004820152601360248201527f53656e64696e67206e6f7420616c6c6f776564000000000000000000000000006044820152606401610644565b6008546001600160a01b0316331480610aac5750336000908152600a602052604090205460ff165b610ae65760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b80516109af906009906020840190611a2b565b6000818152600360205260408120546001600160a01b0316806105265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610644565b60098054610b919061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd9061210c565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b60006001600160a01b038216610c905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610644565b506001600160a01b031660009081526004602052604090205490565b6008546001600160a01b03163314610d065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36008805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606001805461053b9061210c565b60405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420617070726f76652c207472616e7366657272696e67206e6f7460448201527f20616c6c6f7765640000000000000000000000000000000000000000000000006064820152608401610644565b6008546001600160a01b03163314610e345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6001600160a01b03919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000818152600360205260409020546060906001600160a01b0316610f0a5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006064820152608401610644565b60008281526007602052604081208054610f239061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f9061210c565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505090506000610fad611630565b9050805160001415610fc0575092915050565b815115610ff2578082604051602001610fda929190611fe6565b60405160208183030381529060405292505050919050565b610ffb8461163f565b949350505050565b6008546001600160a01b031633148061102b5750336000908152600a602052604090205460ff165b6110655760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b80518251146110b65760405162461bcd60e51b815260206004820152600c60248201527f57726f6e67206c656e67746800000000000000000000000000000000000000006044820152606401610644565b60005b82518110156107965761111a8382815181106110e557634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061110d57634e487b7160e01b600052603260045260246000fd5b60200260200101516109b3565b8061112481612147565b9150506110b9565b6008546001600160a01b03163314806111545750336000908152600a602052604090205460ff165b61118e5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b610796838383611353565b6008546001600160a01b031633146111f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6001600160a01b03811661126f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610644565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061131a82610af9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b031661136682610af9565b6001600160a01b0316146113e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610644565b6001600160a01b03821661145d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610644565b6114686000826112d8565b6001600160a01b03831660009081526004602052604081208054600192906114919084906120c9565b90915550506001600160a01b03821660009081526004602052604081208054600192906114bf90849061209d565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600360205260409020546001600160a01b03166115b75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e0000000000000000000000000000000000006064820152608401610644565b6000828152600760209081526040909120825161079692840190611a2b565b60408051600180825281830190925260009160208083019080368337019050509050818160008151811061161a57634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506107968382611728565b60606009805461053b9061210c565b6000818152600360205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610644565b60006116d6611630565b905060008151116116f65760405180602001604052806000815250611721565b80611700846118dd565b604051602001611711929190611fe6565b6040516020818303038152906040525b9392505050565b6001600160a01b03821661177e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610644565b600254815161178d818361209d565b6002556001600160a01b038416600090815260046020526040812080548392906117b890849061209d565b90915550600090505b818110156118d65760008482815181106117eb57634e487b7160e01b600052603260045260246000fd5b60200260200101519050611816816000908152600360205260409020546001600160a01b0316151590565b156118635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610644565b600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038a1690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4506118cf81612147565b90506117c1565b5050505050565b60608161191d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611947578061193181612147565b91506119409050600a836120b5565b9150611921565b60008167ffffffffffffffff81111561197057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561199a576020820181803683370190505b5090505b8415610ffb576119af6001836120c9565b91506119bc600a86612180565b6119c790603061209d565b60f81b8183815181106119ea57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a24600a866120b5565b945061199e565b828054611a379061210c565b90600052602060002090601f016020900481019282611a595760008555611a9f565b82601f10611a7257805160ff1916838001178555611a9f565b82800160010185558215611a9f579182015b82811115611a9f578251825591602001919060010190611a84565b50611aab929150611aaf565b5090565b5b80821115611aab5760008155600101611ab0565b600067ffffffffffffffff831115611ade57611ade6121c0565b611af16020601f19601f86011601612048565b9050828152838383011115611b0557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b3357600080fd5b919050565b600082601f830112611b48578081fd5b81356020611b5d611b5883612079565b612048565b80838252828201915082860187848660051b8901011115611b7c578586fd5b855b85811015611ba157611b8f82611b1c565b84529284019290840190600101611b7e565b5090979650505050505050565b600082601f830112611bbe578081fd5b61172183833560208501611ac4565b600060208284031215611bde578081fd5b61172182611b1c565b60008060408385031215611bf9578081fd5b611c0283611b1c565b9150611c1060208401611b1c565b90509250929050565b600080600060608486031215611c2d578081fd5b611c3684611b1c565b9250611c4460208501611b1c565b9150604084013590509250925092565b60008060008060808587031215611c69578081fd5b611c7285611b1c565b9350611c8060208601611b1c565b925060408501359150606085013567ffffffffffffffff811115611ca2578182fd5b8501601f81018713611cb2578182fd5b611cc187823560208401611ac4565b91505092959194509250565b60008060408385031215611cdf578182fd5b611ce883611b1c565b915060208301358015158114611cfc578182fd5b809150509250929050565b60008060408385031215611d19578182fd5b611d2283611b1c565b9150602083013567ffffffffffffffff811115611d3d578182fd5b611d4985828601611bae565b9150509250929050565b60008060408385031215611d65578182fd5b611d6e83611b1c565b946020939093013593505050565b600080600060608486031215611d90578081fd5b833567ffffffffffffffff80821115611da7578283fd5b611db387838801611b38565b9450602091508186013581811115611dc9578384fd5b611dd588828901611b38565b945050604086013581811115611de9578384fd5b86019050601f81018713611dfb578283fd5b8035611e09611b5882612079565b8082825284820191508484018a868560051b8701011115611e28578687fd5b8694505b83851015611e4a578035835260019490940193918501918501611e2c565b5080955050505050509250925092565b60008060408385031215611e6c578182fd5b823567ffffffffffffffff80821115611e83578384fd5b611e8f86838701611b38565b9350602091508185013581811115611ea5578384fd5b8501601f81018713611eb5578384fd5b8035611ec3611b5882612079565b8082825285820191508584018a878560051b8701011115611ee2578788fd5b875b84811015611f1b57813587811115611efa57898afd5b611f088d8a838a0101611bae565b8552509287019290870190600101611ee4565b50979a909950975050505050505050565b600060208284031215611f3d578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611721578182fd5b600060208284031215611f7d578081fd5b813567ffffffffffffffff811115611f93578182fd5b610ffb84828501611bae565b600060208284031215611fb0578081fd5b5035919050565b60008060408385031215611fc9578182fd5b82359150602083013567ffffffffffffffff811115611d3d578182fd5b60008351611ff88184602088016120e0565b83519083019061200c8183602088016120e0565b01949350505050565b60208152600082518060208401526120348160408501602087016120e0565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715612071576120716121c0565b604052919050565b600067ffffffffffffffff821115612093576120936121c0565b5060051b60200190565b600082198211156120b0576120b0612194565b500190565b6000826120c4576120c46121aa565b500490565b6000828210156120db576120db612194565b500390565b60005b838110156120fb5781810151838201526020016120e3565b8381111561093d5750506000910152565b600181811c9082168061212057607f821691505b6020821081141561214157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561217957612179612194565b5060010190565b60008261218f5761218f6121aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200e6e8a182d43cdd46a9eb19ddeda47da2b6ee74fedf857ada517518ea9ffffb064736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80636c0360eb116100f9578063b88d4fde11610097578063d692cc8111610071578063d692cc81146103d2578063da72c1e8146103e5578063e985e9c5146103f8578063f2fde38b1461043457600080fd5b8063b88d4fde1461038e578063c87b56dd1461039c578063d4d2e7f2146103af57600080fd5b80638da5cb5b116100d35780638da5cb5b1461034f57806395d89b4114610360578063a22cb46514610368578063a5e90eee1461037b57600080fd5b80636c0360eb1461032c57806370a0823114610334578063715018a61461034757600080fd5b8063162094c41161016657806323b872dd1161014057806323b872dd146102f357806342842e0e146102f357806355f804b3146103065780636352211e1461031957600080fd5b8063162094c4146102b657806318160ddd146102c95780631c300c2b146102e057600080fd5b8063095ea7b311610197578063095ea7b31461022657806310f480bb1461023b578063150b7a021461024e57600080fd5b806301ffc9a7146101be57806306fdde03146101e6578063081812fc146101fb575b600080fd5b6101d16101cc366004611f2c565b610447565b60405190151581526020015b60405180910390f35b6101ee61052c565b6040516101dd9190612015565b61020e610209366004611f9f565b6105be565b6040516001600160a01b0390911681526020016101dd565b610239610234366004611d53565b610669565b005b610239610249366004611d7c565b61079b565b61028561025c366004611c54565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101dd565b6102396102c4366004611fb7565b610943565b6102d260025481565b6040519081526020016101dd565b6102396102ee366004611d07565b6109b3565b610239610301366004611c19565b610a3c565b610239610314366004611f6c565b610a84565b61020e610327366004611f9f565b610af9565b6101ee610b84565b6102d2610342366004611bcd565b610c12565b610239610cac565b6008546001600160a01b031661020e565b6101ee610d5d565b610239610376366004611ccd565b610d6c565b610239610389366004611ccd565b610dda565b610239610301366004611c54565b6101ee6103aa366004611f9f565b610e7d565b6101d16103bd366004611bcd565b600a6020526000908152604090205460ff1681565b6102396103e0366004611e5a565b611003565b6102396103f3366004611c19565b61112c565b6101d1610406366004611be7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610239610442366004611bcd565b611199565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104da57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061052657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461053b9061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546105679061210c565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661064d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061067482610af9565b9050806001600160a01b0316836001600160a01b031614156106fe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b336001600160a01b038216148061071a575061071a8133610406565b61078c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610644565b61079683836112d8565b505050565b6008546001600160a01b03163314806107c35750336000908152600a602052604090205460ff165b6107fd5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b815183511461084e5760405162461bcd60e51b815260206004820152600e60248201527f57726f6e67206c656e67746820310000000000000000000000000000000000006044820152606401610644565b805182511461089f5760405162461bcd60e51b815260206004820152600e60248201527f57726f6e67206c656e67746820320000000000000000000000000000000000006044820152606401610644565b60005b835181101561093d5761092b8482815181106108ce57634e487b7160e01b600052603260045260246000fd5b60200260200101518483815181106108f657634e487b7160e01b600052603260045260246000fd5b602002602001015184848151811061091e57634e487b7160e01b600052603260045260246000fd5b6020026020010151611353565b8061093581612147565b9150506108a2565b50505050565b6008546001600160a01b031633148061096b5750336000908152600a602052604090205460ff165b6109a55760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b6109af828261152d565b5050565b6008546001600160a01b03163314806109db5750336000908152600a602052604090205460ff165b610a155760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b60006002546001610a26919061209d565b9050610a3283826115d6565b610796818361152d565b60405162461bcd60e51b815260206004820152601360248201527f53656e64696e67206e6f7420616c6c6f776564000000000000000000000000006044820152606401610644565b6008546001600160a01b0316331480610aac5750336000908152600a602052604090205460ff165b610ae65760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b80516109af906009906020840190611a2b565b6000818152600360205260408120546001600160a01b0316806105265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610644565b60098054610b919061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd9061210c565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b60006001600160a01b038216610c905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610644565b506001600160a01b031660009081526004602052604090205490565b6008546001600160a01b03163314610d065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36008805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606001805461053b9061210c565b60405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420617070726f76652c207472616e7366657272696e67206e6f7460448201527f20616c6c6f7765640000000000000000000000000000000000000000000000006064820152608401610644565b6008546001600160a01b03163314610e345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6001600160a01b03919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000818152600360205260409020546060906001600160a01b0316610f0a5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006064820152608401610644565b60008281526007602052604081208054610f239061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f9061210c565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505090506000610fad611630565b9050805160001415610fc0575092915050565b815115610ff2578082604051602001610fda929190611fe6565b60405160208183030381529060405292505050919050565b610ffb8461163f565b949350505050565b6008546001600160a01b031633148061102b5750336000908152600a602052604090205460ff165b6110655760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b80518251146110b65760405162461bcd60e51b815260206004820152600c60248201527f57726f6e67206c656e67746800000000000000000000000000000000000000006044820152606401610644565b60005b82518110156107965761111a8382815181106110e557634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061110d57634e487b7160e01b600052603260045260246000fd5b60200260200101516109b3565b8061112481612147565b9150506110b9565b6008546001600160a01b03163314806111545750336000908152600a602052604090205460ff165b61118e5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1036b0b730b3b2b960a91b6044820152606401610644565b610796838383611353565b6008546001600160a01b031633146111f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6001600160a01b03811661126f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610644565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061131a82610af9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b031661136682610af9565b6001600160a01b0316146113e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610644565b6001600160a01b03821661145d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610644565b6114686000826112d8565b6001600160a01b03831660009081526004602052604081208054600192906114919084906120c9565b90915550506001600160a01b03821660009081526004602052604081208054600192906114bf90849061209d565b9091555050600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600360205260409020546001600160a01b03166115b75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e0000000000000000000000000000000000006064820152608401610644565b6000828152600760209081526040909120825161079692840190611a2b565b60408051600180825281830190925260009160208083019080368337019050509050818160008151811061161a57634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506107968382611728565b60606009805461053b9061210c565b6000818152600360205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610644565b60006116d6611630565b905060008151116116f65760405180602001604052806000815250611721565b80611700846118dd565b604051602001611711929190611fe6565b6040516020818303038152906040525b9392505050565b6001600160a01b03821661177e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610644565b600254815161178d818361209d565b6002556001600160a01b038416600090815260046020526040812080548392906117b890849061209d565b90915550600090505b818110156118d65760008482815181106117eb57634e487b7160e01b600052603260045260246000fd5b60200260200101519050611816816000908152600360205260409020546001600160a01b0316151590565b156118635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610644565b600081815260036020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038a1690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4506118cf81612147565b90506117c1565b5050505050565b60608161191d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611947578061193181612147565b91506119409050600a836120b5565b9150611921565b60008167ffffffffffffffff81111561197057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561199a576020820181803683370190505b5090505b8415610ffb576119af6001836120c9565b91506119bc600a86612180565b6119c790603061209d565b60f81b8183815181106119ea57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a24600a866120b5565b945061199e565b828054611a379061210c565b90600052602060002090601f016020900481019282611a595760008555611a9f565b82601f10611a7257805160ff1916838001178555611a9f565b82800160010185558215611a9f579182015b82811115611a9f578251825591602001919060010190611a84565b50611aab929150611aaf565b5090565b5b80821115611aab5760008155600101611ab0565b600067ffffffffffffffff831115611ade57611ade6121c0565b611af16020601f19601f86011601612048565b9050828152838383011115611b0557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b3357600080fd5b919050565b600082601f830112611b48578081fd5b81356020611b5d611b5883612079565b612048565b80838252828201915082860187848660051b8901011115611b7c578586fd5b855b85811015611ba157611b8f82611b1c565b84529284019290840190600101611b7e565b5090979650505050505050565b600082601f830112611bbe578081fd5b61172183833560208501611ac4565b600060208284031215611bde578081fd5b61172182611b1c565b60008060408385031215611bf9578081fd5b611c0283611b1c565b9150611c1060208401611b1c565b90509250929050565b600080600060608486031215611c2d578081fd5b611c3684611b1c565b9250611c4460208501611b1c565b9150604084013590509250925092565b60008060008060808587031215611c69578081fd5b611c7285611b1c565b9350611c8060208601611b1c565b925060408501359150606085013567ffffffffffffffff811115611ca2578182fd5b8501601f81018713611cb2578182fd5b611cc187823560208401611ac4565b91505092959194509250565b60008060408385031215611cdf578182fd5b611ce883611b1c565b915060208301358015158114611cfc578182fd5b809150509250929050565b60008060408385031215611d19578182fd5b611d2283611b1c565b9150602083013567ffffffffffffffff811115611d3d578182fd5b611d4985828601611bae565b9150509250929050565b60008060408385031215611d65578182fd5b611d6e83611b1c565b946020939093013593505050565b600080600060608486031215611d90578081fd5b833567ffffffffffffffff80821115611da7578283fd5b611db387838801611b38565b9450602091508186013581811115611dc9578384fd5b611dd588828901611b38565b945050604086013581811115611de9578384fd5b86019050601f81018713611dfb578283fd5b8035611e09611b5882612079565b8082825284820191508484018a868560051b8701011115611e28578687fd5b8694505b83851015611e4a578035835260019490940193918501918501611e2c565b5080955050505050509250925092565b60008060408385031215611e6c578182fd5b823567ffffffffffffffff80821115611e83578384fd5b611e8f86838701611b38565b9350602091508185013581811115611ea5578384fd5b8501601f81018713611eb5578384fd5b8035611ec3611b5882612079565b8082825285820191508584018a878560051b8701011115611ee2578788fd5b875b84811015611f1b57813587811115611efa57898afd5b611f088d8a838a0101611bae565b8552509287019290870190600101611ee4565b50979a909950975050505050505050565b600060208284031215611f3d578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611721578182fd5b600060208284031215611f7d578081fd5b813567ffffffffffffffff811115611f93578182fd5b610ffb84828501611bae565b600060208284031215611fb0578081fd5b5035919050565b60008060408385031215611fc9578182fd5b82359150602083013567ffffffffffffffff811115611d3d578182fd5b60008351611ff88184602088016120e0565b83519083019061200c8183602088016120e0565b01949350505050565b60208152600082518060208401526120348160408501602087016120e0565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715612071576120716121c0565b604052919050565b600067ffffffffffffffff821115612093576120936121c0565b5060051b60200190565b600082198211156120b0576120b0612194565b500190565b6000826120c4576120c46121aa565b500490565b6000828210156120db576120db612194565b500390565b60005b838110156120fb5781810151838201526020016120e3565b8381111561093d5750506000910152565b600181811c9082168061212057607f821691505b6020821081141561214157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561217957612179612194565b5060010190565b60008261218f5761218f6121aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200e6e8a182d43cdd46a9eb19ddeda47da2b6ee74fedf857ada517518ea9ffffb064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri_ (string): ipfs://
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
40988:2524:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21432:305;;;;;;:::i;:::-;;:::i;:::-;;;9205:14:1;;9198:22;9180:41;;9168:2;9153:18;21432:305:0;;;;;;;;22377:100;;;:::i;:::-;;;;;;;:::i;23936:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8973:55:1;;;8955:74;;8943:2;8928:18;23936:221:0;8910:125:1;23459:411:0;;;;;;:::i;:::-;;:::i;:::-;;42980:325;;;;;;:::i;:::-;;:::i;19841:207::-;;;;;;:::i;:::-;20010:30;19841:207;;;;;;;;;;9406:66:1;9394:79;;;9376:98;;9364:2;9349:18;19841:207:0;9331:149:1;42295:126:0;;;;;;:::i;:::-;;:::i;20652:26::-;;;;;;;;;17813:25:1;;;17801:2;17786:18;20652:26:0;17768:76:1;42426:170:0;;;;;;:::i;:::-;;:::i;41708:144::-;;;;;;:::i;:::-;;:::i;43311:90::-;;;;;;:::i;:::-;;:::i;22071:239::-;;;;;;:::i;:::-;;:::i;41074:21::-;;;:::i;21801:208::-;;;;;;:::i;:::-;;:::i;40365:148::-;;;:::i;39714:87::-;39787:6;;-1:-1:-1;;;;;39787:6:0;39714:87;;22546:104;;;:::i;41497:156::-;;;;;;:::i;:::-;;:::i;41384:108::-;;;;;;:::i;:::-;;:::i;42118:172::-;;;;;;:::i;34356:679::-;;;;;;:::i;:::-;;:::i;41099:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;42720:255;;;;;;:::i;:::-;;:::i;42601:113::-;;;;;;:::i;:::-;;:::i;24595:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24716:25:0;;;24692:4;24716:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24595:164;40668:244;;;;;;:::i;:::-;;:::i;21432:305::-;21534:4;21571:40;;;21586:25;21571:40;;:105;;-1:-1:-1;21628:48:0;;;21643:33;21628:48;21571:105;:158;;;-1:-1:-1;19286:25:0;19271:40;;;;21693:36;21551:178;21432:305;-1:-1:-1;;21432:305:0:o;22377:100::-;22431:13;22464:5;22457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22377:100;:::o;23936:221::-;24012:7;27419:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27419:16:0;24032:73;;;;-1:-1:-1;;;24032:73:0;;14493:2:1;24032:73:0;;;14475:21:1;14532:2;14512:18;;;14505:30;14571:34;14551:18;;;14544:62;14642:14;14622:18;;;14615:42;14674:19;;24032:73:0;;;;;;;;;-1:-1:-1;24125:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24125:24:0;;23936:221::o;23459:411::-;23540:13;23556:23;23571:7;23556:14;:23::i;:::-;23540:39;;23604:5;-1:-1:-1;;;;;23598:11:0;:2;-1:-1:-1;;;;;23598:11:0;;;23590:57;;;;-1:-1:-1;;;23590:57:0;;16436:2:1;23590:57:0;;;16418:21:1;16475:2;16455:18;;;16448:30;16514:34;16494:18;;;16487:62;16585:3;16565:18;;;16558:31;16606:19;;23590:57:0;16408:223:1;23590:57:0;8800:10;-1:-1:-1;;;;;23682:21:0;;;;:62;;-1:-1:-1;23707:37:0;23724:5;8800:10;24595:164;:::i;23707:37::-;23660:168;;;;-1:-1:-1;;;23660:168:0;;11712:2:1;23660:168:0;;;11694:21:1;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;11861:26;11841:18;;;11834:54;11905:19;;23660:168:0;11684:246:1;23660:168:0;23841:21;23850:2;23854:7;23841:8;:21::i;:::-;23459:411;;;:::o;42980:325::-;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;43123:3:::1;:10;43107:5;:12;:26;43099:53;;;::::0;-1:-1:-1;;;43099:53:0;;17186:2:1;43099:53:0::1;::::0;::::1;17168:21:1::0;17225:2;17205:18;;;17198:30;17264:16;17244:18;;;17237:44;17298:18;;43099:53:0::1;17158:164:1::0;43099:53:0::1;43179:3;:10;43165:3;:10;:24;43157:51;;;::::0;-1:-1:-1;;;43157:51:0;;15267:2:1;43157:51:0::1;::::0;::::1;15249:21:1::0;15306:2;15286:18;;;15279:30;15345:16;15325:18;;;15318:44;15379:18;;43157:51:0::1;15239:164:1::0;43157:51:0::1;43220:9;43215:86;43235:5;:12;43231:1;:16;43215:86;;;43260:35;43270:5;43276:1;43270:8;;;;;;-1:-1:-1::0;;;43270:8:0::1;;;;;;;;;;;;;;;43280:3;43284:1;43280:6;;;;;;-1:-1:-1::0;;;43280:6:0::1;;;;;;;;;;;;;;;43288:3;43292:1;43288:6;;;;;;-1:-1:-1::0;;;43288:6:0::1;;;;;;;;;;;;;;;43260:9;:35::i;:::-;43249:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43215:86;;;;42980:325:::0;;;:::o;42295:126::-;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;42384:32:::1;42397:7;42406:9;42384:12;:32::i;:::-;42295:126:::0;;:::o;42426:170::-;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;42512:10:::1;42525:11;;42539:1;42525:15;;;;:::i;:::-;42512:28;;42545:14;42551:3;42556:2;42545:5;:14::i;:::-;42564:27;42577:2;42581:9;42564:12;:27::i;41708:144::-:0;41818:29;;-1:-1:-1;;;41818:29:0;;16838:2:1;41818:29:0;;;16820:21:1;16877:2;16857:18;;;16850:30;16916:21;16896:18;;;16889:49;16955:18;;41818:29:0;16810:169:1;43311:90:0;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;43379:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;22071:239::-:0;22143:7;22179:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22179:16:0;22214:19;22206:73;;;;-1:-1:-1;;;22206:73:0;;12548:2:1;22206:73:0;;;12530:21:1;12587:2;12567:18;;;12560:30;12626:34;12606:18;;;12599:62;12697:11;12677:18;;;12670:39;12726:19;;22206:73:0;12520:231:1;41074:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21801:208::-;21873:7;-1:-1:-1;;;;;21901:19:0;;21893:74;;;;-1:-1:-1;;;21893:74:0;;12137:2:1;21893:74:0;;;12119:21:1;12176:2;12156:18;;;12149:30;12215:34;12195:18;;;12188:62;12286:12;12266:18;;;12259:40;12316:19;;21893:74:0;12109:232:1;21893:74:0;-1:-1:-1;;;;;;21985:16:0;;;;;:9;:16;;;;;;;21801:208::o;40365:148::-;39787:6;;-1:-1:-1;;;;;39787:6:0;8800:10;39934:23;39926:68;;;;-1:-1:-1;;;39926:68:0;;14906:2:1;39926:68:0;;;14888:21:1;;;14925:18;;;14918:30;14984:34;14964:18;;;14957:62;15036:18;;39926:68:0;14878:182:1;39926:68:0;40456:6:::1;::::0;40435:40:::1;::::0;40472:1:::1;::::0;-1:-1:-1;;;;;40456:6:0::1;::::0;40435:40:::1;::::0;40472:1;;40435:40:::1;40486:6;:19:::0;;-1:-1:-1;;40486:19:0::1;::::0;;40365:148::o;22546:104::-;22602:13;22635:7;22628:14;;;;;:::i;41497:156::-;41598:50;;-1:-1:-1;;;41598:50:0;;10898:2:1;41598:50:0;;;10880:21:1;10937:2;10917:18;;;10910:30;10976:34;10956:18;;;10949:62;11047:10;11027:18;;;11020:38;11075:19;;41598:50:0;10870:230:1;41384:108:0;39787:6;;-1:-1:-1;;;;;39787:6:0;8800:10;39934:23;39926:68;;;;-1:-1:-1;;;39926:68:0;;14906:2:1;39926:68:0;;;14888:21:1;;;14925:18;;;14918:30;14984:34;14964:18;;;14957:62;15036:18;;39926:68:0;14878:182:1;39926:68:0;-1:-1:-1;;;;;41460:12:0;;;::::1;;::::0;;;:7:::1;:12;::::0;;;;:27;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;41384:108::o;34356:679::-;27395:4;27419:16;;;:7;:16;;;;;;34429:13;;-1:-1:-1;;;;;27419:16:0;34455:78;;;;-1:-1:-1;;;34455:78:0;;14075:2:1;34455:78:0;;;14057:21:1;14114:2;14094:18;;;14087:30;14153:34;14133:18;;;14126:62;14224:19;14204:18;;;14197:47;14261:19;;34455:78:0;14047:239:1;34455:78:0;34546:23;34572:19;;;:10;:19;;;;;34546:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34602:18;34623:10;:8;:10::i;:::-;34602:31;;34715:4;34709:18;34731:1;34709:23;34705:72;;;-1:-1:-1;34756:9:0;34356:679;-1:-1:-1;;34356:679:0:o;34705:72::-;34881:23;;:27;34877:108;;34956:4;34962:9;34939:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34925:48;;;;34356:679;;;:::o;34877:108::-;35004:23;35019:7;35004:14;:23::i;:::-;34997:30;34356:679;-1:-1:-1;;;;34356:679:0:o;42720:255::-;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;42844:10:::1;:17;42830:3;:10;:31;42822:56;;;::::0;-1:-1:-1;;;42822:56:0;;13373:2:1;42822:56:0::1;::::0;::::1;13355:21:1::0;13412:2;13392:18;;;13385:30;13451:14;13431:18;;;13424:42;13483:18;;42822:56:0::1;13345:162:1::0;42822:56:0::1;42890:9;42885:86;42905:3;:10;42901:1;:14;42885:86;;;42928:37;42943:3;42947:1;42943:6;;;;;;-1:-1:-1::0;;;42943:6:0::1;;;;;;;;;;;;;;;42951:10;42962:1;42951:13;;;;;;-1:-1:-1::0;;;42951:13:0::1;;;;;;;;;;;;;;;42928:14;:37::i;:::-;42917:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42885:86;;42601:113:::0;39787:6;;-1:-1:-1;;;;;39787:6:0;41308:10;:21;;:44;;-1:-1:-1;41341:10:0;41333:19;;;;:7;:19;;;;;;;;41308:44;41300:68;;;;-1:-1:-1;;;41300:68:0;;17529:2:1;41300:68:0;;;17511:21:1;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:1;;;17580:41;17638:18;;41300:68:0;17501:161:1;41300:68:0;42686:23:::1;42696:4;42702:2;42706;42686:9;:23::i;40668:244::-:0;39787:6;;-1:-1:-1;;;;;39787:6:0;8800:10;39934:23;39926:68;;;;-1:-1:-1;;;39926:68:0;;14906:2:1;39926:68:0;;;14888:21:1;;;14925:18;;;14918:30;14984:34;14964:18;;;14957:62;15036:18;;39926:68:0;14878:182:1;39926:68:0;-1:-1:-1;;;;;40757:22:0;::::1;40749:73;;;::::0;-1:-1:-1;;;40749:73:0;;10134:2:1;40749:73:0::1;::::0;::::1;10116:21:1::0;10173:2;10153:18;;;10146:30;10212:34;10192:18;;;10185:62;10283:8;10263:18;;;10256:36;10309:19;;40749:73:0::1;10106:228:1::0;40749:73:0::1;40859:6;::::0;40838:38:::1;::::0;-1:-1:-1;;;;;40838:38:0;;::::1;::::0;40859:6:::1;::::0;40838:38:::1;::::0;40859:6:::1;::::0;40838:38:::1;40887:6;:17:::0;;-1:-1:-1;;40887:17:0::1;-1:-1:-1::0;;;;;40887:17:0;;;::::1;::::0;;;::::1;::::0;;40668:244::o;31715:174::-;31790:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;31790:29:0;-1:-1:-1;;;;;31790:29:0;;;;;;;;:24;;31844:23;31790:24;31844:14;:23::i;:::-;-1:-1:-1;;;;;31835:46:0;;;;;;;;;;;31715:174;;:::o;31019:578::-;31178:4;-1:-1:-1;;;;;31151:31:0;:23;31166:7;31151:14;:23::i;:::-;-1:-1:-1;;;;;31151:31:0;;31143:85;;;;-1:-1:-1;;;31143:85:0;;15610:2:1;31143:85:0;;;15592:21:1;15649:2;15629:18;;;15622:30;15688:34;15668:18;;;15661:62;15759:11;15739:18;;;15732:39;15788:19;;31143:85:0;15582:231:1;31143:85:0;-1:-1:-1;;;;;31247:16:0;;31239:65;;;;-1:-1:-1;;;31239:65:0;;11307:2:1;31239:65:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;11456:6;11436:18;;;11429:34;11480:19;;31239:65:0;11279:226:1;31239:65:0;31421:29;31438:1;31442:7;31421:8;:29::i;:::-;-1:-1:-1;;;;;31463:15:0;;;;;;:9;:15;;;;;:20;;31482:1;;31463:15;:20;;31482:1;;31463:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31494:13:0;;;;;;:9;:13;;;;;:18;;31511:1;;31494:13;:18;;31511:1;;31494:18;:::i;:::-;;;;-1:-1:-1;;31523:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;31523:21:0;-1:-1:-1;;;;;31523:21:0;;;;;;;;;31562:27;;31523:16;;31562:27;;;;;;;31019:578;;;:::o;35191:217::-;27395:4;27419:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27419:16:0;35283:75;;;;-1:-1:-1;;;35283:75:0;;12958:2:1;35283:75:0;;;12940:21:1;12997:2;12977:18;;;12970:30;13036:34;13016:18;;;13009:62;13107:16;13087:18;;;13080:44;13141:19;;35283:75:0;12930:236:1;35283:75:0;35369:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;29308:175::-;29403:16;;;29417:1;29403:16;;;;;;;;;29380:20;;29403:16;;;;;;;;;;;-1:-1:-1;29403:16:0;29380:39;;29439:7;29430:3;29434:1;29430:6;;;;;;-1:-1:-1;;;29430:6:0;;;;;;;;;;;;;;:16;;;;;29457:18;29467:2;29471:3;29457:9;:18::i;43407:102::-;43467:13;43496:7;43489:14;;;;;:::i;22721:334::-;27395:4;27419:16;;;:7;:16;;;;;;22794:13;;-1:-1:-1;;;;;27419:16:0;22820:76;;;;-1:-1:-1;;;22820:76:0;;16020:2:1;22820:76:0;;;16002:21:1;16059:2;16039:18;;;16032:30;16098:34;16078:18;;;16071:62;16169:17;16149:18;;;16142:45;16204:19;;22820:76:0;15992:237:1;22820:76:0;22909:21;22933:10;:8;:10::i;:::-;22909:34;;22985:1;22967:7;22961:21;:25;:86;;;;;;;;;;;;;;;;;23013:7;23022:18;:7;:16;:18::i;:::-;22996:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22961:86;22954:93;22721:334;-1:-1:-1;;;22721:334:0:o;29491:602::-;-1:-1:-1;;;;;29585:16:0;;29577:61;;;;-1:-1:-1;;;29577:61:0;;13714:2:1;29577:61:0;;;13696:21:1;;;13733:18;;;13726:30;13792:34;13772:18;;;13765:62;13844:18;;29577:61:0;13686:182:1;29577:61:0;29674:11;;29714:15;;29756:22;29714:15;29674:11;29756:22;:::i;:::-;29742:11;:36;-1:-1:-1;;;;;29789:13:0;;;;;;:9;:13;;;;;:24;;29806:7;;29789:13;:24;;29806:7;;29789:24;:::i;:::-;;;;-1:-1:-1;29839:9:0;;-1:-1:-1;29834:252:0;29854:7;29850:1;:11;29834:252;;;29883:15;29901:8;29910:1;29901:11;;;;;;-1:-1:-1;;;29901:11:0;;;;;;;;;;;;;;;29883:29;;29936:16;29944:7;27395:4;27419:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27419:16:0;:30;;;27330:127;29936:16;29935:17;29927:58;;;;-1:-1:-1;;;29927:58:0;;10541:2:1;29927:58:0;;;10523:21:1;10580:2;10560:18;;;10553:30;10619;10599:18;;;10592:58;10667:18;;29927:58:0;10513:178:1;29927:58:0;30000:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30000:21:0;-1:-1:-1;;;;;30000:21:0;;;;;;;;30041:33;;30000:16;;;30041:33;;30000:16;;30041:33;-1:-1:-1;29863:3:0;;;:::i;:::-;;;29834:252;;;;29491:602;;;;:::o;9362:723::-;9418:13;9639:10;9635:53;;-1:-1:-1;;9666:10:0;;;;;;;;;;;;;;;;;;9362:723::o;9635:53::-;9713:5;9698:12;9754:78;9761:9;;9754:78;;9787:8;;;;:::i;:::-;;-1:-1:-1;9810:10:0;;-1:-1:-1;9818:2:0;9810:10;;:::i;:::-;;;9754:78;;;9842:19;9874:6;9864:17;;;;;;-1:-1:-1;;;9864:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9864:17:0;;9842:39;;9892:154;9899:10;;9892:154;;9926:11;9936:1;9926:11;;:::i;:::-;;-1:-1:-1;9995:10:0;10003:2;9995:5;:10;:::i;:::-;9982:24;;:2;:24;:::i;:::-;9969:39;;9952:6;9959;9952:14;;;;;;-1:-1:-1;;;9952:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;10023:11:0;10032:2;10023:11;;:::i;:::-;;;9892:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:116;282:4;-1:-1:-1;;208:2:1;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:2;;;368:1;365;358:12;327:2;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;88:391;;;;;:::o;484:196::-;552:20;;-1:-1:-1;;;;;601:54:1;;591:65;;581:2;;670:1;667;660:12;581:2;533:147;;;:::o;685:699::-;739:5;792:3;785:4;777:6;773:17;769:27;759:2;;814:5;807;800:20;759:2;854:6;841:20;880:4;904:60;920:43;960:2;920:43;:::i;:::-;904:60;:::i;:::-;986:3;1010:2;1005:3;998:15;1038:2;1033:3;1029:12;1022:19;;1073:2;1065:6;1061:15;1125:3;1120:2;1114;1111:1;1107:10;1099:6;1095:23;1091:32;1088:41;1085:2;;;1146:5;1139;1132:20;1085:2;1172:5;1186:169;1200:2;1197:1;1194:9;1186:169;;;1257:23;1276:3;1257:23;:::i;:::-;1245:36;;1301:12;;;;1333;;;;1218:1;1211:9;1186:169;;;-1:-1:-1;1373:5:1;;749:635;-1:-1:-1;;;;;;;749:635:1:o;1389:229::-;1432:5;1485:3;1478:4;1470:6;1466:17;1462:27;1452:2;;1507:5;1500;1493:20;1452:2;1533:79;1608:3;1599:6;1586:20;1579:4;1571:6;1567:17;1533:79;:::i;1623:196::-;1682:6;1735:2;1723:9;1714:7;1710:23;1706:32;1703:2;;;1756:6;1748;1741:22;1703:2;1784:29;1803:9;1784:29;:::i;1824:270::-;1892:6;1900;1953:2;1941:9;1932:7;1928:23;1924:32;1921:2;;;1974:6;1966;1959:22;1921:2;2002:29;2021:9;2002:29;:::i;:::-;1992:39;;2050:38;2084:2;2073:9;2069:18;2050:38;:::i;:::-;2040:48;;1911:183;;;;;:::o;2099:338::-;2176:6;2184;2192;2245:2;2233:9;2224:7;2220:23;2216:32;2213:2;;;2266:6;2258;2251:22;2213:2;2294:29;2313:9;2294:29;:::i;:::-;2284:39;;2342:38;2376:2;2365:9;2361:18;2342:38;:::i;:::-;2332:48;;2427:2;2416:9;2412:18;2399:32;2389:42;;2203:234;;;;;:::o;2442:696::-;2537:6;2545;2553;2561;2614:3;2602:9;2593:7;2589:23;2585:33;2582:2;;;2636:6;2628;2621:22;2582:2;2664:29;2683:9;2664:29;:::i;:::-;2654:39;;2712:38;2746:2;2735:9;2731:18;2712:38;:::i;:::-;2702:48;;2797:2;2786:9;2782:18;2769:32;2759:42;;2852:2;2841:9;2837:18;2824:32;2879:18;2871:6;2868:30;2865:2;;;2916:6;2908;2901:22;2865:2;2944:22;;2997:4;2989:13;;2985:27;-1:-1:-1;2975:2:1;;3031:6;3023;3016:22;2975:2;3059:73;3124:7;3119:2;3106:16;3101:2;3097;3093:11;3059:73;:::i;:::-;3049:83;;;2572:566;;;;;;;:::o;3143:367::-;3208:6;3216;3269:2;3257:9;3248:7;3244:23;3240:32;3237:2;;;3290:6;3282;3275:22;3237:2;3318:29;3337:9;3318:29;:::i;:::-;3308:39;;3397:2;3386:9;3382:18;3369:32;3444:5;3437:13;3430:21;3423:5;3420:32;3410:2;;3471:6;3463;3456:22;3410:2;3499:5;3489:15;;;3227:283;;;;;:::o;3515:416::-;3593:6;3601;3654:2;3642:9;3633:7;3629:23;3625:32;3622:2;;;3675:6;3667;3660:22;3622:2;3703:29;3722:9;3703:29;:::i;:::-;3693:39;;3783:2;3772:9;3768:18;3755:32;3810:18;3802:6;3799:30;3796:2;;;3847:6;3839;3832:22;3796:2;3875:50;3917:7;3908:6;3897:9;3893:22;3875:50;:::i;:::-;3865:60;;;3612:319;;;;;:::o;3936:264::-;4004:6;4012;4065:2;4053:9;4044:7;4040:23;4036:32;4033:2;;;4086:6;4078;4071:22;4033:2;4114:29;4133:9;4114:29;:::i;:::-;4104:39;4190:2;4175:18;;;;4162:32;;-1:-1:-1;;;4023:177:1:o;4205:1440::-;4357:6;4365;4373;4426:2;4414:9;4405:7;4401:23;4397:32;4394:2;;;4447:6;4439;4432:22;4394:2;4492:9;4479:23;4521:18;4562:2;4554:6;4551:14;4548:2;;;4583:6;4575;4568:22;4548:2;4611:61;4664:7;4655:6;4644:9;4640:22;4611:61;:::i;:::-;4601:71;;4691:2;4681:12;;4746:2;4735:9;4731:18;4718:32;4775:2;4765:8;4762:16;4759:2;;;4796:6;4788;4781:22;4759:2;4824:63;4879:7;4868:8;4857:9;4853:24;4824:63;:::i;:::-;4814:73;;;4940:2;4929:9;4925:18;4912:32;4969:2;4959:8;4956:16;4953:2;;;4990:6;4982;4975:22;4953:2;5018:24;;;-1:-1:-1;5073:4:1;5065:13;;5061:27;-1:-1:-1;5051:2:1;;5107:6;5099;5092:22;5051:2;5148;5135:16;5171:60;5187:43;5227:2;5187:43;:::i;5171:60::-;5253:3;5277:2;5272:3;5265:15;5305:2;5300:3;5296:12;5289:19;;5336:2;5332;5328:11;5384:7;5379:2;5373;5370:1;5366:10;5362:2;5358:19;5354:28;5351:41;5348:2;;;5410:6;5402;5395:22;5348:2;5437:6;5428:15;;5452:163;5466:2;5463:1;5460:9;5452:163;;;5523:17;;5511:30;;5484:1;5477:9;;;;;5561:12;;;;5593;;5452:163;;;5456:3;5634:5;5624:15;;;;;;;4384:1261;;;;;:::o;5650:1365::-;5778:6;5786;5839:2;5827:9;5818:7;5814:23;5810:32;5807:2;;;5860:6;5852;5845:22;5807:2;5905:9;5892:23;5934:18;5975:2;5967:6;5964:14;5961:2;;;5996:6;5988;5981:22;5961:2;6024:61;6077:7;6068:6;6057:9;6053:22;6024:61;:::i;:::-;6014:71;;6104:2;6094:12;;6159:2;6148:9;6144:18;6131:32;6188:2;6178:8;6175:16;6172:2;;;6209:6;6201;6194:22;6172:2;6237:24;;6292:4;6284:13;;6280:27;-1:-1:-1;6270:2:1;;6326:6;6318;6311:22;6270:2;6367;6354:16;6390:60;6406:43;6446:2;6406:43;:::i;6390:60::-;6472:3;6496:2;6491:3;6484:15;6524:2;6519:3;6515:12;6508:19;;6555:2;6551;6547:11;6603:7;6598:2;6592;6589:1;6585:10;6581:2;6577:19;6573:28;6570:41;6567:2;;;6629:6;6621;6614:22;6567:2;6656:6;6671:314;6685:2;6682:1;6679:9;6671:314;;;6762:3;6749:17;6798:2;6785:11;6782:19;6779:2;;;6819:6;6811;6804:22;6779:2;6853:57;6902:7;6897:2;6883:11;6879:2;6875:20;6871:29;6853:57;:::i;:::-;6841:70;;-1:-1:-1;6931:12:1;;;;6963;;;;6703:1;6696:9;6671:314;;;-1:-1:-1;5797:1218:1;;7004:5;;-1:-1:-1;5797:1218:1;-1:-1:-1;;;;;;;;5797:1218:1:o;7020:352::-;7078:6;7131:2;7119:9;7110:7;7106:23;7102:32;7099:2;;;7152:6;7144;7137:22;7099:2;7196:9;7183:23;7246:66;7239:5;7235:78;7228:5;7225:89;7215:2;;7333:6;7325;7318:22;7377:342;7446:6;7499:2;7487:9;7478:7;7474:23;7470:32;7467:2;;;7520:6;7512;7505:22;7467:2;7565:9;7552:23;7598:18;7590:6;7587:30;7584:2;;;7635:6;7627;7620:22;7584:2;7663:50;7705:7;7696:6;7685:9;7681:22;7663:50;:::i;7724:190::-;7783:6;7836:2;7824:9;7815:7;7811:23;7807:32;7804:2;;;7857:6;7849;7842:22;7804:2;-1:-1:-1;7885:23:1;;7794:120;-1:-1:-1;7794:120:1:o;7919:410::-;7997:6;8005;8058:2;8046:9;8037:7;8033:23;8029:32;8026:2;;;8079:6;8071;8064:22;8026:2;8120:9;8107:23;8097:33;;8181:2;8170:9;8166:18;8153:32;8208:18;8200:6;8197:30;8194:2;;;8245:6;8237;8230:22;8334:470;8513:3;8551:6;8545:13;8567:53;8613:6;8608:3;8601:4;8593:6;8589:17;8567:53;:::i;:::-;8683:13;;8642:16;;;;8705:57;8683:13;8642:16;8739:4;8727:17;;8705:57;:::i;:::-;8778:20;;8521:283;-1:-1:-1;;;;8521:283:1:o;9485:442::-;9634:2;9623:9;9616:21;9597:4;9666:6;9660:13;9709:6;9704:2;9693:9;9689:18;9682:34;9725:66;9784:6;9779:2;9768:9;9764:18;9759:2;9751:6;9747:15;9725:66;:::i;:::-;9843:2;9831:15;-1:-1:-1;;9827:88:1;9812:104;;;;9918:2;9808:113;;9606:321;-1:-1:-1;;9606:321:1:o;17849:334::-;17920:2;17914:9;17976:2;17966:13;;-1:-1:-1;;17962:86:1;17950:99;;18079:18;18064:34;;18100:22;;;18061:62;18058:2;;;18126:18;;:::i;:::-;18162:2;18155:22;17894:289;;-1:-1:-1;17894:289:1:o;18188:183::-;18248:4;18281:18;18273:6;18270:30;18267:2;;;18303:18;;:::i;:::-;-1:-1:-1;18348:1:1;18344:14;18360:4;18340:25;;18257:114::o;18376:128::-;18416:3;18447:1;18443:6;18440:1;18437:13;18434:2;;;18453:18;;:::i;:::-;-1:-1:-1;18489:9:1;;18424:80::o;18509:120::-;18549:1;18575;18565:2;;18580:18;;:::i;:::-;-1:-1:-1;18614:9:1;;18555:74::o;18634:125::-;18674:4;18702:1;18699;18696:8;18693:2;;;18707:18;;:::i;:::-;-1:-1:-1;18744:9:1;;18683:76::o;18764:258::-;18836:1;18846:113;18860:6;18857:1;18854:13;18846:113;;;18936:11;;;18930:18;18917:11;;;18910:39;18882:2;18875:10;18846:113;;;18977:6;18974:1;18971:13;18968:2;;;-1:-1:-1;;19012:1:1;18994:16;;18987:27;18817:205::o;19027:437::-;19106:1;19102:12;;;;19149;;;19170:2;;19224:4;19216:6;19212:17;19202:27;;19170:2;19277;19269:6;19266:14;19246:18;19243:38;19240:2;;;-1:-1:-1;;;19311:1:1;19304:88;19415:4;19412:1;19405:15;19443:4;19440:1;19433:15;19240:2;;19082:382;;;:::o;19469:195::-;19508:3;19539:66;19532:5;19529:77;19526:2;;;19609:18;;:::i;:::-;-1:-1:-1;19656:1:1;19645:13;;19516:148::o;19669:112::-;19701:1;19727;19717:2;;19732:18;;:::i;:::-;-1:-1:-1;19766:9:1;;19707:74::o;19786:184::-;-1:-1:-1;;;19835:1:1;19828:88;19935:4;19932:1;19925:15;19959:4;19956:1;19949:15;19975:184;-1:-1:-1;;;20024:1:1;20017:88;20124:4;20121:1;20114:15;20148:4;20145:1;20138:15;20164:184;-1:-1:-1;;;20213:1:1;20206:88;20313:4;20310:1;20303:15;20337:4;20334:1;20327:15
Swarm Source
ipfs://0e6e8a182d43cdd46a9eb19ddeda47da2b6ee74fedf857ada517518ea9ffffb0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.