Token Ties That Bind
Overview ERC721
Total Supply:
150 TTB
Holders:
55 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x0cd02d8a9f91ab7e54ed49aea01d6b5aa15d0e67
Contract Name:
ConfigurableERC721
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-22 */ // Sources flattened with hardhat v2.9.5 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/common/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); /** * @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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File contracts/ConfigurableERC721.sol pragma solidity ^0.8.3; contract ConfigurableERC721 is ERC721, ERC721Enumerable, ERC721URIStorage, ERC2981, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; address public kalao_contract; constructor(string memory _name, string memory _symbol, uint96 _royalties_rate, address _royalties_recipient, address _kalao_contract) ERC721(_name, _symbol){ kalao_contract = _kalao_contract; // 25 = 2.5% royalties if (_royalties_rate > 0 && _royalties_rate < 1000) { _setDefaultRoyalty(_royalties_recipient, _royalties_rate); } } function mint( address to, string memory uri ) public onlyOwner{ uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); _setTokenURI(tokenId, uri); setApprovalForAll(kalao_contract, true); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint96","name":"_royalties_rate","type":"uint96"},{"internalType":"address","name":"_royalties_recipient","type":"address"},{"internalType":"address","name":"_kalao_contract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kalao_contract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200271c3803806200271c8339810160408190526200003491620003ac565b8451859085906200004d90600090602085019062000236565b5080516200006390600190602084019062000236565b505050620000806200007a620000db60201b60201c565b620000df565b600f80546001600160a01b0319166001600160a01b0383161790556001600160601b03831615801590620000be57506103e8836001600160601b0316105b15620000d057620000d0828462000131565b5050505050620004ac565b3390565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001a55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620001fd5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200019c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b828054620002449062000459565b90600052602060002090601f016020900481019282620002685760008555620002b3565b82601f106200028357805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b357825182559160200191906001019062000296565b50620002c1929150620002c5565b5090565b5b80821115620002c15760008155600101620002c6565b80516001600160a01b0381168114620002f457600080fd5b919050565b600082601f8301126200030a578081fd5b81516001600160401b038082111562000327576200032762000496565b604051601f8301601f19908116603f0116810190828211818310171562000352576200035262000496565b816040528381526020925086838588010111156200036e578485fd5b8491505b8382101562000391578582018301518183018401529082019062000372565b83821115620003a257848385830101525b9695505050505050565b600080600080600060a08688031215620003c4578081fd5b85516001600160401b0380821115620003db578283fd5b620003e989838a01620002f9565b96506020880151915080821115620003ff578283fd5b506200040e88828901620002f9565b604088015190955090506001600160601b03811681146200042d578182fd5b92506200043d60608701620002dc565b91506200044d60808701620002dc565b90509295509295909350565b600181811c908216806200046e57607f821691505b602082108114156200049057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61226080620004bc6000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806370a08231116100d8578063b88d4fde1161008c578063d0def52111610066578063d0def52114610327578063e985e9c51461033a578063f2fde38b1461037657610182565b8063b88d4fde146102ee578063bad03aef14610301578063c87b56dd1461031457610182565b80638da5cb5b116100bd5780638da5cb5b146102c257806395d89b41146102d3578063a22cb465146102db57610182565b806370a08231146102a7578063715018a6146102ba57610182565b806323b872dd1161013a57806342842e0e1161011457806342842e0e1461026e5780634f6ccce7146102815780636352211e1461029457610182565b806323b872dd146102165780632a55205a146102295780632f745c591461025b57610182565b8063081812fc1161016b578063081812fc146101c4578063095ea7b3146101ef57806318160ddd1461020457610182565b806301ffc9a71461018757806306fdde03146101af575b600080fd5b61019a610195366004611fbf565b610389565b60405190151581526020015b60405180910390f35b6101b761039c565b6040516101a691906120c7565b6101d76101d2366004611ff7565b61042e565b6040516001600160a01b0390911681526020016101a6565b6102026101fd366004611f96565b6104c8565b005b6008545b6040519081526020016101a6565b610202610224366004611e49565b6105fa565b61023c61023736600461200f565b610681565b604080516001600160a01b0390931683526020830191909152016101a6565b610208610269366004611f96565b61073c565b61020261027c366004611e49565b6107e4565b61020861028f366004611ff7565b6107ff565b6101d76102a2366004611ff7565b6108b1565b6102086102b5366004611dfd565b61093c565b6102026109d6565b600d546001600160a01b03166101d7565b6101b7610a3c565b6102026102e9366004611efd565b610a4b565b6102026102fc366004611e84565b610a5a565b600f546101d7906001600160a01b031681565b6101b7610322366004611ff7565b610ae8565b610202610335366004611f37565b610af3565b61019a610348366004611e17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610202610384366004611dfd565b610b93565b600061039482610c75565b90505b919050565b6060600080546103ab90612168565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790612168565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104d3826108b1565b9050806001600160a01b0316836001600160a01b0316141561055d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016104a3565b336001600160a01b038216148061057957506105798133610348565b6105eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104a3565b6105f58383610cb3565b505050565b6106043382610d2e565b6106765760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104a3565b6105f5838383610e25565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610700575060408051808201909152600b546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610724906bffffffffffffffffffffffff1687612106565b61072e91906120f2565b915196919550909350505050565b60006107478361093c565b82106107bb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016104a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105f583838360405180602001604052806000815250610a5a565b600061080a60085490565b821061087e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016104a3565b6008828154811061089f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016104a3565b60006001600160a01b0382166109ba5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016104a3565b506001600160a01b031660009081526003602052604090205490565b600d546001600160a01b03163314610a305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a3565b610a3a600061100a565b565b6060600180546103ab90612168565b610a56338383611069565b5050565b610a643383610d2e565b610ad65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016104a3565b610ae284848484611138565b50505050565b6060610394826111b6565b600d546001600160a01b03163314610b4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a3565b6000610b58600e5490565b9050610b68600e80546001019055565b610b728382611342565b610b7c818361135c565b600f546105f5906001600160a01b03166001610a4b565b600d546001600160a01b03163314610bed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a3565b6001600160a01b038116610c695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104a3565b610c728161100a565b50565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610394575061039482611405565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610cf5826108b1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610da75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104a3565b6000610db2836108b1565b9050806001600160a01b0316846001600160a01b03161480610df957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e1d5750836001600160a01b0316610e128461042e565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e38826108b1565b6001600160a01b031614610eb45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016104a3565b6001600160a01b038216610f2f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104a3565b610f3a838383611443565b610f45600082610cb3565b6001600160a01b0383166000908152600360205260408120805460019290610f6e908490612125565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f9c9084906120da565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46105f5565b600d80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110cb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611143848484610e25565b61114f8484848461144e565b610ae25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104a3565b6000818152600260205260409020546060906001600160a01b03166112435760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060648201526084016104a3565b6000828152600a60205260408120805461125c90612168565b80601f016020809104026020016040519081016040528092919081815260200182805461128890612168565b80156112d55780601f106112aa576101008083540402835291602001916112d5565b820191906000526020600020905b8154815290600101906020018083116112b857829003601f168201915b5050505050905060006112f360408051602081019091526000815290565b905080516000141561130757509050610397565b81511561133957808260405160200161132192919061205c565b60405160208183030381529060405292505050610397565b610e1d846115a6565b610a5682826040518060200160405280600081525061169c565b6000828152600260205260409020546001600160a01b03166113e65760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e00000000000000000000000000000000000060648201526084016104a3565b6000828152600a6020908152604090912082516105f592840190611cd7565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061039457506103948261171a565b6105f58383836117b5565b60006001600160a01b0384163b1561159b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061149290339089908890889060040161208b565b602060405180830381600087803b1580156114ac57600080fd5b505af19250505080156114dc575060408051601f3d908101601f191682019092526114d991810190611fdb565b60015b611581573d80801561150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b5080516115795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e1d565b506001949350505050565b6000818152600260205260409020546060906001600160a01b03166116335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016104a3565b600061164a60408051602081019091526000815290565b9050600081511161166a5760405180602001604052806000815250611695565b8061167484611872565b60405160200161168592919061205c565b6040516020818303038152906040525b9392505050565b6116a683836119c1565b6116b3600084848461144e565b6105f55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016104a3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061177d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061039457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610394565b6001600160a01b0383166118105761180b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611833565b816001600160a01b0316836001600160a01b031614611833576118338382611b1d565b6001600160a01b03821661184f5761184a81611bba565b6105f5565b826001600160a01b0316826001600160a01b0316146105f5576105f58282611c93565b6060816118b3575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610397565b8160005b81156118dd57806118c7816121a3565b91506118d69050600a836120f2565b91506118b7565b60008167ffffffffffffffff81111561190657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611930576020820181803683370190505b5090505b8415610e1d57611945600183612125565b9150611952600a866121be565b61195d9060306120da565b60f81b81838151811061198057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119ba600a866120f2565b9450611934565b6001600160a01b038216611a175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a3565b6000818152600260205260409020546001600160a01b031615611a7c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a3565b611a8860008383611443565b6001600160a01b0382166000908152600360205260408120805460019290611ab19084906120da565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610a56565b60006001611b2a8461093c565b611b349190612125565b600083815260076020526040902054909150808214611b87576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bcc90600190612125565b60008381526009602052604081205460088054939450909284908110611c0257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c3157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c7757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611c9e8361093c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ce390612168565b90600052602060002090601f016020900481019282611d055760008555611d4b565b82601f10611d1e57805160ff1916838001178555611d4b565b82800160010185558215611d4b579182015b82811115611d4b578251825591602001919060010190611d30565b50611d57929150611d5b565b5090565b5b80821115611d575760008155600101611d5c565b600067ffffffffffffffff80841115611d8b57611d8b6121fe565b604051601f8501601f19908116603f01168101908282118183101715611db357611db36121fe565b81604052809350858152868686011115611dcc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461039757600080fd5b600060208284031215611e0e578081fd5b61169582611de6565b60008060408385031215611e29578081fd5b611e3283611de6565b9150611e4060208401611de6565b90509250929050565b600080600060608486031215611e5d578081fd5b611e6684611de6565b9250611e7460208501611de6565b9150604084013590509250925092565b60008060008060808587031215611e99578081fd5b611ea285611de6565b9350611eb060208601611de6565b925060408501359150606085013567ffffffffffffffff811115611ed2578182fd5b8501601f81018713611ee2578182fd5b611ef187823560208401611d70565b91505092959194509250565b60008060408385031215611f0f578182fd5b611f1883611de6565b915060208301358015158114611f2c578182fd5b809150509250929050565b60008060408385031215611f49578182fd5b611f5283611de6565b9150602083013567ffffffffffffffff811115611f6d578182fd5b8301601f81018513611f7d578182fd5b611f8c85823560208401611d70565b9150509250929050565b60008060408385031215611fa8578182fd5b611fb183611de6565b946020939093013593505050565b600060208284031215611fd0578081fd5b813561169581612214565b600060208284031215611fec578081fd5b815161169581612214565b600060208284031215612008578081fd5b5035919050565b60008060408385031215612021578182fd5b50508035926020909101359150565b6000815180845261204881602086016020860161213c565b601f01601f19169290920160200192915050565b6000835161206e81846020880161213c565b83519083019061208281836020880161213c565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526120bd6080830184612030565b9695505050505050565b6000602082526116956020830184612030565b600082198211156120ed576120ed6121d2565b500190565b600082612101576121016121e8565b500490565b6000816000190483118215151615612120576121206121d2565b500290565b600082821015612137576121376121d2565b500390565b60005b8381101561215757818101518382015260200161213f565b83811115610ae25750506000910152565b600181811c9082168061217c57607f821691505b6020821081141561219d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121b7576121b76121d2565b5060010190565b6000826121cd576121cd6121e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7257600080fdfea26469706673582212203017de4027d90dcd6bc196e015499d64ec3bbf0f828a02511ca6c7ee97454aac64736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab7b1563c4ca2a002b3f8bff9dc1499cedf8e4f3000000000000000000000000eff2357c9e40103ac4d268b32de478e4fbbfc4f0000000000000000000000000000000000000000000000000000000000000000a746f796f7461206d72320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036d72320000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
54321:1868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55963:221;;;;;;:::i;:::-;;:::i;:::-;;;6504:14:1;;6497:22;6479:41;;6467:2;6452:18;55963:221:0;;;;;;;;22688:100;;;:::i;:::-;;;;;;;:::i;24248:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5454:55:1;;;5436:74;;5424:2;5409:18;24248:221:0;5391:125:1;23771:411:0;;;;;;:::i;:::-;;:::i;:::-;;42708:113;42796:10;:17;42708:113;;;14937:25:1;;;14925:2;14910:18;42708:113:0;14892:76:1;24998:339:0;;;;;;:::i;:::-;;:::i;37424:442::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6229:55:1;;;6211:74;;6316:2;6301:18;;6294:34;;;;6184:18;37424:442:0;6166:168:1;42376:256:0;;;;;;:::i;:::-;;:::i;25408:185::-;;;;;;:::i;:::-;;:::i;42898:233::-;;;;;;:::i;:::-;;:::i;22382:239::-;;;;;;:::i;:::-;;:::i;22112:208::-;;;;;;:::i;:::-;;:::i;51946:103::-;;;:::i;51295:87::-;51368:6;;-1:-1:-1;;;;;51368:6:0;51295:87;;22857:104;;;:::i;24541:155::-;;;;;;:::i;:::-;;:::i;25664:328::-;;;;;;:::i;:::-;;:::i;54512:29::-;;;;;-1:-1:-1;;;;;54512:29:0;;;55759:196;;;;;;:::i;:::-;;:::i;55007:305::-;;;;;;:::i;:::-;;:::i;24767:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24888:25:0;;;24864:4;24888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24767:164;52204:201;;;;;;:::i;:::-;;:::i;55963:221::-;56111:4;56140:36;56164:11;56140:23;:36::i;:::-;56133:43;;55963:221;;;;:::o;22688:100::-;22742:13;22775:5;22768:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22688:100;:::o;24248:221::-;24324:7;27591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27591:16:0;24344:73;;;;-1:-1:-1;;;24344:73:0;;12570:2:1;24344:73:0;;;12552:21:1;12609:2;12589:18;;;12582:30;12648:34;12628:18;;;12621:62;-1:-1:-1;;;12699:18:1;;;12692:42;12751:19;;24344:73:0;;;;;;;;;-1:-1:-1;24437:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24437:24:0;;24248:221::o;23771:411::-;23852:13;23868:23;23883:7;23868:14;:23::i;:::-;23852:39;;23916:5;-1:-1:-1;;;;;23910:11:0;:2;-1:-1:-1;;;;;23910:11:0;;;23902:57;;;;-1:-1:-1;;;23902:57:0;;13760:2:1;23902:57:0;;;13742:21:1;13799:2;13779:18;;;13772:30;13838:34;13818:18;;;13811:62;13909:3;13889:18;;;13882:31;13930:19;;23902:57:0;13732:223:1;23902:57:0;17029:10;-1:-1:-1;;;;;23994:21:0;;;;:62;;-1:-1:-1;24019:37:0;24036:5;17029:10;24043:12;16949:98;24019:37;23972:168;;;;-1:-1:-1;;;23972:168:0;;10130:2:1;23972:168:0;;;10112:21:1;10169:2;10149:18;;;10142:30;10208:34;10188:18;;;10181:62;10279:26;10259:18;;;10252:54;10323:19;;23972:168:0;10102:246:1;23972:168:0;24153:21;24162:2;24166:7;24153:8;:21::i;:::-;23771:411;;;:::o;24998:339::-;25193:41;17029:10;25226:7;25193:18;:41::i;:::-;25185:103;;;;-1:-1:-1;;;25185:103:0;;14162:2:1;25185:103:0;;;14144:21:1;14201:2;14181:18;;;14174:30;14240:34;14220:18;;;14213:62;14311:19;14291:18;;;14284:47;14348:19;;25185:103:0;14134:239:1;25185:103:0;25301:28;25311:4;25317:2;25321:7;25301:9;:28::i;37424:442::-;37521:7;37579:27;;;:17;:27;;;;;;;;37550:56;;;;;;;;;-1:-1:-1;;;;;37550:56:0;;;;;-1:-1:-1;;;37550:56:0;;;;;;;;;;;;37521:7;;37619:92;;-1:-1:-1;37670:29:0;;;;;;;;;37680:19;37670:29;-1:-1:-1;;;;;37670:29:0;;;;-1:-1:-1;;;37670:29:0;;;;;;;;37619:92;37761:23;;;;37723:21;;38232:5;;37748:36;;37747:58;37748:36;:10;:36;:::i;:::-;37747:58;;;;:::i;:::-;37826:16;;;;;-1:-1:-1;37424:442:0;;-1:-1:-1;;;;37424:442:0:o;42376:256::-;42473:7;42509:23;42526:5;42509:16;:23::i;:::-;42501:5;:31;42493:87;;;;-1:-1:-1;;;42493:87:0;;6957:2:1;42493:87:0;;;6939:21:1;6996:2;6976:18;;;6969:30;7035:34;7015:18;;;7008:62;7106:13;7086:18;;;7079:41;7137:19;;42493:87:0;6929:233:1;42493:87:0;-1:-1:-1;;;;;;42598:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42376:256::o;25408:185::-;25546:39;25563:4;25569:2;25573:7;25546:39;;;;;;;;;;;;:16;:39::i;42898:233::-;42973:7;43009:30;42796:10;:17;42708:113;;43009:30;43001:5;:38;42993:95;;;;-1:-1:-1;;;42993:95:0;;14580:2:1;42993:95:0;;;14562:21:1;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;14729:14;14709:18;;;14702:42;14761:19;;42993:95:0;14552:234:1;42993:95:0;43106:10;43117:5;43106:17;;;;;;-1:-1:-1;;;43106:17:0;;;;;;;;;;;;;;;;;43099:24;;42898:233;;;:::o;22382:239::-;22454:7;22490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22490:16:0;22525:19;22517:73;;;;-1:-1:-1;;;22517:73:0;;10966:2:1;22517:73:0;;;10948:21:1;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;11115:11;11095:18;;;11088:39;11144:19;;22517:73:0;10938:231:1;22112:208:0;22184:7;-1:-1:-1;;;;;22212:19:0;;22204:74;;;;-1:-1:-1;;;22204:74:0;;10555:2:1;22204:74:0;;;10537:21:1;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;10704:12;10684:18;;;10677:40;10734:19;;22204:74:0;10527:232:1;22204:74:0;-1:-1:-1;;;;;;22296:16:0;;;;;:9;:16;;;;;;;22112:208::o;51946:103::-;51368:6;;-1:-1:-1;;;;;51368:6:0;17029:10;51515:23;51507:68;;;;-1:-1:-1;;;51507:68:0;;12983:2:1;51507:68:0;;;12965:21:1;;;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;13113:18;;51507:68:0;12955:182:1;51507:68:0;52011:30:::1;52038:1;52011:18;:30::i;:::-;51946:103::o:0;22857:104::-;22913:13;22946:7;22939:14;;;;;:::i;24541:155::-;24636:52;17029:10;24669:8;24679;24636:18;:52::i;:::-;24541:155;;:::o;25664:328::-;25839:41;17029:10;25872:7;25839:18;:41::i;:::-;25831:103;;;;-1:-1:-1;;;25831:103:0;;14162:2:1;25831:103:0;;;14144:21:1;14201:2;14181:18;;;14174:30;14240:34;14220:18;;;14213:62;14311:19;14291:18;;;14284:47;14348:19;;25831:103:0;14134:239:1;25831:103:0;25945:39;25959:4;25965:2;25969:7;25978:5;25945:13;:39::i;:::-;25664:328;;;;:::o;55759:196::-;55886:13;55924:23;55939:7;55924:14;:23::i;55007:305::-;51368:6;;-1:-1:-1;;;;;51368:6:0;17029:10;51515:23;51507:68;;;;-1:-1:-1;;;51507:68:0;;12983:2:1;51507:68:0;;;12965:21:1;;;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;13113:18;;51507:68:0;12955:182:1;51507:68:0;55104:15:::1;55122:25;:15;53735:14:::0;;53643:114;55122:25:::1;55104:43;;55158:27;:15;53854:19:::0;;53872:1;53854:19;;;53765:127;55158:27:::1;55196:22;55206:2;55210:7;55196:9;:22::i;:::-;55229:26;55242:7;55251:3;55229:12;:26::i;:::-;55283:14;::::0;55265:39:::1;::::0;-1:-1:-1;;;;;55283:14:0::1;::::0;55265:17:::1;:39::i;52204:201::-:0;51368:6;;-1:-1:-1;;;;;51368:6:0;17029:10;51515:23;51507:68;;;;-1:-1:-1;;;51507:68:0;;12983:2:1;51507:68:0;;;12965:21:1;;;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;13113:18;;51507:68:0;12955:182:1;51507:68:0;-1:-1:-1;;;;;52293:22:0;::::1;52285:73;;;::::0;-1:-1:-1;;;52285:73:0;;7788:2:1;52285:73:0::1;::::0;::::1;7770:21:1::0;7827:2;7807:18;;;7800:30;7866:34;7846:18;;;7839:62;7937:8;7917:18;;;7910:36;7963:19;;52285:73:0::1;7760:228:1::0;52285:73:0::1;52369:28;52388:8;52369:18;:28::i;:::-;52204:201:::0;:::o;37154:215::-;37256:4;-1:-1:-1;;;;;;37280:41:0;;37295:26;37280:41;;:81;;;37325:36;37349:11;37325:23;:36::i;31648:174::-;31723:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;31723:29:0;-1:-1:-1;;;;;31723:29:0;;;;;;;;:24;;31777:23;31723:24;31777:14;:23::i;:::-;-1:-1:-1;;;;;31768:46:0;;;;;;;;;;;31648:174;;:::o;27796:348::-;27889:4;27591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27591:16:0;27906:73;;;;-1:-1:-1;;;27906:73:0;;9717:2:1;27906:73:0;;;9699:21:1;9756:2;9736:18;;;9729:30;9795:34;9775:18;;;9768:62;-1:-1:-1;;;9846:18:1;;;9839:42;9898:19;;27906:73:0;9689:234:1;27906:73:0;27990:13;28006:23;28021:7;28006:14;:23::i;:::-;27990:39;;28059:5;-1:-1:-1;;;;;28048:16:0;:7;-1:-1:-1;;;;;28048:16:0;;:52;;;-1:-1:-1;;;;;;24888:25:0;;;24864:4;24888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28068:32;28048:87;;;;28128:7;-1:-1:-1;;;;;28104:31:0;:20;28116:7;28104:11;:20::i;:::-;-1:-1:-1;;;;;28104:31:0;;28048:87;28040:96;27796:348;-1:-1:-1;;;;27796:348:0:o;30905:625::-;31064:4;-1:-1:-1;;;;;31037:31:0;:23;31052:7;31037:14;:23::i;:::-;-1:-1:-1;;;;;31037:31:0;;31029:81;;;;-1:-1:-1;;;31029:81:0;;8195:2:1;31029:81:0;;;8177:21:1;8234:2;8214:18;;;8207:30;8273:34;8253:18;;;8246:62;8344:7;8324:18;;;8317:35;8369:19;;31029:81:0;8167:227:1;31029:81:0;-1:-1:-1;;;;;31129:16:0;;31121:65;;;;-1:-1:-1;;;31121:65:0;;8958:2:1;31121:65:0;;;8940:21:1;8997:2;8977:18;;;8970:30;9036:34;9016:18;;;9009:62;9107:6;9087:18;;;9080:34;9131:19;;31121:65:0;8930:226:1;31121:65:0;31199:39;31220:4;31226:2;31230:7;31199:20;:39::i;:::-;31303:29;31320:1;31324:7;31303:8;:29::i;:::-;-1:-1:-1;;;;;31345:15:0;;;;;;:9;:15;;;;;:20;;31364:1;;31345:15;:20;;31364:1;;31345:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31376:13:0;;;;;;:9;:13;;;;;:18;;31393:1;;31376:13;:18;;31393:1;;31376:18;:::i;:::-;;;;-1:-1:-1;;31405:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;31405:21:0;-1:-1:-1;;;;;31405:21:0;;;;;;;;;31444:27;;31405:16;;31444:27;;;;;;;31484:38;23771:411;52565:191;52658:6;;;-1:-1:-1;;;;;52675:17:0;;;-1:-1:-1;;52675:17:0;;;;;;;52708:40;;52658:6;;;52675:17;52658:6;;52708:40;;52639:16;;52708:40;52565:191;;:::o;31964:315::-;32119:8;-1:-1:-1;;;;;32110:17:0;:5;-1:-1:-1;;;;;32110:17:0;;;32102:55;;;;-1:-1:-1;;;32102:55:0;;9363:2:1;32102:55:0;;;9345:21:1;9402:2;9382:18;;;9375:30;9441:27;9421:18;;;9414:55;9486:18;;32102:55:0;9335:175:1;32102:55:0;-1:-1:-1;;;;;32168:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32168:46:0;;;;;;;;;;32230:41;;6479::1;;;32230::0;;6452:18:1;32230:41:0;;;;;;;31964:315;;;:::o;26874:::-;27031:28;27041:4;27047:2;27051:7;27031:9;:28::i;:::-;27078:48;27101:4;27107:2;27111:7;27120:5;27078:22;:48::i;:::-;27070:111;;;;-1:-1:-1;;;27070:111:0;;7369:2:1;27070:111:0;;;7351:21:1;7408:2;7388:18;;;7381:30;7447:34;7427:18;;;7420:62;-1:-1:-1;;;7498:18:1;;;7491:48;7556:19;;27070:111:0;7341:240:1;48733:679:0;27567:4;27591:16;;;:7;:16;;;;;;48806:13;;-1:-1:-1;;;;;27591:16:0;48832:78;;;;-1:-1:-1;;;48832:78:0;;12152:2:1;48832:78:0;;;12134:21:1;12191:2;12171:18;;;12164:30;12230:34;12210:18;;;12203:62;12301:19;12281:18;;;12274:47;12338:19;;48832:78:0;12124:239:1;48832:78:0;48923:23;48949:19;;;:10;:19;;;;;48923:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48979:18;49000:10;23692:9;;;;;;;;;-1:-1:-1;23692:9:0;;23615:94;;49000:10;48979:31;;49092:4;49086:18;49108:1;49086:23;49082:72;;;-1:-1:-1;49133:9:0;-1:-1:-1;49126:16:0;;49082:72;49258:23;;:27;49254:108;;49333:4;49339:9;49316:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49302:48;;;;;;49254:108;49381:23;49396:7;49381:14;:23::i;28486:110::-;28562:26;28572:2;28576:7;28562:26;;;;;;;;;;;;:9;:26::i;49568:217::-;27567:4;27591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27591:16:0;49660:75;;;;-1:-1:-1;;;49660:75:0;;11376:2:1;49660:75:0;;;11358:21:1;11415:2;11395:18;;;11388:30;11454:34;11434:18;;;11427:62;11525:16;11505:18;;;11498:44;11559:19;;49660:75:0;11348:236:1;49660:75:0;49746:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;42068:224::-;42170:4;-1:-1:-1;;;;;;42194:50:0;;42209:35;42194:50;;:90;;;42248:36;42272:11;42248:23;:36::i;55390:215::-;55552:45;55579:4;55585:2;55589:7;55552:26;:45::i;32844:799::-;32999:4;-1:-1:-1;;;;;33020:13:0;;9287:19;:23;33016:620;;33056:72;;-1:-1:-1;;;33056:72:0;;-1:-1:-1;;;;;33056:36:0;;;;;:72;;17029:10;;33107:4;;33113:7;;33122:5;;33056:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33056:72:0;;;;;;;;-1:-1:-1;;33056:72:0;;;;;;;;;;;;:::i;:::-;;;33052:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33298:13:0;;33294:272;;33341:60;;-1:-1:-1;;;33341:60:0;;7369:2:1;33341:60:0;;;7351:21:1;7408:2;7388:18;;;7381:30;7447:34;7427:18;;;7420:62;-1:-1:-1;;;7498:18:1;;;7491:48;7556:19;;33341:60:0;7341:240:1;33294:272:0;33516:6;33510:13;33501:6;33497:2;33493:15;33486:38;33052:529;-1:-1:-1;;;;;;33179:51:0;-1:-1:-1;;;33179:51:0;;-1:-1:-1;33172:58:0;;33016:620;-1:-1:-1;33620:4:0;32844:799;;;;;;:::o;23032:334::-;27567:4;27591:16;;;:7;:16;;;;;;23105:13;;-1:-1:-1;;;;;27591:16:0;23131:76;;;;-1:-1:-1;;;23131:76:0;;13344:2:1;23131:76:0;;;13326:21:1;13383:2;13363:18;;;13356:30;13422:34;13402:18;;;13395:62;13493:17;13473:18;;;13466:45;13528:19;;23131:76:0;13316:237:1;23131:76:0;23220:21;23244:10;23692:9;;;;;;;;;-1:-1:-1;23692:9:0;;23615:94;;23244:10;23220:34;;23296:1;23278:7;23272:21;:25;:86;;;;;;;;;;;;;;;;;23324:7;23333:18;:7;:16;:18::i;:::-;23307:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23272:86;23265:93;23032:334;-1:-1:-1;;;23032:334:0:o;28823:321::-;28953:18;28959:2;28963:7;28953:5;:18::i;:::-;29004:54;29035:1;29039:2;29043:7;29052:5;29004:22;:54::i;:::-;28982:154;;;;-1:-1:-1;;;28982:154:0;;7369:2:1;28982:154:0;;;7351:21:1;7408:2;7388:18;;;7381:30;7447:34;7427:18;;;7420:62;-1:-1:-1;;;7498:18:1;;;7491:48;7556:19;;28982:154:0;7341:240:1;21743:305:0;21845:4;-1:-1:-1;;;;;;21882:40:0;;21897:25;21882:40;;:105;;-1:-1:-1;;;;;;;21939:48:0;;21954:33;21939:48;21882:105;:158;;;-1:-1:-1;20290:25:0;-1:-1:-1;;;;;;20275:40:0;;;22004:36;20166:157;43744:589;-1:-1:-1;;;;;43950:18:0;;43946:187;;43985:40;44017:7;45160:10;:17;;45133:24;;;;:15;:24;;;;;:44;;;45188:24;;;;;;;;;;;;45056:164;43985:40;43946:187;;;44055:2;-1:-1:-1;;;;;44047:10:0;:4;-1:-1:-1;;;;;44047:10:0;;44043:90;;44074:47;44107:4;44113:7;44074:32;:47::i;:::-;-1:-1:-1;;;;;44147:16:0;;44143:183;;44180:45;44217:7;44180:36;:45::i;:::-;44143:183;;;44253:4;-1:-1:-1;;;;;44247:10:0;:2;-1:-1:-1;;;;;44247:10:0;;44243:83;;44274:40;44302:2;44306:7;44274:27;:40::i;17536:723::-;17592:13;17813:10;17809:53;;-1:-1:-1;17840:10:0;;;;;;;;;;;;;;;;;;;17809:53;17887:5;17872:12;17928:78;17935:9;;17928:78;;17961:8;;;;:::i;:::-;;-1:-1:-1;17984:10:0;;-1:-1:-1;17992:2:0;17984:10;;:::i;:::-;;;17928:78;;;18016:19;18048:6;18038:17;;;;;;-1:-1:-1;;;18038:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18038:17:0;;18016:39;;18066:154;18073:10;;18066:154;;18100:11;18110:1;18100:11;;:::i;:::-;;-1:-1:-1;18169:10:0;18177:2;18169:5;:10;:::i;:::-;18156:24;;:2;:24;:::i;:::-;18143:39;;18126:6;18133;18126:14;;;;;;-1:-1:-1;;;18126:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;18197:11:0;18206:2;18197:11;;:::i;:::-;;;18066:154;;29480:439;-1:-1:-1;;;;;29560:16:0;;29552:61;;;;-1:-1:-1;;;29552:61:0;;11791:2:1;29552:61:0;;;11773:21:1;;;11810:18;;;11803:30;11869:34;11849:18;;;11842:62;11921:18;;29552:61:0;11763:182:1;29552:61:0;27567:4;27591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27591:16:0;:30;29624:58;;;;-1:-1:-1;;;29624:58:0;;8601:2:1;29624:58:0;;;8583:21:1;8640:2;8620:18;;;8613:30;8679;8659:18;;;8652:58;8727:18;;29624:58:0;8573:178:1;29624:58:0;29695:45;29724:1;29728:2;29732:7;29695:20;:45::i;:::-;-1:-1:-1;;;;;29753:13:0;;;;;;:9;:13;;;;;:18;;29770:1;;29753:13;:18;;29770:1;;29753:18;:::i;:::-;;;;-1:-1:-1;;29782:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;29782:21:0;-1:-1:-1;;;;;29782:21:0;;;;;;;;29821:33;;29782:16;;;29821:33;;29782:16;;29821:33;29867:44;23771:411;45847:988;46113:22;46163:1;46138:22;46155:4;46138:16;:22::i;:::-;:26;;;;:::i;:::-;46175:18;46196:26;;;:17;:26;;;;;;46113:51;;-1:-1:-1;46329:28:0;;;46325:328;;-1:-1:-1;;;;;46396:18:0;;46374:19;46396:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46447:30;;;;;;:44;;;46564:30;;:17;:30;;;;;:43;;;46325:328;-1:-1:-1;46749:26:0;;;;:17;:26;;;;;;;;46742:33;;;-1:-1:-1;;;;;46793:18:0;;;;;:12;:18;;;;;:34;;;;;;;46786:41;45847:988::o;47130:1079::-;47408:10;:17;47383:22;;47408:21;;47428:1;;47408:21;:::i;:::-;47440:18;47461:24;;;:15;:24;;;;;;47834:10;:26;;47383:46;;-1:-1:-1;47461:24:0;;47383:46;;47834:26;;;;-1:-1:-1;;;47834:26:0;;;;;;;;;;;;;;;;;47812:48;;47898:11;47873:10;47884;47873:22;;;;;;-1:-1:-1;;;47873:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;47978:28;;;:15;:28;;;;;;;:41;;;48150:24;;;;;48143:31;48185:10;:16;;;;;-1:-1:-1;;;48185:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47130:1079;;;;:::o;44634:221::-;44719:14;44736:20;44753:2;44736:16;:20::i;:::-;-1:-1:-1;;;;;44767:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44812:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44634:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;851:196;;963:2;951:9;942:7;938:23;934:32;931:2;;;984:6;976;969:22;931:2;1012:29;1031:9;1012:29;:::i;1052:270::-;;;1181:2;1169:9;1160:7;1156:23;1152:32;1149:2;;;1202:6;1194;1187:22;1149:2;1230:29;1249:9;1230:29;:::i;:::-;1220:39;;1278:38;1312:2;1301:9;1297:18;1278:38;:::i;:::-;1268:48;;1139:183;;;;;:::o;1327:338::-;;;;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1494:6;1486;1479:22;1441:2;1522:29;1541:9;1522:29;:::i;:::-;1512:39;;1570:38;1604:2;1593:9;1589:18;1570:38;:::i;:::-;1560:48;;1655:2;1644:9;1640:18;1627:32;1617:42;;1431:234;;;;;:::o;1670:696::-;;;;;1842:3;1830:9;1821:7;1817:23;1813:33;1810:2;;;1864:6;1856;1849:22;1810:2;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2107:18;2099:6;2096:30;2093:2;;;2144:6;2136;2129:22;2093:2;2172:22;;2225:4;2217:13;;2213:27;-1:-1:-1;2203:2:1;;2259:6;2251;2244:22;2203:2;2287:73;2352:7;2347:2;2334:16;2329:2;2325;2321:11;2287:73;:::i;:::-;2277:83;;;1800:566;;;;;;;:::o;2371:367::-;;;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2518:6;2510;2503:22;2465:2;2546:29;2565:9;2546:29;:::i;:::-;2536:39;;2625:2;2614:9;2610:18;2597:32;2672:5;2665:13;2658:21;2651:5;2648:32;2638:2;;2699:6;2691;2684:22;2638:2;2727:5;2717:15;;;2455:283;;;;;:::o;2743:554::-;;;2882:2;2870:9;2861:7;2857:23;2853:32;2850:2;;;2903:6;2895;2888:22;2850:2;2931:29;2950:9;2931:29;:::i;:::-;2921:39;;3011:2;3000:9;2996:18;2983:32;3038:18;3030:6;3027:30;3024:2;;;3075:6;3067;3060:22;3024:2;3103:22;;3156:4;3148:13;;3144:27;-1:-1:-1;3134:2:1;;3190:6;3182;3175:22;3134:2;3218:73;3283:7;3278:2;3265:16;3260:2;3256;3252:11;3218:73;:::i;:::-;3208:83;;;2840:457;;;;;:::o;3302:264::-;;;3431:2;3419:9;3410:7;3406:23;3402:32;3399:2;;;3452:6;3444;3437:22;3399:2;3480:29;3499:9;3480:29;:::i;:::-;3470:39;3556:2;3541:18;;;;3528:32;;-1:-1:-1;;;3389:177:1:o;3571:255::-;;3682:2;3670:9;3661:7;3657:23;3653:32;3650:2;;;3703:6;3695;3688:22;3650:2;3747:9;3734:23;3766:30;3790:5;3766:30;:::i;3831:259::-;;3953:2;3941:9;3932:7;3928:23;3924:32;3921:2;;;3974:6;3966;3959:22;3921:2;4011:9;4005:16;4030:30;4054:5;4030:30;:::i;4095:190::-;;4207:2;4195:9;4186:7;4182:23;4178:32;4175:2;;;4228:6;4220;4213:22;4175:2;-1:-1:-1;4256:23:1;;4165:120;-1:-1:-1;4165:120:1:o;4290:258::-;;;4419:2;4407:9;4398:7;4394:23;4390:32;4387:2;;;4440:6;4432;4425:22;4387:2;-1:-1:-1;;4468:23:1;;;4538:2;4523:18;;;4510:32;;-1:-1:-1;4377:171:1:o;4553:257::-;;4632:5;4626:12;4659:6;4654:3;4647:19;4675:63;4731:6;4724:4;4719:3;4715:14;4708:4;4701:5;4697:16;4675:63;:::i;:::-;4792:2;4771:15;-1:-1:-1;;4767:29:1;4758:39;;;;4799:4;4754:50;;4602:208;-1:-1:-1;;4602:208:1:o;4815:470::-;;5032:6;5026:13;5048:53;5094:6;5089:3;5082:4;5074:6;5070:17;5048:53;:::i;:::-;5164:13;;5123:16;;;;5186:57;5164:13;5123:16;5220:4;5208:17;;5186:57;:::i;:::-;5259:20;;5002:283;-1:-1:-1;;;;5002:283:1:o;5521:511::-;;-1:-1:-1;;;;;5825:2:1;5817:6;5813:15;5802:9;5795:34;5877:2;5869:6;5865:15;5860:2;5849:9;5845:18;5838:43;;5917:6;5912:2;5901:9;5897:18;5890:34;5960:3;5955:2;5944:9;5940:18;5933:31;5981:45;6021:3;6010:9;6006:19;5998:6;5981:45;:::i;:::-;5973:53;5724:308;-1:-1:-1;;;;;;5724:308:1:o;6531:219::-;;6680:2;6669:9;6662:21;6700:44;6740:2;6729:9;6725:18;6717:6;6700:44;:::i;14973:128::-;;15044:1;15040:6;15037:1;15034:13;15031:2;;;15050:18;;:::i;:::-;-1:-1:-1;15086:9:1;;15021:80::o;15106:120::-;;15172:1;15162:2;;15177:18;;:::i;:::-;-1:-1:-1;15211:9:1;;15152:74::o;15231:168::-;;15337:1;15333;15329:6;15325:14;15322:1;15319:21;15314:1;15307:9;15300:17;15296:45;15293:2;;;15344:18;;:::i;:::-;-1:-1:-1;15384:9:1;;15283:116::o;15404:125::-;;15472:1;15469;15466:8;15463:2;;;15477:18;;:::i;:::-;-1:-1:-1;15514:9:1;;15453:76::o;15534:258::-;15606:1;15616:113;15630:6;15627:1;15624:13;15616:113;;;15706:11;;;15700:18;15687:11;;;15680:39;15652:2;15645:10;15616:113;;;15747:6;15744:1;15741:13;15738:2;;;-1:-1:-1;;15782:1:1;15764:16;;15757:27;15587:205::o;15797:437::-;15876:1;15872:12;;;;15919;;;15940:2;;15994:4;15986:6;15982:17;15972:27;;15940:2;16047;16039:6;16036:14;16016:18;16013:38;16010:2;;;-1:-1:-1;;;16081:1:1;16074:88;16185:4;16182:1;16175:15;16213:4;16210:1;16203:15;16010:2;;15852:382;;;:::o;16239:135::-;;-1:-1:-1;;16299:17:1;;16296:2;;;16319:18;;:::i;:::-;-1:-1:-1;16366:1:1;16355:13;;16286:88::o;16379:112::-;;16437:1;16427:2;;16442:18;;:::i;:::-;-1:-1:-1;16476:9:1;;16417:74::o;16496:184::-;-1:-1:-1;;;16545:1:1;16538:88;16645:4;16642:1;16635:15;16669:4;16666:1;16659:15;16685:184;-1:-1:-1;;;16734:1:1;16727:88;16834:4;16831:1;16824:15;16858:4;16855:1;16848:15;16874:184;-1:-1:-1;;;16923:1:1;16916:88;17023:4;17020:1;17013:15;17047:4;17044:1;17037:15;17063:177;-1:-1:-1;;;;;;17141:5:1;17137:78;17130:5;17127:89;17117:2;;17230:1;17227;17220:12
Swarm Source
ipfs://3017de4027d90dcd6bc196e015499d64ec3bbf0f828a02511ca6c7ee97454aac