ERC-721
Overview
Max Total Supply
75 NFT@Vault by 500px
Holders
21
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 NFT@Vault by 500pxLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
VcgERC721TokenWithRoyalty
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. * @notice Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ /* function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); }*/ /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } /** * @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; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } interface IVcgERC721Token is IERC721Enumerable { function getBaseTokenURI() external view returns (string memory); function setBaseTokenURI(string memory url) external; function tokenURI(uint256 tokenId) external view returns (string memory); function isVcgNftToken(address tokenAddress) external view returns(bool); function isApprovedOrOwner(address spender, uint256 tokenId) external view returns (bool); function exists(uint256 tokenId) external view returns (bool); } /** * @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; } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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); } /** * @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); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; //Base URI ,added by alan string private _baseTokenURI; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _baseTokenURI = "https://500px.com/vault/nft/nft721/"; } /** * @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 ""; return _baseTokenURI; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).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 {} } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract VcgERC721Token is IVcgERC721Token, ERC721Enumerable, Ownable { using Strings for string; using SafeMath for *; string private _baseTokenURI; string constant private _NFT_NAME = "Vault by 500px's NFT"; string constant private _NFT_SYMBOL = "NFT@Vault by 500px"; constructor() ERC721(_NFT_NAME, _NFT_SYMBOL) { _baseTokenURI = "https://vault.world/nft/721/"; } /** * @dev Mints a token to an address with a tokenURI. * @param to address of the future owner of the token */ function mintTo(address to) public onlyOwner returns (uint256){ uint256 newTokenId = _getNextTokenId(); _mint(to, newTokenId); //2021-10-08 , return New TokenID return newTokenId; } /** * @dev calculates the next token ID based on _currentTokenId * @return uint256 for the next token ID */ function _getNextTokenId() /**private**/internal view returns (uint256) { return totalSupply().add(1); } /** * @dev get getBaseTokenURI * @return string of _baseTokenURI */ function getBaseTokenURI() public view override returns (string memory) { return _baseTokenURI; } /** * @dev setBaseTokenURI * @param url string of baseTokenURI */ function setBaseTokenURI(string memory url) public override onlyOwner() { _baseTokenURI = url; } /** * @dev get baseTokenURI * @param tokenId uint256 ID of the token to query * @return string of TokenURI */ function tokenURI(uint256 tokenId) override(IVcgERC721Token, ERC721) virtual public view returns (string memory) { return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId))); } /** * @dev See {IERC165-supportsInterface}. * @param interfaceId qeSelector */ function supportsInterface(bytes4 interfaceId) public view override(IERC165, ERC721Enumerable) returns (bool) { return interfaceId == type(IVcgERC721Token).interfaceId || super.supportsInterface(interfaceId); } function isVcgNftToken(address tokenAddress) public view override(IVcgERC721Token)returns(bool) { if( !Address.isContract(tokenAddress) ) { return false; } bool result = false; string memory name = VcgERC721Token(tokenAddress).name(); string memory symbol = VcgERC721Token(tokenAddress).symbol(); result = (keccak256(abi.encodePacked(name)) == keccak256(abi.encodePacked(_NFT_NAME))) && (keccak256(abi.encodePacked(symbol)) == keccak256(abi.encodePacked(_NFT_SYMBOL))) && (supportsInterface(type(IVcgERC721Token).interfaceId) ); return result; } function isApprovedOrOwner(address spender, uint256 tokenId) external view override returns (bool) { if(!_exists(tokenId) || (address(0) == spender)) { return(false); } return super._isApprovedOrOwner(spender, tokenId); } function exists(uint256 tokenId) external view override returns (bool) { return(_exists(tokenId)); } } //pragma solidity ^0.6.0; /** * @dev Implementation of royalties for 721s * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2981.md */ interface IERC2981 { // ERC165 bytes to add to interface array - set in parent contract // implementing this standard // // bytes4(keccak256("royaltyInfo(uint256)")) == 0xcef6d368 // bytes4(keccak256("onRoyaltiesReceived(address,address,uint256,address,uint256,bytes32)")) == 0xe8cb9d99 // bytes4(0xcef6d368) ^ bytes4(0xe8cb9d99) == 0x263d4ef1 // bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x263d4ef1; // _registerInterface(_INTERFACE_ID_ERC721ROYALTIES); // @notice Called to return both the creator's address and the royalty percentage // @param _tokenId - the NFT asset queried for royalty information // @return receiver - address of who should be sent the royalty payment // @return amount - a percentage calculated as a fixed point // with a scaling factor of 100000 (5 decimals), such that // 100% would be the value 10000000, as 10000000/100000 = 100. // 1% would be the value 100000, as 100000/100000 = 1 function royaltyInfo(uint256 _tokenId) external view returns (address receiver, uint256 amount); /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); // @notice Called when royalty is transferred to the receiver. This // emits the RoyaltiesReceived event as we want the NFT contract // itself to contain the event for easy tracking by royalty receivers. // @param _royaltyRecipient - The address of who is entitled to the // royalties as specified by royaltyInfo(). // @param _buyer - If known, the address buying the NFT on a secondary // sale. 0x0 if not known. // @param _tokenId - the ID of the ERC-721 token that was sold // @param _tokenPaid - The address of the ERC-20 token used to pay the // royalty fee amount. Set to 0x0 if paid in the // native asset (ETH). // @param _amount - The amount being paid to the creator using the // correct decimals from _tokenPaid's ERC-20 contract // (i.e. if 7 decimals, 10000000 for 1 token paid) // @param _metadata - Arbitrary data attached to this payment // @return `bytes4(keccak256("onRoyaltiesReceived(address,address,uint256,address,uint256,bytes32)"))` function onRoyaltiesReceived(address _royaltyRecipient, address _buyer, uint256 _tokenId, address _tokenPaid, uint256 _amount, bytes32 _metadata) external returns (bytes4); // @dev This event MUST be emitted by `onRoyaltiesReceived()`. event RoyaltiesReceived( address indexed _royaltyRecipient, address indexed _buyer, uint256 indexed _tokenId, address _tokenPaid, uint256 _amount, bytes32 _metadata ); } interface IVcgERC721TokenWithRoyalty is IVcgERC721Token,IERC2981 { } /** * @title VcgERC721TokenWithRoyalty * */ contract VcgERC721TokenWithRoyalty is IVcgERC721TokenWithRoyalty,VcgERC721Token{ struct CreatorRight{ address creator; uint32 royalty; } uint256 public _scaling_factor = 100000;//5 decimals event CreatorChanged(uint256 indexed _id, address indexed _creator); event DefultRoyaltyChanged(uint256 _royalty); // Mapping from Token ID to Creater whith royalty rate. mapping(uint256 => CreatorRight) private _royaltyInfos; modifier creatorOnly(uint256 _tokenId) { require( _royaltyInfos[_tokenId].creator == msg.sender, "MintTLToken: ONLY_CREATOR_ALLOWED" ); _; } /** * @dev get baseTokenURI * @param tokenId uint256 ID of the token to query * @return string of TokenURI */ function tokenURI(uint256 tokenId) override(IVcgERC721Token,VcgERC721Token) public view returns (string memory) { return super.tokenURI(tokenId); } /** * @dev Mints a token to an address with a tokenURI. * @param to address of the future owner of the token */ function mintToWithRoyalty(address to,uint32 value) public onlyOwner returns (uint256){ require(to != address(0), 'Royalties: Invalid recipient'); require(value == 0 || (value <= _scaling_factor && value>=_scaling_factor/100), 'Royalties: Abnormal'); uint256 newTokenId = super._getNextTokenId(); _mint(to, newTokenId); CreatorRight memory cr = CreatorRight(to,value); _royaltyInfos[newTokenId] = cr; //2021-10-08 , return New TokenID return newTokenId; } function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view override returns ( address receiver, uint256 royaltyAmount ){ CreatorRight memory cr = _royaltyInfos[_tokenId]; if (cr.creator == address(0) || cr.royalty == 0){ return (cr.creator,0); } royaltyAmount = SafeMath.div(SafeMath.mul(_salePrice, cr.royalty),_scaling_factor); return (cr.creator,royaltyAmount); } function modifyRoyalty(uint256 _tokenId ,uint32 amount) external creatorOnly(_tokenId) { _royaltyInfos[_tokenId].royalty = amount; } function setCreator(uint256 _tokenId, address _to) public creatorOnly(_tokenId) { require( _to != address(0), "MintTLToken: INVALID_ADDRESS." ); _royaltyInfos[_tokenId].creator = _to; emit CreatorChanged(_tokenId, _to); } function royaltyInfo(uint256 _tokenId) external view override returns (address receiver, uint256 amount) { receiver = _royaltyInfos[_tokenId].creator; amount = _royaltyInfos[_tokenId].royalty; } function onRoyaltiesReceived(address _royaltyRecipient, address _buyer, uint256 _tokenId, address _tokenPaid, uint256 _amount, bytes32 _metadata) external override returns (bytes4) { emit RoyaltiesReceived(_royaltyRecipient, _buyer, _tokenId, _tokenPaid, _amount, _metadata); return bytes4(keccak256("onRoyaltiesReceived(address,address,uint256,address,uint256,bytes32)")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"uint256","name":"_id","type":"uint256"},{"indexed":true,"internalType":"address","name":"_creator","type":"address"}],"name":"CreatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_royalty","type":"uint256"}],"name":"DefultRoyaltyChanged","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":"_royaltyRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_tokenPaid","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_metadata","type":"bytes32"}],"name":"RoyaltiesReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_scaling_factor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"isVcgNftToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"value","type":"uint32"}],"name":"mintToWithRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"modifyRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_tokenPaid","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_metadata","type":"bytes32"}],"name":"onRoyaltiesReceived","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620186a0600d553480156200001857600080fd5b50604080518082018252601481527f5661756c742062792035303070782773204e465400000000000000000000000060208083019182528351808501909452601284527109c8ca880acc2ead8e840c4f2406a6060e0f60731b908401528151919291620000889160019162000161565b5080516200009e90600290602084019062000161565b50604051806060016040528060238152602001620026ff602391398051620000cf9160009160209091019062000161565b5050600b80546001600160a01b031916339081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360408051808201909152601c8082527f68747470733a2f2f7661756c742e776f726c642f6e66742f3732312f0000000060209092019182526200015a91600c9162000161565b5062000244565b8280546200016f9062000207565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600181811c908216806200021c57607f821691505b602082108114156200023e57634e487b7160e01b600052602260045260246000fd5b50919050565b6124ab80620002546000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d495023811610071578063d49502381461045c578063e8cb9d991461046f578063e985e9c51461049b578063f2fde38b146104d757600080fd5b8063b88d4fde146103f5578063bdc32be014610408578063c87b56dd14610410578063cef6d3681461042357600080fd5b806391686f53116100de57806391686f53146103b457806395d89b41146103c757806399bc8a57146103cf578063a22cb465146103e257600080fd5b806370a082311461036a578063755edd171461037d5780638da5cb5b146103905780638f32d59b146103a157600080fd5b80632f745c59116101875780634a5e3e27116101565780634a5e3e271461031e5780634f558e79146103315780634f6ccce7146103445780636352211e1461035757600080fd5b80632f745c59146102d257806330176e13146102e557806342842e0e146102f8578063430c20811461030b57600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806324b8cf24146102975780632a55205a146102a057600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004611ef8565b6104ea565b60405190151581526020015b60405180910390f35b610225610515565b60405161021491906121a9565b610245610240366004611fe9565b6105a7565b6040516001600160a01b039091168152602001610214565b61027061026b366004611ea4565b610641565b005b6009545b604051908152602001610214565b610270610292366004611d51565b610757565b610276600d5481565b6102b36102ae366004612025565b610788565b604080516001600160a01b039093168352602083019190915201610214565b6102766102e0366004611ea4565b610818565b6102706102f3366004611f32565b6108ae565b610270610306366004611d51565b6108dc565b610208610319366004611ea4565b6108f7565b61020861032c366004611d03565b610940565b61020861033f366004611fe9565b610b5f565b610276610352366004611fe9565b610b7e565b610245610365366004611fe9565b610c11565b610276610378366004611d03565b610c88565b61027661038b366004611d03565b610d0f565b600b546001600160a01b0316610245565b600b546001600160a01b03163314610208565b6102706103c2366004612002565b610d44565b610225610e2c565b6102706103dd366004612047565b610e3b565b6102706103f0366004611e68565b610ea7565b610270610403366004611dec565b610f6c565b610225610fa4565b61022561041e366004611fe9565b610fb3565b6102b3610431366004611fe9565b6000908152600e60205260409020546001600160a01b03811691600160a01b90910463ffffffff1690565b61027661046a366004611ece565b610fbe565b61048261047d366004611d8d565b611120565b6040516001600160e01b03199091168152602001610214565b6102086104a9366004611d1e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102706104e5366004611d03565b6111a3565b60006001600160e01b031982166303a883f160e01b148061050f575061050f826111c6565b92915050565b60606001805461052490612387565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612387565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061064c82610c11565b9050806001600160a01b0316836001600160a01b031614156106ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161061c565b336001600160a01b03821614806106d657506106d681336104a9565b6107485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161061c565b61075283836111eb565b505050565b6107613382611259565b61077d5760405162461bcd60e51b815260040161061c9061224f565b610752838383611350565b6000828152600e602090815260408083208151808301909252546001600160a01b038116808352600160a01b90910463ffffffff1692820192909252829115806107da5750602081015163ffffffff16155b156107eb5751915060009050610811565b61080a61080285836020015163ffffffff166114fb565b600d54611507565b9051925090505b9250929050565b600061082383610c88565b82106108855760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161061c565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146108c557600080fd5b80516108d890600c906020840190611c01565b5050565b61075283838360405180602001604052806000815250610f6c565b6000818152600360205260408120546001600160a01b0316158061092257506001600160a01b038316155b1561092f5750600061050f565b6109398383611259565b9392505050565b6000813b61095057506000919050565b600080836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561098c57600080fd5b505afa1580156109a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109c89190810190611f7b565b90506000846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015610a0557600080fd5b505afa158015610a19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a419190810190611f7b565b90506040518060400160405280601481526020017315985d5b1d08189e480d4c0c1c1e09dcc813919560621b815250604051602001610a8091906120b2565b6040516020818303038152906040528051906020012082604051602001610aa791906120b2565b60405160208183030381529060405280519060200120148015610b3f57506040518060400160405280601281526020017109c8ca880acc2ead8e840c4f2406a6060e0f60731b815250604051602001610b0091906120b2565b6040516020818303038152906040528051906020012081604051602001610b2791906120b2565b60405160208183030381529060405280519060200120145b8015610b565750610b566303a883f160e01b6104ea565b95945050505050565b6000818152600360205260408120546001600160a01b0316151561050f565b6000610b8960095490565b8210610bec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161061c565b60098281548110610bff57610bff612433565b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b03168061050f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161061c565b60006001600160a01b038216610cf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161061c565b506001600160a01b031660009081526004602052604090205490565b600b546000906001600160a01b03163314610d2957600080fd5b6000610d33611513565b905061050f838261152e565b919050565b6000828152600e602052604090205482906001600160a01b03163314610d7c5760405162461bcd60e51b815260040161061c906121bc565b6001600160a01b038216610dd25760405162461bcd60e51b815260206004820152601d60248201527f4d696e74544c546f6b656e3a20494e56414c49445f414444524553532e000000604482015260640161061c565b6000838152600e602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051909185917f39071c63e44267bfdefc7b625c0df99d3ce2e6ff98d9f5e9e8a7ab43cdf5000d9190a3505050565b60606002805461052490612387565b6000828152600e602052604090205482906001600160a01b03163314610e735760405162461bcd60e51b815260040161061c906121bc565b506000918252600e6020526040909120805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b6001600160a01b038216331415610f005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161061c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f763383611259565b610f925760405162461bcd60e51b815260040161061c9061224f565b610f9e8484848461167c565b50505050565b6060600c805461052490612387565b606061050f826116af565b600b546000906001600160a01b03163314610fd857600080fd5b6001600160a01b03831661102e5760405162461bcd60e51b815260206004820152601c60248201527f526f79616c746965733a20496e76616c696420726563697069656e7400000000604482015260640161061c565b63ffffffff821615806110685750600d548263ffffffff161115801561106857506064600d5461105e9190612311565b8263ffffffff1610155b6110aa5760405162461bcd60e51b8152602060048201526013602482015272149bde585b1d1a595cce8810589b9bdc9b585b606a1b604482015260640161061c565b60006110b4611513565b90506110c0848261152e565b6040805180820182526001600160a01b03808716825263ffffffff80871660208085019182526000878152600e90915294909420925183549451909116600160a01b026001600160c01b0319909416911617919091179055905092915050565b604080516001600160a01b038581168252602082018590529181018390526000918691818916918a16907f0fb6148a1327df610b19fe6e8b3721091048fabcee4e029d0fc14af6ac6b98469060600160405180910390a4507fe8cb9d992e917b09efbea9011da19409f5d85d7ec2a0d2b9861b32ef44c757c89695505050505050565b600b546001600160a01b031633146111ba57600080fd5b6111c3816116e3565b50565b60006001600160e01b0319821663780e9d6360e01b148061050f575061050f82611752565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122082610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166112d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161061c565b60006112dd83610c11565b9050806001600160a01b0316846001600160a01b031614806113185750836001600160a01b031661130d846105a7565b6001600160a01b0316145b8061134857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136382610c11565b6001600160a01b0316146113cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161061c565b6001600160a01b03821661142d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161061c565b6114388383836117a2565b6114436000826111eb565b6001600160a01b038316600090815260046020526040812080546001929061146c908490612344565b90915550506001600160a01b038216600090815260046020526040812080546001929061149a9084906122f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006109398284612325565b60006109398284612311565b6000611529600161152360095490565b9061185a565b905090565b6001600160a01b0382166115845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161061c565b6000818152600360205260409020546001600160a01b0316156115e95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161061c565b6115f5600083836117a2565b6001600160a01b038216600090815260046020526040812080546001929061161e9084906122f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611687848484611350565b61169384848484611866565b610f9e5760405162461bcd60e51b815260040161061c906121fd565b6060600c6116bc83611973565b6040516020016116cd9291906120ce565b6040516020818303038152906040529050919050565b6001600160a01b0381166116f657600080fd5b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061178357506001600160e01b03198216635b5e139f60e01b145b8061050f57506301ffc9a760e01b6001600160e01b031983161461050f565b6001600160a01b0383166117fd576117f881600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611820565b816001600160a01b0316836001600160a01b031614611820576118208382611a71565b6001600160a01b0382166118375761075281611b0e565b826001600160a01b0316826001600160a01b031614610752576107528282611bbd565b600061093982846122f9565b60006001600160a01b0384163b1561196857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118aa90339089908890889060040161216c565b602060405180830381600087803b1580156118c457600080fd5b505af19250505080156118f4575060408051601f3d908101601f191682019092526118f191810190611f15565b60015b61194e573d808015611922576040519150601f19603f3d011682016040523d82523d6000602084013e611927565b606091505b5080516119465760405162461bcd60e51b815260040161061c906121fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611348565b506001949350505050565b6060816119975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119c157806119ab816123c2565b91506119ba9050600a83612311565b915061199b565b60008167ffffffffffffffff8111156119dc576119dc612449565b6040519080825280601f01601f191660200182016040528015611a06576020820181803683370190505b5090505b841561134857611a1b600183612344565b9150611a28600a866123dd565b611a339060306122f9565b60f81b818381518110611a4857611a48612433565b60200101906001600160f81b031916908160001a905350611a6a600a86612311565b9450611a0a565b60006001611a7e84610c88565b611a889190612344565b600083815260086020526040902054909150808214611adb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611b2090600190612344565b6000838152600a602052604081205460098054939450909284908110611b4857611b48612433565b906000526020600020015490508060098381548110611b6957611b69612433565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ba157611ba161241d565b6001900381819060005260206000200160009055905550505050565b6000611bc883610c88565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611c0d90612387565b90600052602060002090601f016020900481019282611c2f5760008555611c75565b82601f10611c4857805160ff1916838001178555611c75565b82800160010185558215611c75579182015b82811115611c75578251825591602001919060010190611c5a565b50611c81929150611c85565b5090565b5b80821115611c815760008155600101611c86565b6000611cad611ca8846122d1565b6122a0565b9050828152838383011115611cc157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610d3f57600080fd5b803563ffffffff81168114610d3f57600080fd5b600060208284031215611d1557600080fd5b61093982611cd8565b60008060408385031215611d3157600080fd5b611d3a83611cd8565b9150611d4860208401611cd8565b90509250929050565b600080600060608486031215611d6657600080fd5b611d6f84611cd8565b9250611d7d60208501611cd8565b9150604084013590509250925092565b60008060008060008060c08789031215611da657600080fd5b611daf87611cd8565b9550611dbd60208801611cd8565b945060408701359350611dd260608801611cd8565b92506080870135915060a087013590509295509295509295565b60008060008060808587031215611e0257600080fd5b611e0b85611cd8565b9350611e1960208601611cd8565b925060408501359150606085013567ffffffffffffffff811115611e3c57600080fd5b8501601f81018713611e4d57600080fd5b611e5c87823560208401611c9a565b91505092959194509250565b60008060408385031215611e7b57600080fd5b611e8483611cd8565b915060208301358015158114611e9957600080fd5b809150509250929050565b60008060408385031215611eb757600080fd5b611ec083611cd8565b946020939093013593505050565b60008060408385031215611ee157600080fd5b611eea83611cd8565b9150611d4860208401611cef565b600060208284031215611f0a57600080fd5b81356109398161245f565b600060208284031215611f2757600080fd5b81516109398161245f565b600060208284031215611f4457600080fd5b813567ffffffffffffffff811115611f5b57600080fd5b8201601f81018413611f6c57600080fd5b61134884823560208401611c9a565b600060208284031215611f8d57600080fd5b815167ffffffffffffffff811115611fa457600080fd5b8201601f81018413611fb557600080fd5b8051611fc3611ca8826122d1565b818152856020838501011115611fd857600080fd5b610b5682602083016020860161235b565b600060208284031215611ffb57600080fd5b5035919050565b6000806040838503121561201557600080fd5b82359150611d4860208401611cd8565b6000806040838503121561203857600080fd5b50508035926020909101359150565b6000806040838503121561205a57600080fd5b82359150611d4860208401611cef565b6000815180845261208281602086016020860161235b565b601f01601f19169290920160200192915050565b600081516120a881856020860161235b565b9290920192915050565b600082516120c481846020870161235b565b9190910192915050565b600080845481600182811c9150808316806120ea57607f831692505b602080841082141561210a57634e487b7160e01b86526022600452602486fd5b81801561211e576001811461212f5761215c565b60ff1986168952848901965061215c565b60008b81526020902060005b868110156121545781548b82015290850190830161213b565b505084890196505b505050505050610b568185612096565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f9083018461206a565b9695505050505050565b602081526000610939602083018461206a565b60208082526021908201527f4d696e74544c546f6b656e3a204f4e4c595f43524541544f525f414c4c4f57456040820152601160fa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122c9576122c9612449565b604052919050565b600067ffffffffffffffff8211156122eb576122eb612449565b50601f01601f191660200190565b6000821982111561230c5761230c6123f1565b500190565b60008261232057612320612407565b500490565b600081600019048311821515161561233f5761233f6123f1565b500290565b600082821015612356576123566123f1565b500390565b60005b8381101561237657818101518382015260200161235e565b83811115610f9e5750506000910152565b600181811c9082168061239b57607f821691505b602082108114156123bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123d6576123d66123f1565b5060010190565b6000826123ec576123ec612407565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111c357600080fdfea2646970667358221220902f32ab6c1b08d6c629c1ee41bcae0ae4dd443ffdc4b27fa1e0da299e66263e64736f6c6343000807003368747470733a2f2f35303070782e636f6d2f7661756c742f6e66742f6e66743732312f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d495023811610071578063d49502381461045c578063e8cb9d991461046f578063e985e9c51461049b578063f2fde38b146104d757600080fd5b8063b88d4fde146103f5578063bdc32be014610408578063c87b56dd14610410578063cef6d3681461042357600080fd5b806391686f53116100de57806391686f53146103b457806395d89b41146103c757806399bc8a57146103cf578063a22cb465146103e257600080fd5b806370a082311461036a578063755edd171461037d5780638da5cb5b146103905780638f32d59b146103a157600080fd5b80632f745c59116101875780634a5e3e27116101565780634a5e3e271461031e5780634f558e79146103315780634f6ccce7146103445780636352211e1461035757600080fd5b80632f745c59146102d257806330176e13146102e557806342842e0e146102f8578063430c20811461030b57600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806324b8cf24146102975780632a55205a146102a057600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004611ef8565b6104ea565b60405190151581526020015b60405180910390f35b610225610515565b60405161021491906121a9565b610245610240366004611fe9565b6105a7565b6040516001600160a01b039091168152602001610214565b61027061026b366004611ea4565b610641565b005b6009545b604051908152602001610214565b610270610292366004611d51565b610757565b610276600d5481565b6102b36102ae366004612025565b610788565b604080516001600160a01b039093168352602083019190915201610214565b6102766102e0366004611ea4565b610818565b6102706102f3366004611f32565b6108ae565b610270610306366004611d51565b6108dc565b610208610319366004611ea4565b6108f7565b61020861032c366004611d03565b610940565b61020861033f366004611fe9565b610b5f565b610276610352366004611fe9565b610b7e565b610245610365366004611fe9565b610c11565b610276610378366004611d03565b610c88565b61027661038b366004611d03565b610d0f565b600b546001600160a01b0316610245565b600b546001600160a01b03163314610208565b6102706103c2366004612002565b610d44565b610225610e2c565b6102706103dd366004612047565b610e3b565b6102706103f0366004611e68565b610ea7565b610270610403366004611dec565b610f6c565b610225610fa4565b61022561041e366004611fe9565b610fb3565b6102b3610431366004611fe9565b6000908152600e60205260409020546001600160a01b03811691600160a01b90910463ffffffff1690565b61027661046a366004611ece565b610fbe565b61048261047d366004611d8d565b611120565b6040516001600160e01b03199091168152602001610214565b6102086104a9366004611d1e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102706104e5366004611d03565b6111a3565b60006001600160e01b031982166303a883f160e01b148061050f575061050f826111c6565b92915050565b60606001805461052490612387565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612387565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061064c82610c11565b9050806001600160a01b0316836001600160a01b031614156106ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161061c565b336001600160a01b03821614806106d657506106d681336104a9565b6107485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161061c565b61075283836111eb565b505050565b6107613382611259565b61077d5760405162461bcd60e51b815260040161061c9061224f565b610752838383611350565b6000828152600e602090815260408083208151808301909252546001600160a01b038116808352600160a01b90910463ffffffff1692820192909252829115806107da5750602081015163ffffffff16155b156107eb5751915060009050610811565b61080a61080285836020015163ffffffff166114fb565b600d54611507565b9051925090505b9250929050565b600061082383610c88565b82106108855760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161061c565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146108c557600080fd5b80516108d890600c906020840190611c01565b5050565b61075283838360405180602001604052806000815250610f6c565b6000818152600360205260408120546001600160a01b0316158061092257506001600160a01b038316155b1561092f5750600061050f565b6109398383611259565b9392505050565b6000813b61095057506000919050565b600080836001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561098c57600080fd5b505afa1580156109a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109c89190810190611f7b565b90506000846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015610a0557600080fd5b505afa158015610a19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a419190810190611f7b565b90506040518060400160405280601481526020017315985d5b1d08189e480d4c0c1c1e09dcc813919560621b815250604051602001610a8091906120b2565b6040516020818303038152906040528051906020012082604051602001610aa791906120b2565b60405160208183030381529060405280519060200120148015610b3f57506040518060400160405280601281526020017109c8ca880acc2ead8e840c4f2406a6060e0f60731b815250604051602001610b0091906120b2565b6040516020818303038152906040528051906020012081604051602001610b2791906120b2565b60405160208183030381529060405280519060200120145b8015610b565750610b566303a883f160e01b6104ea565b95945050505050565b6000818152600360205260408120546001600160a01b0316151561050f565b6000610b8960095490565b8210610bec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161061c565b60098281548110610bff57610bff612433565b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b03168061050f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161061c565b60006001600160a01b038216610cf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161061c565b506001600160a01b031660009081526004602052604090205490565b600b546000906001600160a01b03163314610d2957600080fd5b6000610d33611513565b905061050f838261152e565b919050565b6000828152600e602052604090205482906001600160a01b03163314610d7c5760405162461bcd60e51b815260040161061c906121bc565b6001600160a01b038216610dd25760405162461bcd60e51b815260206004820152601d60248201527f4d696e74544c546f6b656e3a20494e56414c49445f414444524553532e000000604482015260640161061c565b6000838152600e602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051909185917f39071c63e44267bfdefc7b625c0df99d3ce2e6ff98d9f5e9e8a7ab43cdf5000d9190a3505050565b60606002805461052490612387565b6000828152600e602052604090205482906001600160a01b03163314610e735760405162461bcd60e51b815260040161061c906121bc565b506000918252600e6020526040909120805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b6001600160a01b038216331415610f005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161061c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f763383611259565b610f925760405162461bcd60e51b815260040161061c9061224f565b610f9e8484848461167c565b50505050565b6060600c805461052490612387565b606061050f826116af565b600b546000906001600160a01b03163314610fd857600080fd5b6001600160a01b03831661102e5760405162461bcd60e51b815260206004820152601c60248201527f526f79616c746965733a20496e76616c696420726563697069656e7400000000604482015260640161061c565b63ffffffff821615806110685750600d548263ffffffff161115801561106857506064600d5461105e9190612311565b8263ffffffff1610155b6110aa5760405162461bcd60e51b8152602060048201526013602482015272149bde585b1d1a595cce8810589b9bdc9b585b606a1b604482015260640161061c565b60006110b4611513565b90506110c0848261152e565b6040805180820182526001600160a01b03808716825263ffffffff80871660208085019182526000878152600e90915294909420925183549451909116600160a01b026001600160c01b0319909416911617919091179055905092915050565b604080516001600160a01b038581168252602082018590529181018390526000918691818916918a16907f0fb6148a1327df610b19fe6e8b3721091048fabcee4e029d0fc14af6ac6b98469060600160405180910390a4507fe8cb9d992e917b09efbea9011da19409f5d85d7ec2a0d2b9861b32ef44c757c89695505050505050565b600b546001600160a01b031633146111ba57600080fd5b6111c3816116e3565b50565b60006001600160e01b0319821663780e9d6360e01b148061050f575061050f82611752565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122082610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166112d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161061c565b60006112dd83610c11565b9050806001600160a01b0316846001600160a01b031614806113185750836001600160a01b031661130d846105a7565b6001600160a01b0316145b8061134857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136382610c11565b6001600160a01b0316146113cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161061c565b6001600160a01b03821661142d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161061c565b6114388383836117a2565b6114436000826111eb565b6001600160a01b038316600090815260046020526040812080546001929061146c908490612344565b90915550506001600160a01b038216600090815260046020526040812080546001929061149a9084906122f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006109398284612325565b60006109398284612311565b6000611529600161152360095490565b9061185a565b905090565b6001600160a01b0382166115845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161061c565b6000818152600360205260409020546001600160a01b0316156115e95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161061c565b6115f5600083836117a2565b6001600160a01b038216600090815260046020526040812080546001929061161e9084906122f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611687848484611350565b61169384848484611866565b610f9e5760405162461bcd60e51b815260040161061c906121fd565b6060600c6116bc83611973565b6040516020016116cd9291906120ce565b6040516020818303038152906040529050919050565b6001600160a01b0381166116f657600080fd5b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061178357506001600160e01b03198216635b5e139f60e01b145b8061050f57506301ffc9a760e01b6001600160e01b031983161461050f565b6001600160a01b0383166117fd576117f881600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611820565b816001600160a01b0316836001600160a01b031614611820576118208382611a71565b6001600160a01b0382166118375761075281611b0e565b826001600160a01b0316826001600160a01b031614610752576107528282611bbd565b600061093982846122f9565b60006001600160a01b0384163b1561196857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118aa90339089908890889060040161216c565b602060405180830381600087803b1580156118c457600080fd5b505af19250505080156118f4575060408051601f3d908101601f191682019092526118f191810190611f15565b60015b61194e573d808015611922576040519150601f19603f3d011682016040523d82523d6000602084013e611927565b606091505b5080516119465760405162461bcd60e51b815260040161061c906121fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611348565b506001949350505050565b6060816119975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119c157806119ab816123c2565b91506119ba9050600a83612311565b915061199b565b60008167ffffffffffffffff8111156119dc576119dc612449565b6040519080825280601f01601f191660200182016040528015611a06576020820181803683370190505b5090505b841561134857611a1b600183612344565b9150611a28600a866123dd565b611a339060306122f9565b60f81b818381518110611a4857611a48612433565b60200101906001600160f81b031916908160001a905350611a6a600a86612311565b9450611a0a565b60006001611a7e84610c88565b611a889190612344565b600083815260086020526040902054909150808214611adb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611b2090600190612344565b6000838152600a602052604081205460098054939450909284908110611b4857611b48612433565b906000526020600020015490508060098381548110611b6957611b69612433565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ba157611ba161241d565b6001900381819060005260206000200160009055905550505050565b6000611bc883610c88565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611c0d90612387565b90600052602060002090601f016020900481019282611c2f5760008555611c75565b82601f10611c4857805160ff1916838001178555611c75565b82800160010185558215611c75579182015b82811115611c75578251825591602001919060010190611c5a565b50611c81929150611c85565b5090565b5b80821115611c815760008155600101611c86565b6000611cad611ca8846122d1565b6122a0565b9050828152838383011115611cc157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610d3f57600080fd5b803563ffffffff81168114610d3f57600080fd5b600060208284031215611d1557600080fd5b61093982611cd8565b60008060408385031215611d3157600080fd5b611d3a83611cd8565b9150611d4860208401611cd8565b90509250929050565b600080600060608486031215611d6657600080fd5b611d6f84611cd8565b9250611d7d60208501611cd8565b9150604084013590509250925092565b60008060008060008060c08789031215611da657600080fd5b611daf87611cd8565b9550611dbd60208801611cd8565b945060408701359350611dd260608801611cd8565b92506080870135915060a087013590509295509295509295565b60008060008060808587031215611e0257600080fd5b611e0b85611cd8565b9350611e1960208601611cd8565b925060408501359150606085013567ffffffffffffffff811115611e3c57600080fd5b8501601f81018713611e4d57600080fd5b611e5c87823560208401611c9a565b91505092959194509250565b60008060408385031215611e7b57600080fd5b611e8483611cd8565b915060208301358015158114611e9957600080fd5b809150509250929050565b60008060408385031215611eb757600080fd5b611ec083611cd8565b946020939093013593505050565b60008060408385031215611ee157600080fd5b611eea83611cd8565b9150611d4860208401611cef565b600060208284031215611f0a57600080fd5b81356109398161245f565b600060208284031215611f2757600080fd5b81516109398161245f565b600060208284031215611f4457600080fd5b813567ffffffffffffffff811115611f5b57600080fd5b8201601f81018413611f6c57600080fd5b61134884823560208401611c9a565b600060208284031215611f8d57600080fd5b815167ffffffffffffffff811115611fa457600080fd5b8201601f81018413611fb557600080fd5b8051611fc3611ca8826122d1565b818152856020838501011115611fd857600080fd5b610b5682602083016020860161235b565b600060208284031215611ffb57600080fd5b5035919050565b6000806040838503121561201557600080fd5b82359150611d4860208401611cd8565b6000806040838503121561203857600080fd5b50508035926020909101359150565b6000806040838503121561205a57600080fd5b82359150611d4860208401611cef565b6000815180845261208281602086016020860161235b565b601f01601f19169290920160200192915050565b600081516120a881856020860161235b565b9290920192915050565b600082516120c481846020870161235b565b9190910192915050565b600080845481600182811c9150808316806120ea57607f831692505b602080841082141561210a57634e487b7160e01b86526022600452602486fd5b81801561211e576001811461212f5761215c565b60ff1986168952848901965061215c565b60008b81526020902060005b868110156121545781548b82015290850190830161213b565b505084890196505b505050505050610b568185612096565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f9083018461206a565b9695505050505050565b602081526000610939602083018461206a565b60208082526021908201527f4d696e74544c546f6b656e3a204f4e4c595f43524541544f525f414c4c4f57456040820152601160fa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122c9576122c9612449565b604052919050565b600067ffffffffffffffff8211156122eb576122eb612449565b50601f01601f191660200190565b6000821982111561230c5761230c6123f1565b500190565b60008261232057612320612407565b500490565b600081600019048311821515161561233f5761233f6123f1565b500290565b600082821015612356576123566123f1565b500390565b60005b8381101561237657818101518382015260200161235e565b83811115610f9e5750506000910152565b600181811c9082168061239b57607f821691505b602082108114156123bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123d6576123d66123f1565b5060010190565b6000826123ec576123ec612407565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111c357600080fdfea2646970667358221220902f32ab6c1b08d6c629c1ee41bcae0ae4dd443ffdc4b27fa1e0da299e66263e64736f6c63430008070033
Deployed Bytecode Sourcemap
56266:3205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51284:220;;;;;;:::i;:::-;;:::i;:::-;;;9541:14:1;;9534:22;9516:41;;9504:2;9489:18;51284:220:0;;;;;;;;24377:100;;;:::i;:::-;;;;;;;:::i;25975:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8210:32:1;;;8192:51;;8180:2;8165:18;25975:221:0;8046:203:1;25492:417:0;;;;;;:::i;:::-;;:::i;:::-;;37058:113;37146:10;:17;37058:113;;;17633:25:1;;;17621:2;17606:18;37058:113:0;17487:177:1;26865:339:0;;;;;;:::i;:::-;;:::i;56438:39::-;;;;;;57903:480;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8939:32:1;;;8921:51;;9003:2;8988:18;;8981:34;;;;8894:18;57903:480:0;8747:274:1;36726:256:0;;;;;;:::i;:::-;;:::i;50733:104::-;;;;;;:::i;:::-;;:::i;27275:185::-;;;;;;:::i;:::-;;:::i;52192:259::-;;;;;;:::i;:::-;;:::i;51514:672::-;;;;;;:::i;:::-;;:::i;52459:118::-;;;;;;:::i;:::-;;:::i;37248:233::-;;;;;;:::i;:::-;;:::i;24071:239::-;;;;;;:::i;:::-;;:::i;23801:208::-;;;;;;:::i;:::-;;:::i;49995:204::-;;;;;;:::i;:::-;;:::i;713:79::-;778:6;;-1:-1:-1;;;;;778:6:0;713:79;;1048:92;1126:6;;-1:-1:-1;;;;;1126:6:0;1112:10;:20;1048:92;;58545:288;;;;;;:::i;:::-;;:::i;24546:104::-;;;:::i;58391:146::-;;;;;;:::i;:::-;;:::i;26268:295::-;;;;;;:::i;:::-;;:::i;27531:328::-;;;;;;:::i;:::-;;:::i;50538:105::-;;;:::i;57089:161::-;;;;;;:::i;:::-;;:::i;58841:217::-;;;;;;:::i;:::-;58912:16;58968:23;;;:13;:23;;;;;:31;-1:-1:-1;;;;;58968:31:0;;;-1:-1:-1;;;59019:31:0;;;;;;58841:217;57388:509;;;;;;:::i;:::-;;:::i;59066:402::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;9730:33:1;;;9712:52;;9700:2;9685:18;59066:402:0;9568:202:1;26634:164:0;;;;;;:::i;:::-;-1:-1:-1;;;;;26755:25:0;;;26731:4;26755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26634:164;1831:109;;;;;;:::i;:::-;;:::i;51284:220::-;51388:4;-1:-1:-1;;;;;;51410:48:0;;-1:-1:-1;;;51410:48:0;;:88;;;51462:36;51486:11;51462:23;:36::i;:::-;51403:95;51284:220;-1:-1:-1;;51284:220:0:o;24377:100::-;24431:13;24464:5;24457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24377:100;:::o;25975:221::-;26051:7;29458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29458:16:0;26071:73;;;;-1:-1:-1;;;26071:73:0;;15276:2:1;26071:73:0;;;15258:21:1;15315:2;15295:18;;;15288:30;15354:34;15334:18;;;15327:62;-1:-1:-1;;;15405:18:1;;;15398:42;15457:19;;26071:73:0;;;;;;;;;-1:-1:-1;26164:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26164:24:0;;25975:221::o;25492:417::-;25573:13;25589:23;25604:7;25589:14;:23::i;:::-;25573:39;;25637:5;-1:-1:-1;;;;;25631:11:0;:2;-1:-1:-1;;;;;25631:11:0;;;25623:57;;;;-1:-1:-1;;;25623:57:0;;16456:2:1;25623:57:0;;;16438:21:1;16495:2;16475:18;;;16468:30;16534:34;16514:18;;;16507:62;-1:-1:-1;;;16585:18:1;;;16578:31;16626:19;;25623:57:0;16254:397:1;25623:57:0;20429:10;-1:-1:-1;;;;;25723:21:0;;;;:62;;-1:-1:-1;25748:37:0;25765:5;20429:10;26634:164;:::i;25748:37::-;25701:168;;;;-1:-1:-1;;;25701:168:0;;13669:2:1;25701:168:0;;;13651:21:1;13708:2;13688:18;;;13681:30;13747:34;13727:18;;;13720:62;13818:26;13798:18;;;13791:54;13862:19;;25701:168:0;13467:420:1;25701:168:0;25880:21;25889:2;25893:7;25880:8;:21::i;:::-;25562:347;25492:417;;:::o;26865:339::-;27060:41;20429:10;27093:7;27060:18;:41::i;:::-;27052:103;;;;-1:-1:-1;;;27052:103:0;;;;;;;:::i;:::-;27168:28;27178:4;27184:2;27188:7;27168:9;:28::i;57903:480::-;58029:16;58118:23;;;:13;:23;;;;;;;;58093:48;;;;;;;;;-1:-1:-1;;;;;58093:48:0;;;;;-1:-1:-1;;;58093:48:0;;;;;;;;;;;;58029:16;;58154:24;;:43;;-1:-1:-1;58182:10:0;;;;:15;;;58154:43;58150:92;;;58219:10;;-1:-1:-1;58219:10:0;;-1:-1:-1;58211:21:0;;58150:92;58267:66;58280:36;58293:10;58305:2;:10;;;58280:36;;:12;:36::i;:::-;58317:15;;58267:12;:66::i;:::-;58352:10;;;-1:-1:-1;58251:82:0;-1:-1:-1;57903:480:0;;;;;;:::o;36726:256::-;36823:7;36859:23;36876:5;36859:16;:23::i;:::-;36851:5;:31;36843:87;;;;-1:-1:-1;;;36843:87:0;;10603:2:1;36843:87:0;;;10585:21:1;10642:2;10622:18;;;10615:30;10681:34;10661:18;;;10654:62;-1:-1:-1;;;10732:18:1;;;10725:41;10783:19;;36843:87:0;10401:407:1;36843:87:0;-1:-1:-1;;;;;;36948:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36726:256::o;50733:104::-;1126:6;;-1:-1:-1;;;;;1126:6:0;1112:10;:20;917:18;;;;;;50812:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50733:104:::0;:::o;27275:185::-;27413:39;27430:4;27436:2;27440:7;27413:39;;;;;;;;;;;;:16;:39::i;52192:259::-;52285:4;29458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29458:16:0;:30;;52301:44;;-1:-1:-1;;;;;;52323:21:0;;;52301:44;52298:90;;;-1:-1:-1;52368:5:0;52361:13;;52298:90;52403:42;52428:7;52437;52403:24;:42::i;:::-;52396:49;52192:259;-1:-1:-1;;;52192:259:0:o;51514:672::-;51604:4;5279:20;;51619:81;;-1:-1:-1;51685:5:0;;51514:672;-1:-1:-1;51514:672:0:o;51619:81::-;51714:11;51742:18;51778:12;-1:-1:-1;;;;;51763:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51763:35:0;;;;;;;;;;;;:::i;:::-;51742:56;;51807:20;51845:12;-1:-1:-1;;;;;51830:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51830:37:0;;;;;;;;;;;;:::i;:::-;51807:60;;51961:9;;;;;;;;;;;;;-1:-1:-1;;;51961:9:0;;;51944:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;51934:38;;;;;;51924:4;51907:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;51897:33;;;;;;:75;51896:176;;;;;52058:11;;;;;;;;;;;;;-1:-1:-1;;;52058:11:0;;;52041:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;52031:40;;;;;;52019:6;52002:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;51992:35;;;;;;:79;51896:176;:249;;;;;52091:52;-1:-1:-1;;;52091:17:0;:52::i;:::-;51887:258;51514:672;-1:-1:-1;;;;;51514:672:0:o;52459:118::-;52524:4;29458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29458:16:0;:30;;52550:16;29369:127;37248:233;37323:7;37359:30;37146:10;:17;;37058:113;37359:30;37351:5;:38;37343:95;;;;-1:-1:-1;;;37343:95:0;;17276:2:1;37343:95:0;;;17258:21:1;17315:2;17295:18;;;17288:30;17354:34;17334:18;;;17327:62;-1:-1:-1;;;17405:18:1;;;17398:42;17457:19;;37343:95:0;17074:408:1;37343:95:0;37456:10;37467:5;37456:17;;;;;;;;:::i;:::-;;;;;;;;;37449:24;;37248:233;;;:::o;24071:239::-;24143:7;24179:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24179:16:0;24214:19;24206:73;;;;-1:-1:-1;;;24206:73:0;;14505:2:1;24206:73:0;;;14487:21:1;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:1;;;14627:39;14683:19;;24206:73:0;14303:405:1;23801:208:0;23873:7;-1:-1:-1;;;;;23901:19:0;;23893:74;;;;-1:-1:-1;;;23893:74:0;;14094:2:1;23893:74:0;;;14076:21:1;14133:2;14113:18;;;14106:30;14172:34;14152:18;;;14145:62;-1:-1:-1;;;14223:18:1;;;14216:40;14273:19;;23893:74:0;13892:406:1;23893:74:0;-1:-1:-1;;;;;;23985:16:0;;;;;:9;:16;;;;;;;23801:208::o;49995:204::-;1126:6;;50049:7;;-1:-1:-1;;;;;1126:6:0;1112:10;:20;917:18;;;;;;50064::::1;50085:17;:15;:17::i;:::-;50064:38;;50109:21;50115:2;50119:10;50109:5;:21::i;946:1::-;49995:204:::0;;;:::o;58545:288::-;56819:23;;;;:13;:23;;;;;:31;58615:8;;-1:-1:-1;;;;;56819:31:0;56854:10;56819:45;56797:129;;;;-1:-1:-1;;;56797:129:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58658:17:0;::::1;58636:96;;;::::0;-1:-1:-1;;;58636:96:0;;11434:2:1;58636:96:0::1;::::0;::::1;11416:21:1::0;11473:2;11453:18;;;11446:30;11512:31;11492:18;;;11485:59;11561:18;;58636:96:0::1;11232:353:1::0;58636:96:0::1;58743:23;::::0;;;:13:::1;:23;::::0;;;;;:37;;-1:-1:-1;;;;;;58743:37:0::1;-1:-1:-1::0;;;;;58743:37:0;::::1;::::0;;::::1;::::0;;;58796:29;;58743:37;;:23;;58796:29:::1;::::0;58743:23;58796:29:::1;58545:288:::0;;;:::o;24546:104::-;24602:13;24635:7;24628:14;;;;;:::i;58391:146::-;56819:23;;;;:13;:23;;;;;:31;58468:8;;-1:-1:-1;;;;;56819:31:0;56854:10;56819:45;56797:129;;;;-1:-1:-1;;;56797:129:0;;;;;;;:::i;:::-;-1:-1:-1;58489:23:0::1;::::0;;;:13:::1;:23;::::0;;;;;:40;;::::1;::::0;;::::1;-1:-1:-1::0;;;58489:40:0::1;-1:-1:-1::0;;;;58489:40:0;;::::1;::::0;;;::::1;::::0;;58391:146::o;26268:295::-;-1:-1:-1;;;;;26371:24:0;;20429:10;26371:24;;26363:62;;;;-1:-1:-1;;;26363:62:0;;12554:2:1;26363:62:0;;;12536:21:1;12593:2;12573:18;;;12566:30;12632:27;12612:18;;;12605:55;12677:18;;26363:62:0;12352:349:1;26363:62:0;20429:10;26438:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26438:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26438:53:0;;;;;;;;;;26507:48;;9516:41:1;;;26438:42:0;;20429:10;26507:48;;9489:18:1;26507:48:0;;;;;;;26268:295;;:::o;27531:328::-;27706:41;20429:10;27739:7;27706:18;:41::i;:::-;27698:103;;;;-1:-1:-1;;;27698:103:0;;;;;;;:::i;:::-;27812:39;27826:4;27832:2;27836:7;27845:5;27812:13;:39::i;:::-;27531:328;;;;:::o;50538:105::-;50595:13;50624;50617:20;;;;;:::i;57089:161::-;57186:13;57219:23;57234:7;57219:14;:23::i;57388:509::-;1126:6;;57467:7;;-1:-1:-1;;;;;1126:6:0;1112:10;:20;917:18;;;;;;-1:-1:-1;;;;;57490:16:0;::::1;57482:57;;;::::0;-1:-1:-1;;;57482:57:0;;15689:2:1;57482:57:0::1;::::0;::::1;15671:21:1::0;15728:2;15708:18;;;15701:30;15767;15747:18;;;15740:58;15815:18;;57482:57:0::1;15487:352:1::0;57482:57:0::1;57554:10;::::0;::::1;::::0;;:79:::1;;;57587:15;;57578:5;:24;;;;:54;;;;;57629:3;57613:15;;:19;;;;:::i;:::-;57606:5;:26;;;;57578:54;57546:111;;;::::0;-1:-1:-1;;;57546:111:0;;13321:2:1;57546:111:0::1;::::0;::::1;13303:21:1::0;13360:2;13340:18;;;13333:30;-1:-1:-1;;;13379:18:1;;;13372:49;13438:18;;57546:111:0::1;13119:343:1::0;57546:111:0::1;57664:18;57685:23;:21;:23::i;:::-;57664:44;;57715:21;57721:2;57725:10;57715:5;:21::i;:::-;57768:22;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;57768:22:0;;::::1;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;57743::::1;57797:25:::0;;;:13:::1;:25:::0;;;;;;;:30;;;;;;;;::::1;-1:-1:-1::0;;;57797:30:0::1;-1:-1:-1::0;;;;;;57797:30:0;;;;::::1;::::0;;;;::::1;::::0;;57811:10;-1:-1:-1;57388:509:0;;;;:::o;59066:402::-;59263:86;;;-1:-1:-1;;;;;9246:32:1;;;9228:51;;9310:2;9295:18;;9288:34;;;9338:18;;;9331:34;;;59239:6:0;;59308:8;;59263:86;;;;;;;;;9216:2:1;9201:18;59263:86:0;;;;;;;-1:-1:-1;59378:81:0;59066:402;;;;;;;;:::o;1831:109::-;1126:6;;-1:-1:-1;;;;;1126:6:0;1112:10;:20;917:18;;;;;;1904:28:::1;1923:8;1904:18;:28::i;:::-;1831:109:::0;:::o;36418:224::-;36520:4;-1:-1:-1;;;;;;36544:50:0;;-1:-1:-1;;;36544:50:0;;:90;;;36598:36;36622:11;36598:23;:36::i;33351:174::-;33426:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33426:29:0;-1:-1:-1;;;;;33426:29:0;;;;;;;;:24;;33480:23;33426:24;33480:14;:23::i;:::-;-1:-1:-1;;;;;33471:46:0;;;;;;;;;;;33351:174;;:::o;29663:348::-;29756:4;29458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29458:16:0;29773:73;;;;-1:-1:-1;;;29773:73:0;;12908:2:1;29773:73:0;;;12890:21:1;12947:2;12927:18;;;12920:30;12986:34;12966:18;;;12959:62;-1:-1:-1;;;13037:18:1;;;13030:42;13089:19;;29773:73:0;12706:408:1;29773:73:0;29857:13;29873:23;29888:7;29873:14;:23::i;:::-;29857:39;;29926:5;-1:-1:-1;;;;;29915:16:0;:7;-1:-1:-1;;;;;29915:16:0;;:51;;;;29959:7;-1:-1:-1;;;;;29935:31:0;:20;29947:7;29935:11;:20::i;:::-;-1:-1:-1;;;;;29935:31:0;;29915:51;:87;;;-1:-1:-1;;;;;;26755:25:0;;;26731:4;26755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29970:32;29907:96;29663:348;-1:-1:-1;;;;29663:348:0:o;32655:578::-;32814:4;-1:-1:-1;;;;;32787:31:0;:23;32802:7;32787:14;:23::i;:::-;-1:-1:-1;;;;;32787:31:0;;32779:85;;;;-1:-1:-1;;;32779:85:0;;16046:2:1;32779:85:0;;;16028:21:1;16085:2;16065:18;;;16058:30;16124:34;16104:18;;;16097:62;-1:-1:-1;;;16175:18:1;;;16168:39;16224:19;;32779:85:0;15844:405:1;32779:85:0;-1:-1:-1;;;;;32883:16:0;;32875:65;;;;-1:-1:-1;;;32875:65:0;;12149:2:1;32875:65:0;;;12131:21:1;12188:2;12168:18;;;12161:30;12227:34;12207:18;;;12200:62;-1:-1:-1;;;12278:18:1;;;12271:34;12322:19;;32875:65:0;11947:400:1;32875:65:0;32953:39;32974:4;32980:2;32984:7;32953:20;:39::i;:::-;33057:29;33074:1;33078:7;33057:8;:29::i;:::-;-1:-1:-1;;;;;33099:15:0;;;;;;:9;:15;;;;;:20;;33118:1;;33099:15;:20;;33118:1;;33099:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33130:13:0;;;;;;:9;:13;;;;;:18;;33147:1;;33130:13;:18;;33147:1;;33130:18;:::i;:::-;;;;-1:-1:-1;;33159:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33159:21:0;-1:-1:-1;;;;;33159:21:0;;;;;;;;;33198:27;;33159:16;;33198:27;;;;;;;32655:578;;;:::o;46034:98::-;46092:7;46119:5;46123:1;46119;:5;:::i;46433:98::-;46491:7;46518:5;46522:1;46518;:5;:::i;50331:113::-;50394:7;50418:20;50436:1;50418:13;37146:10;:17;;37058:113;50418:13;:17;;:20::i;:::-;50411:27;;50331:113;:::o;31347:382::-;-1:-1:-1;;;;;31427:16:0;;31419:61;;;;-1:-1:-1;;;31419:61:0;;14915:2:1;31419:61:0;;;14897:21:1;;;14934:18;;;14927:30;14993:34;14973:18;;;14966:62;15045:18;;31419:61:0;14713:356:1;31419:61:0;29434:4;29458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29458:16:0;:30;31491:58;;;;-1:-1:-1;;;31491:58:0;;11792:2:1;31491:58:0;;;11774:21:1;11831:2;11811:18;;;11804:30;11870;11850:18;;;11843:58;11918:18;;31491:58:0;11590:352:1;31491:58:0;31562:45;31591:1;31595:2;31599:7;31562:20;:45::i;:::-;-1:-1:-1;;;;;31620:13:0;;;;;;:9;:13;;;;;:18;;31637:1;;31620:13;:18;;31637:1;;31620:18;:::i;:::-;;;;-1:-1:-1;;31649:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31649:21:0;-1:-1:-1;;;;;31649:21:0;;;;;;;;31688:33;;31649:16;;;31688:33;;31649:16;;31688:33;31347:382;;:::o;28741:315::-;28898:28;28908:4;28914:2;28918:7;28898:9;:28::i;:::-;28945:48;28968:4;28974:2;28978:7;28987:5;28945:22;:48::i;:::-;28937:111;;;;-1:-1:-1;;;28937:111:0;;;;;;;:::i;50978:203::-;51076:13;51133;51148:25;51165:7;51148:16;:25::i;:::-;51116:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51102:73;;50978:203;;;:::o;2090:187::-;-1:-1:-1;;;;;2164:22:0;;2156:31;;;;;;2224:6;;2203:38;;-1:-1:-1;;;;;2203:38:0;;;;2224:6;;2203:38;;2224:6;;2203:38;2252:6;:17;;-1:-1:-1;;;;;;2252:17:0;-1:-1:-1;;;;;2252:17:0;;;;;;;;;;2090:187::o;23432:305::-;23534:4;-1:-1:-1;;;;;;23571:40:0;;-1:-1:-1;;;23571:40:0;;:105;;-1:-1:-1;;;;;;;23628:48:0;;-1:-1:-1;;;23628:48:0;23571:105;:158;;;-1:-1:-1;;;;;;;;;;19753:40:0;;;23693:36;19644:157;38094:589;-1:-1:-1;;;;;38300:18:0;;38296:187;;38335:40;38367:7;39510:10;:17;;39483:24;;;;:15;:24;;;;;:44;;;39538:24;;;;;;;;;;;;39406:164;38335:40;38296:187;;;38405:2;-1:-1:-1;;;;;38397:10:0;:4;-1:-1:-1;;;;;38397:10:0;;38393:90;;38424:47;38457:4;38463:7;38424:32;:47::i;:::-;-1:-1:-1;;;;;38497:16:0;;38493:183;;38530:45;38567:7;38530:36;:45::i;38493:183::-;38603:4;-1:-1:-1;;;;;38597:10:0;:2;-1:-1:-1;;;;;38597:10:0;;38593:83;;38624:40;38652:2;38656:7;38624:27;:40::i;45296:98::-;45354:7;45381:5;45385:1;45381;:5;:::i;34090:803::-;34245:4;-1:-1:-1;;;;;34266:13:0;;5279:20;5327:8;34262:624;;34302:72;;-1:-1:-1;;;34302:72:0;;-1:-1:-1;;;;;34302:36:0;;;;;:72;;20429:10;;34353:4;;34359:7;;34368:5;;34302:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34302:72:0;;;;;;;;-1:-1:-1;;34302:72:0;;;;;;;;;;;;:::i;:::-;;;34298:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34548:13:0;;34544:272;;34591:60;;-1:-1:-1;;;34591:60:0;;;;;;;:::i;34544:272::-;34766:6;34760:13;34751:6;34747:2;34743:15;34736:38;34298:533;-1:-1:-1;;;;;;34425:55:0;-1:-1:-1;;;34425:55:0;;-1:-1:-1;34418:62:0;;34262:624;-1:-1:-1;34870:4:0;34090:803;;;;;;:::o;2510:723::-;2566:13;2787:10;2783:53;;-1:-1:-1;;2814:10:0;;;;;;;;;;;;-1:-1:-1;;;2814:10:0;;;;;2510:723::o;2783:53::-;2861:5;2846:12;2902:78;2909:9;;2902:78;;2935:8;;;;:::i;:::-;;-1:-1:-1;2958:10:0;;-1:-1:-1;2966:2:0;2958:10;;:::i;:::-;;;2902:78;;;2990:19;3022:6;3012:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3012:17:0;;2990:39;;3040:154;3047:10;;3040:154;;3074:11;3084:1;3074:11;;:::i;:::-;;-1:-1:-1;3143:10:0;3151:2;3143:5;:10;:::i;:::-;3130:24;;:2;:24;:::i;:::-;3117:39;;3100:6;3107;3100:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3100:56:0;;;;;;;;-1:-1:-1;3171:11:0;3180:2;3171:11;;:::i;:::-;;;3040:154;;40197:988;40463:22;40513:1;40488:22;40505:4;40488:16;:22::i;:::-;:26;;;;:::i;:::-;40525:18;40546:26;;;:17;:26;;;;;;40463:51;;-1:-1:-1;40679:28:0;;;40675:328;;-1:-1:-1;;;;;40746:18:0;;40724:19;40746:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40797:30;;;;;;:44;;;40914:30;;:17;:30;;;;;:43;;;40675:328;-1:-1:-1;41099:26:0;;;;:17;:26;;;;;;;;41092:33;;;-1:-1:-1;;;;;41143:18:0;;;;;:12;:18;;;;;:34;;;;;;;41136:41;40197:988::o;41480:1079::-;41758:10;:17;41733:22;;41758:21;;41778:1;;41758:21;:::i;:::-;41790:18;41811:24;;;:15;:24;;;;;;42184:10;:26;;41733:46;;-1:-1:-1;41811:24:0;;41733:46;;42184:26;;;;;;:::i;:::-;;;;;;;;;42162:48;;42248:11;42223:10;42234;42223:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42328:28;;;:15;:28;;;;;;;:41;;;42500:24;;;;;42493:31;42535:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41551:1008;;;41480:1079;:::o;38984:221::-;39069:14;39086:20;39103:2;39086:16;:20::i;:::-;-1:-1:-1;;;;;39117:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39162:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38984:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:173::-;423:20;;-1:-1:-1;;;;;472:31:1;;462:42;;452:70;;518:1;515;508:12;533:163;600:20;;660:10;649:22;;639:33;;629:61;;686:1;683;676:12;701:186;760:6;813:2;801:9;792:7;788:23;784:32;781:52;;;829:1;826;819:12;781:52;852:29;871:9;852:29;:::i;892:260::-;960:6;968;1021:2;1009:9;1000:7;996:23;992:32;989:52;;;1037:1;1034;1027:12;989:52;1060:29;1079:9;1060:29;:::i;:::-;1050:39;;1108:38;1142:2;1131:9;1127:18;1108:38;:::i;:::-;1098:48;;892:260;;;;;:::o;1157:328::-;1234:6;1242;1250;1303:2;1291:9;1282:7;1278:23;1274:32;1271:52;;;1319:1;1316;1309:12;1271:52;1342:29;1361:9;1342:29;:::i;:::-;1332:39;;1390:38;1424:2;1413:9;1409:18;1390:38;:::i;:::-;1380:48;;1475:2;1464:9;1460:18;1447:32;1437:42;;1157:328;;;;;:::o;1490:541::-;1594:6;1602;1610;1618;1626;1634;1687:3;1675:9;1666:7;1662:23;1658:33;1655:53;;;1704:1;1701;1694:12;1655:53;1727:29;1746:9;1727:29;:::i;:::-;1717:39;;1775:38;1809:2;1798:9;1794:18;1775:38;:::i;:::-;1765:48;;1860:2;1849:9;1845:18;1832:32;1822:42;;1883:38;1917:2;1906:9;1902:18;1883:38;:::i;:::-;1873:48;;1968:3;1957:9;1953:19;1940:33;1930:43;;2020:3;2009:9;2005:19;1992:33;1982:43;;1490:541;;;;;;;;:::o;2036:666::-;2131:6;2139;2147;2155;2208:3;2196:9;2187:7;2183:23;2179:33;2176:53;;;2225:1;2222;2215:12;2176:53;2248:29;2267:9;2248:29;:::i;:::-;2238:39;;2296:38;2330:2;2319:9;2315:18;2296:38;:::i;:::-;2286:48;;2381:2;2370:9;2366:18;2353:32;2343:42;;2436:2;2425:9;2421:18;2408:32;2463:18;2455:6;2452:30;2449:50;;;2495:1;2492;2485:12;2449:50;2518:22;;2571:4;2563:13;;2559:27;-1:-1:-1;2549:55:1;;2600:1;2597;2590:12;2549:55;2623:73;2688:7;2683:2;2670:16;2665:2;2661;2657:11;2623:73;:::i;:::-;2613:83;;;2036:666;;;;;;;:::o;2707:347::-;2772:6;2780;2833:2;2821:9;2812:7;2808:23;2804:32;2801:52;;;2849:1;2846;2839:12;2801:52;2872:29;2891:9;2872:29;:::i;:::-;2862:39;;2951:2;2940:9;2936:18;2923:32;2998:5;2991:13;2984:21;2977:5;2974:32;2964:60;;3020:1;3017;3010:12;2964:60;3043:5;3033:15;;;2707:347;;;;;:::o;3059:254::-;3127:6;3135;3188:2;3176:9;3167:7;3163:23;3159:32;3156:52;;;3204:1;3201;3194:12;3156:52;3227:29;3246:9;3227:29;:::i;:::-;3217:39;3303:2;3288:18;;;;3275:32;;-1:-1:-1;;;3059:254:1:o;3318:258::-;3385:6;3393;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;3485:29;3504:9;3485:29;:::i;:::-;3475:39;;3533:37;3566:2;3555:9;3551:18;3533:37;:::i;3581:245::-;3639:6;3692:2;3680:9;3671:7;3667:23;3663:32;3660:52;;;3708:1;3705;3698:12;3660:52;3747:9;3734:23;3766:30;3790:5;3766:30;:::i;3831:249::-;3900:6;3953:2;3941:9;3932:7;3928:23;3924:32;3921:52;;;3969:1;3966;3959:12;3921:52;4001:9;3995:16;4020:30;4044:5;4020:30;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:635::-;4620:6;4673:2;4661:9;4652:7;4648:23;4644:32;4641:52;;;4689:1;4686;4679:12;4641:52;4722:9;4716:16;4755:18;4747:6;4744:30;4741:50;;;4787:1;4784;4777:12;4741:50;4810:22;;4863:4;4855:13;;4851:27;-1:-1:-1;4841:55:1;;4892:1;4889;4882:12;4841:55;4921:2;4915:9;4946:48;4962:31;4990:2;4962:31;:::i;4946:48::-;5017:2;5010:5;5003:17;5057:7;5052:2;5047;5043;5039:11;5035:20;5032:33;5029:53;;;5078:1;5075;5068:12;5029:53;5091:54;5142:2;5137;5130:5;5126:14;5121:2;5117;5113:11;5091:54;:::i;5180:180::-;5239:6;5292:2;5280:9;5271:7;5267:23;5263:32;5260:52;;;5308:1;5305;5298:12;5260:52;-1:-1:-1;5331:23:1;;5180:180;-1:-1:-1;5180:180:1:o;5365:254::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5546:9;5533:23;5523:33;;5575:38;5609:2;5598:9;5594:18;5575:38;:::i;5624:248::-;5692:6;5700;5753:2;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;-1:-1:-1;;5792:23:1;;;5862:2;5847:18;;;5834:32;;-1:-1:-1;5624:248:1:o;5877:252::-;5944:6;5952;6005:2;5993:9;5984:7;5980:23;5976:32;5973:52;;;6021:1;6018;6011:12;5973:52;6057:9;6044:23;6034:33;;6086:37;6119:2;6108:9;6104:18;6086:37;:::i;6134:257::-;6175:3;6213:5;6207:12;6240:6;6235:3;6228:19;6256:63;6312:6;6305:4;6300:3;6296:14;6289:4;6282:5;6278:16;6256:63;:::i;:::-;6373:2;6352:15;-1:-1:-1;;6348:29:1;6339:39;;;;6380:4;6335:50;;6134:257;-1:-1:-1;;6134:257:1:o;6396:185::-;6438:3;6476:5;6470:12;6491:52;6536:6;6531:3;6524:4;6517:5;6513:16;6491:52;:::i;:::-;6559:16;;;;;6396:185;-1:-1:-1;;6396:185:1:o;6586:276::-;6717:3;6755:6;6749:13;6771:53;6817:6;6812:3;6805:4;6797:6;6793:17;6771:53;:::i;:::-;6840:16;;;;;6586:276;-1:-1:-1;;6586:276:1:o;6867:1174::-;7043:3;7072:1;7105:6;7099:13;7135:3;7157:1;7185:9;7181:2;7177:18;7167:28;;7245:2;7234:9;7230:18;7267;7257:61;;7311:4;7303:6;7299:17;7289:27;;7257:61;7337:2;7385;7377:6;7374:14;7354:18;7351:38;7348:165;;;-1:-1:-1;;;7412:33:1;;7468:4;7465:1;7458:15;7498:4;7419:3;7486:17;7348:165;7529:18;7556:104;;;;7674:1;7669:320;;;;7522:467;;7556:104;-1:-1:-1;;7589:24:1;;7577:37;;7634:16;;;;-1:-1:-1;7556:104:1;;7669:320;18213:1;18206:14;;;18250:4;18237:18;;7764:1;7778:165;7792:6;7789:1;7786:13;7778:165;;;7870:14;;7857:11;;;7850:35;7913:16;;;;7807:10;;7778:165;;;7782:3;;7972:6;7967:3;7963:16;7956:23;;7522:467;;;;;;;8005:30;8031:3;8023:6;8005:30;:::i;8254:488::-;-1:-1:-1;;;;;8523:15:1;;;8505:34;;8575:15;;8570:2;8555:18;;8548:43;8622:2;8607:18;;8600:34;;;8670:3;8665:2;8650:18;;8643:31;;;8448:4;;8691:45;;8716:19;;8708:6;8691:45;:::i;:::-;8683:53;8254:488;-1:-1:-1;;;;;;8254:488:1:o;9775:219::-;9924:2;9913:9;9906:21;9887:4;9944:44;9984:2;9973:9;9969:18;9961:6;9944:44;:::i;9999:397::-;10201:2;10183:21;;;10240:2;10220:18;;;10213:30;10279:34;10274:2;10259:18;;10252:62;-1:-1:-1;;;10345:2:1;10330:18;;10323:31;10386:3;10371:19;;9999:397::o;10813:414::-;11015:2;10997:21;;;11054:2;11034:18;;;11027:30;11093:34;11088:2;11073:18;;11066:62;-1:-1:-1;;;11159:2:1;11144:18;;11137:48;11217:3;11202:19;;10813:414::o;16656:413::-;16858:2;16840:21;;;16897:2;16877:18;;;16870:30;16936:34;16931:2;16916:18;;16909:62;-1:-1:-1;;;17002:2:1;16987:18;;16980:47;17059:3;17044:19;;16656:413::o;17669:275::-;17740:2;17734:9;17805:2;17786:13;;-1:-1:-1;;17782:27:1;17770:40;;17840:18;17825:34;;17861:22;;;17822:62;17819:88;;;17887:18;;:::i;:::-;17923:2;17916:22;17669:275;;-1:-1:-1;17669:275:1:o;17949:186::-;17997:4;18030:18;18022:6;18019:30;18016:56;;;18052:18;;:::i;:::-;-1:-1:-1;18118:2:1;18097:15;-1:-1:-1;;18093:29:1;18124:4;18089:40;;17949:186::o;18266:128::-;18306:3;18337:1;18333:6;18330:1;18327:13;18324:39;;;18343:18;;:::i;:::-;-1:-1:-1;18379:9:1;;18266:128::o;18399:120::-;18439:1;18465;18455:35;;18470:18;;:::i;:::-;-1:-1:-1;18504:9:1;;18399:120::o;18524:168::-;18564:7;18630:1;18626;18622:6;18618:14;18615:1;18612:21;18607:1;18600:9;18593:17;18589:45;18586:71;;;18637:18;;:::i;:::-;-1:-1:-1;18677:9:1;;18524:168::o;18697:125::-;18737:4;18765:1;18762;18759:8;18756:34;;;18770:18;;:::i;:::-;-1:-1:-1;18807:9:1;;18697:125::o;18827:258::-;18899:1;18909:113;18923:6;18920:1;18917:13;18909:113;;;18999:11;;;18993:18;18980:11;;;18973:39;18945:2;18938:10;18909:113;;;19040:6;19037:1;19034:13;19031:48;;;-1:-1:-1;;19075:1:1;19057:16;;19050:27;18827:258::o;19090:380::-;19169:1;19165:12;;;;19212;;;19233:61;;19287:4;19279:6;19275:17;19265:27;;19233:61;19340:2;19332:6;19329:14;19309:18;19306:38;19303:161;;;19386:10;19381:3;19377:20;19374:1;19367:31;19421:4;19418:1;19411:15;19449:4;19446:1;19439:15;19303:161;;19090:380;;;:::o;19475:135::-;19514:3;-1:-1:-1;;19535:17:1;;19532:43;;;19555:18;;:::i;:::-;-1:-1:-1;19602:1:1;19591:13;;19475:135::o;19615:112::-;19647:1;19673;19663:35;;19678:18;;:::i;:::-;-1:-1:-1;19712:9:1;;19615:112::o;19732:127::-;19793:10;19788:3;19784:20;19781:1;19774:31;19824:4;19821:1;19814:15;19848:4;19845:1;19838:15;19864:127;19925:10;19920:3;19916:20;19913:1;19906:31;19956:4;19953:1;19946:15;19980:4;19977:1;19970:15;19996:127;20057:10;20052:3;20048:20;20045:1;20038:31;20088:4;20085:1;20078:15;20112:4;20109:1;20102:15;20128:127;20189:10;20184:3;20180:20;20177:1;20170:31;20220:4;20217:1;20210:15;20244:4;20241:1;20234:15;20260:127;20321:10;20316:3;20312:20;20309:1;20302:31;20352:4;20349:1;20342:15;20376:4;20373:1;20366:15;20392:131;-1:-1:-1;;;;;;20466:32:1;;20456:43;;20446:71;;20513:1;20510;20503:12
Swarm Source
ipfs://902f32ab6c1b08d6c629c1ee41bcae0ae4dd443ffdc4b27fa1e0da299e66263e
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.