ERC-721
Overview
Max Total Supply
20,000 DejintaruRioNFT
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DejintaruRioNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DejintaruRioNFT
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // DejintaruRio // Telegram: https://t.me/dejintaru_rio_portal // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.1; /** * @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/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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/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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/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/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract DejintaruRioNFT is ERC721("DejintaruRioNFT", "DejintaruRioNFT"), Ownable { uint256 tokenCounter = 1; string public baseURI = "https://dejintaru.point.link/0.json"; //METADATA uint256 public maxMintAmount = 1; uint256 public MAX_TOKENS = 20000; using Strings for uint256; function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function setMaxTokens(uint256 _amount) public onlyOwner { MAX_TOKENS = _amount; } function _baseURI() internal view virtual override(ERC721) returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner() { baseURI = baseURI_; } function getUserBalance(address user) public view returns(uint256) { return balanceOf(user); } function totalSupply() public view returns(uint256) { return MAX_TOKENS; } function mintedSupply() public view returns(uint256) { return tokenCounter - 1; } function mint(uint256 _mintAmount) public { require(_mintAmount > 0, "Mint amount can't be zero."); require(tokenCounter + _mintAmount <= MAX_TOKENS, "ERC721: Max supply."); require(_mintAmount <= maxMintAmount, "Mint amount higher than limit."); require(balanceOf(_msgSender()) + _mintAmount <= maxMintAmount , "Total holding is limited."); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_msgSender(), tokenCounter); tokenCounter = tokenCounter + 1; } } function withdraw() onlyOwner external { payable(owner()).transfer(address(this).balance); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI)) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"user","type":"address"}],"name":"getUserBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600160075560e0604052602360808181529062001ceb60a03980516200002e9160089160209091019062000121565b506001600955614e20600a553480156200004757600080fd5b50604080518082018252600f8082526e11195a9a5b9d185c9d549a5bd39195608a1b602080840182815285518087019096529285528401528151919291620000929160009162000121565b508051620000a890600190602084019062000121565b505050620000c5620000bf620000cb60201b60201c565b620000cf565b62000204565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600281046001821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b611ad780620002146000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610311578063e985e9c514610324578063f2fde38b14610337578063f47c84c51461034a5761018e565b8063a22cb465146102e3578063b88d4fde146102f6578063c1bd8cf9146103095761018e565b80636c0360eb1461029d57806370a08231146102a5578063715018a6146102b85780638da5cb5b146102c057806395d89b41146102c8578063a0712d68146102d05761018e565b8063239c70ae1161014b57806342842e0e1161012557806342842e0e14610251578063477348921461026457806355f804b3146102775780636352211e1461028a5761018e565b8063239c70ae1461022e57806323b872dd146102365780633ccfd60b146102495761018e565b806301ffc9a71461019357806306fdde03146101bc578063081812fc146101d1578063095ea7b3146101f157806311e776fe1461020657806318160ddd14610219575b600080fd5b6101a66101a1366004611320565b610352565b6040516101b3919061144f565b60405180910390f35b6101c461037f565b6040516101b3919061145a565b6101e46101df36600461139e565b610411565b6040516101b391906113fe565b6102046101ff3660046112f7565b61045d565b005b61020461021436600461139e565b6104f5565b610221610539565b6040516101b391906119a5565b61022161053f565b610204610244366004611209565b610545565b61020461057d565b61020461025f366004611209565b6105ff565b6102216102723660046111bd565b61061a565b610204610285366004611358565b610625565b6101e461029836600461139e565b61067b565b6101c46106b0565b6102216102b33660046111bd565b61073e565b610204610782565b6101e46107cd565b6101c46107dc565b6102046102de36600461139e565b6107eb565b6102046102f13660046112bd565b6108d3565b610204610304366004611244565b6109a1565b6102216109e0565b6101c461031f36600461139e565b6109f6565b6101a66103323660046111d7565b610a6f565b6102046103453660046111bd565b610a9d565b610221610b0b565b60006001600160e01b0319821663780e9d6360e01b1480610377575061037782610b11565b90505b919050565b60606000805461038e90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546103ba90611a09565b80156104075780601f106103dc57610100808354040283529160200191610407565b820191906000526020600020905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b600061041c82610b51565b6104415760405162461bcd60e51b81526004016104389061178c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104688261067b565b9050806001600160a01b0316836001600160a01b0316141561049c5760405162461bcd60e51b815260040161043890611913565b806001600160a01b03166104ae610b6e565b6001600160a01b031614806104ca57506104ca81610332610b6e565b6104e65760405162461bcd60e51b815260040161043890611630565b6104f08383610b72565b505050565b6104fd610b6e565b6001600160a01b031661050e6107cd565b6001600160a01b0316146105345760405162461bcd60e51b81526004016104389061180f565b600a55565b600a5490565b60095481565b610556610550610b6e565b82610be0565b6105725760405162461bcd60e51b815260040161043890611954565b6104f0838383610c65565b610585610b6e565b6001600160a01b03166105966107cd565b6001600160a01b0316146105bc5760405162461bcd60e51b81526004016104389061180f565b6105c46107cd565b6001600160a01b03166108fc479081150290604051600060405180830381858888f193505050501580156105fc573d6000803e3d6000fd5b50565b6104f0838383604051806020016040528060008152506109a1565b60006103778261073e565b61062d610b6e565b6001600160a01b031661063e6107cd565b6001600160a01b0316146106645760405162461bcd60e51b81526004016104389061180f565b8051610677906008906020840190611097565b5050565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b81526004016104389061170e565b600880546106bd90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990611a09565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b505050505081565b60006001600160a01b0382166107665760405162461bcd60e51b8152600401610438906116c4565b506001600160a01b031660009081526003602052604090205490565b61078a610b6e565b6001600160a01b031661079b6107cd565b6001600160a01b0316146107c15760405162461bcd60e51b81526004016104389061180f565b6107cb6000610d92565b565b6006546001600160a01b031690565b60606001805461038e90611a09565b6000811161080b5760405162461bcd60e51b8152600401610438906117d8565b600a548160075461081c91906119ae565b111561083a5760405162461bcd60e51b815260040161043890611603565b60095481111561085c5760405162461bcd60e51b8152600401610438906118dc565b6009548161086b6102b3610b6e565b61087591906119ae565b11156108935760405162461bcd60e51b81526004016104389061168d565b60015b818111610677576108b06108a8610b6e565b600754610de4565b6007546108be9060016119ae565b600755806108cb81611a44565b915050610896565b6108db610b6e565b6001600160a01b0316826001600160a01b0316141561090c5760405162461bcd60e51b815260040161043890611580565b8060056000610919610b6e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561095d610b6e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610995919061144f565b60405180910390a35050565b6109b26109ac610b6e565b83610be0565b6109ce5760405162461bcd60e51b815260040161043890611954565b6109da84848484610dfe565b50505050565b600060016007546109f191906119c6565b905090565b6060610a0182610b51565b610a1d5760405162461bcd60e51b81526004016104389061188d565b6000610a27610e31565b90506000815111610a475760405180602001604052806000815250610a68565b80604051602001610a5891906113e2565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610aa5610b6e565b6001600160a01b0316610ab66107cd565b6001600160a01b031614610adc5760405162461bcd60e51b81526004016104389061180f565b6001600160a01b038116610b025760405162461bcd60e51b8152600401610438906114bf565b6105fc81610d92565b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610b4257506001600160e01b03198216635b5e139f60e01b145b80610377575061037782610e40565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ba78261067b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610beb82610b51565b610c075760405162461bcd60e51b8152600401610438906115b7565b6000610c128361067b565b9050806001600160a01b0316846001600160a01b03161480610c4d5750836001600160a01b0316610c4284610411565b6001600160a01b0316145b80610c5d5750610c5d8185610a6f565b949350505050565b826001600160a01b0316610c788261067b565b6001600160a01b031614610c9e5760405162461bcd60e51b815260040161043890611844565b6001600160a01b038216610cc45760405162461bcd60e51b81526004016104389061153c565b610ccf838383610e59565b610cda600082610b72565b6001600160a01b0383166000908152600360205260408120805460019290610d039084906119c6565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d319084906119ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610677828260405180602001604052806000815250610e64565b610e09848484610c65565b610e1584848484610e97565b6109da5760405162461bcd60e51b81526004016104389061146d565b60606008805461038e90611a09565b6001600160e01b031981166301ffc9a760e01b14919050565b6104f08383836104f0565b610e6e8383610fb2565b610e7b6000848484610e97565b6104f05760405162461bcd60e51b81526004016104389061146d565b6000610eab846001600160a01b0316611091565b15610fa757836001600160a01b031663150b7a02610ec7610b6e565b8786866040518563ffffffff1660e01b8152600401610ee99493929190611412565b602060405180830381600087803b158015610f0357600080fd5b505af1925050508015610f33575060408051601f3d908101601f19168201909252610f309181019061133c565b60015b610f8d573d808015610f61576040519150601f19603f3d011682016040523d82523d6000602084013e610f66565b606091505b508051610f855760405162461bcd60e51b81526004016104389061146d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c5d565b506001949350505050565b6001600160a01b038216610fd85760405162461bcd60e51b815260040161043890611757565b610fe181610b51565b15610ffe5760405162461bcd60e51b815260040161043890611505565b61100a60008383610e59565b6001600160a01b03821660009081526003602052604081208054600192906110339084906119ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546110a390611a09565b90600052602060002090601f0160209004810192826110c5576000855561110b565b82601f106110de57805160ff191683800117855561110b565b8280016001018555821561110b579182015b8281111561110b5782518255916020019190600101906110f0565b5061111792915061111b565b5090565b5b80821115611117576000815560010161111c565b600067ffffffffffffffff8084111561114b5761114b611a75565b604051601f8501601f19908116603f0116810190828211818310171561117357611173611a75565b8160405280935085815286868601111561118c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461037a57600080fd5b6000602082840312156111ce578081fd5b610a68826111a6565b600080604083850312156111e9578081fd5b6111f2836111a6565b9150611200602084016111a6565b90509250929050565b60008060006060848603121561121d578081fd5b611226846111a6565b9250611234602085016111a6565b9150604084013590509250925092565b60008060008060808587031215611259578081fd5b611262856111a6565b9350611270602086016111a6565b925060408501359150606085013567ffffffffffffffff811115611292578182fd5b8501601f810187136112a2578182fd5b6112b187823560208401611130565b91505092959194509250565b600080604083850312156112cf578182fd5b6112d8836111a6565b9150602083013580151581146112ec578182fd5b809150509250929050565b60008060408385031215611309578182fd5b611312836111a6565b946020939093013593505050565b600060208284031215611331578081fd5b8135610a6881611a8b565b60006020828403121561134d578081fd5b8151610a6881611a8b565b600060208284031215611369578081fd5b813567ffffffffffffffff81111561137f578182fd5b8201601f8101841361138f578182fd5b610c5d84823560208401611130565b6000602082840312156113af578081fd5b5035919050565b600081518084526113ce8160208601602086016119dd565b601f01601f19169290920160200192915050565b600082516113f48184602087016119dd565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611445908301846113b6565b9695505050505050565b901515815260200190565b600060208252610a6860208301846113b6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526013908201527222a9219b99189d1026b0bc1039bab838363c9760691b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f546f74616c20686f6c64696e67206973206c696d697465642e00000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601e908201527f4d696e7420616d6f756e7420686967686572207468616e206c696d69742e0000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b600082198211156119c1576119c1611a5f565b500190565b6000828210156119d8576119d8611a5f565b500390565b60005b838110156119f85781810151838201526020016119e0565b838111156109da5750506000910152565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105fc57600080fdfea2646970667358221220d1432d64d9eef7a804efe6e81af5a511432de38652b04c084e3fd095ffa1d26c64736f6c6343000801003368747470733a2f2f64656a696e746172752e706f696e742e6c696e6b2f302e6a736f6e
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610311578063e985e9c514610324578063f2fde38b14610337578063f47c84c51461034a5761018e565b8063a22cb465146102e3578063b88d4fde146102f6578063c1bd8cf9146103095761018e565b80636c0360eb1461029d57806370a08231146102a5578063715018a6146102b85780638da5cb5b146102c057806395d89b41146102c8578063a0712d68146102d05761018e565b8063239c70ae1161014b57806342842e0e1161012557806342842e0e14610251578063477348921461026457806355f804b3146102775780636352211e1461028a5761018e565b8063239c70ae1461022e57806323b872dd146102365780633ccfd60b146102495761018e565b806301ffc9a71461019357806306fdde03146101bc578063081812fc146101d1578063095ea7b3146101f157806311e776fe1461020657806318160ddd14610219575b600080fd5b6101a66101a1366004611320565b610352565b6040516101b3919061144f565b60405180910390f35b6101c461037f565b6040516101b3919061145a565b6101e46101df36600461139e565b610411565b6040516101b391906113fe565b6102046101ff3660046112f7565b61045d565b005b61020461021436600461139e565b6104f5565b610221610539565b6040516101b391906119a5565b61022161053f565b610204610244366004611209565b610545565b61020461057d565b61020461025f366004611209565b6105ff565b6102216102723660046111bd565b61061a565b610204610285366004611358565b610625565b6101e461029836600461139e565b61067b565b6101c46106b0565b6102216102b33660046111bd565b61073e565b610204610782565b6101e46107cd565b6101c46107dc565b6102046102de36600461139e565b6107eb565b6102046102f13660046112bd565b6108d3565b610204610304366004611244565b6109a1565b6102216109e0565b6101c461031f36600461139e565b6109f6565b6101a66103323660046111d7565b610a6f565b6102046103453660046111bd565b610a9d565b610221610b0b565b60006001600160e01b0319821663780e9d6360e01b1480610377575061037782610b11565b90505b919050565b60606000805461038e90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546103ba90611a09565b80156104075780601f106103dc57610100808354040283529160200191610407565b820191906000526020600020905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b600061041c82610b51565b6104415760405162461bcd60e51b81526004016104389061178c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104688261067b565b9050806001600160a01b0316836001600160a01b0316141561049c5760405162461bcd60e51b815260040161043890611913565b806001600160a01b03166104ae610b6e565b6001600160a01b031614806104ca57506104ca81610332610b6e565b6104e65760405162461bcd60e51b815260040161043890611630565b6104f08383610b72565b505050565b6104fd610b6e565b6001600160a01b031661050e6107cd565b6001600160a01b0316146105345760405162461bcd60e51b81526004016104389061180f565b600a55565b600a5490565b60095481565b610556610550610b6e565b82610be0565b6105725760405162461bcd60e51b815260040161043890611954565b6104f0838383610c65565b610585610b6e565b6001600160a01b03166105966107cd565b6001600160a01b0316146105bc5760405162461bcd60e51b81526004016104389061180f565b6105c46107cd565b6001600160a01b03166108fc479081150290604051600060405180830381858888f193505050501580156105fc573d6000803e3d6000fd5b50565b6104f0838383604051806020016040528060008152506109a1565b60006103778261073e565b61062d610b6e565b6001600160a01b031661063e6107cd565b6001600160a01b0316146106645760405162461bcd60e51b81526004016104389061180f565b8051610677906008906020840190611097565b5050565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b81526004016104389061170e565b600880546106bd90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990611a09565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b505050505081565b60006001600160a01b0382166107665760405162461bcd60e51b8152600401610438906116c4565b506001600160a01b031660009081526003602052604090205490565b61078a610b6e565b6001600160a01b031661079b6107cd565b6001600160a01b0316146107c15760405162461bcd60e51b81526004016104389061180f565b6107cb6000610d92565b565b6006546001600160a01b031690565b60606001805461038e90611a09565b6000811161080b5760405162461bcd60e51b8152600401610438906117d8565b600a548160075461081c91906119ae565b111561083a5760405162461bcd60e51b815260040161043890611603565b60095481111561085c5760405162461bcd60e51b8152600401610438906118dc565b6009548161086b6102b3610b6e565b61087591906119ae565b11156108935760405162461bcd60e51b81526004016104389061168d565b60015b818111610677576108b06108a8610b6e565b600754610de4565b6007546108be9060016119ae565b600755806108cb81611a44565b915050610896565b6108db610b6e565b6001600160a01b0316826001600160a01b0316141561090c5760405162461bcd60e51b815260040161043890611580565b8060056000610919610b6e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561095d610b6e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610995919061144f565b60405180910390a35050565b6109b26109ac610b6e565b83610be0565b6109ce5760405162461bcd60e51b815260040161043890611954565b6109da84848484610dfe565b50505050565b600060016007546109f191906119c6565b905090565b6060610a0182610b51565b610a1d5760405162461bcd60e51b81526004016104389061188d565b6000610a27610e31565b90506000815111610a475760405180602001604052806000815250610a68565b80604051602001610a5891906113e2565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610aa5610b6e565b6001600160a01b0316610ab66107cd565b6001600160a01b031614610adc5760405162461bcd60e51b81526004016104389061180f565b6001600160a01b038116610b025760405162461bcd60e51b8152600401610438906114bf565b6105fc81610d92565b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610b4257506001600160e01b03198216635b5e139f60e01b145b80610377575061037782610e40565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ba78261067b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610beb82610b51565b610c075760405162461bcd60e51b8152600401610438906115b7565b6000610c128361067b565b9050806001600160a01b0316846001600160a01b03161480610c4d5750836001600160a01b0316610c4284610411565b6001600160a01b0316145b80610c5d5750610c5d8185610a6f565b949350505050565b826001600160a01b0316610c788261067b565b6001600160a01b031614610c9e5760405162461bcd60e51b815260040161043890611844565b6001600160a01b038216610cc45760405162461bcd60e51b81526004016104389061153c565b610ccf838383610e59565b610cda600082610b72565b6001600160a01b0383166000908152600360205260408120805460019290610d039084906119c6565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d319084906119ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610677828260405180602001604052806000815250610e64565b610e09848484610c65565b610e1584848484610e97565b6109da5760405162461bcd60e51b81526004016104389061146d565b60606008805461038e90611a09565b6001600160e01b031981166301ffc9a760e01b14919050565b6104f08383836104f0565b610e6e8383610fb2565b610e7b6000848484610e97565b6104f05760405162461bcd60e51b81526004016104389061146d565b6000610eab846001600160a01b0316611091565b15610fa757836001600160a01b031663150b7a02610ec7610b6e565b8786866040518563ffffffff1660e01b8152600401610ee99493929190611412565b602060405180830381600087803b158015610f0357600080fd5b505af1925050508015610f33575060408051601f3d908101601f19168201909252610f309181019061133c565b60015b610f8d573d808015610f61576040519150601f19603f3d011682016040523d82523d6000602084013e610f66565b606091505b508051610f855760405162461bcd60e51b81526004016104389061146d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c5d565b506001949350505050565b6001600160a01b038216610fd85760405162461bcd60e51b815260040161043890611757565b610fe181610b51565b15610ffe5760405162461bcd60e51b815260040161043890611505565b61100a60008383610e59565b6001600160a01b03821660009081526003602052604081208054600192906110339084906119ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546110a390611a09565b90600052602060002090601f0160209004810192826110c5576000855561110b565b82601f106110de57805160ff191683800117855561110b565b8280016001018555821561110b579182015b8281111561110b5782518255916020019190600101906110f0565b5061111792915061111b565b5090565b5b80821115611117576000815560010161111c565b600067ffffffffffffffff8084111561114b5761114b611a75565b604051601f8501601f19908116603f0116810190828211818310171561117357611173611a75565b8160405280935085815286868601111561118c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461037a57600080fd5b6000602082840312156111ce578081fd5b610a68826111a6565b600080604083850312156111e9578081fd5b6111f2836111a6565b9150611200602084016111a6565b90509250929050565b60008060006060848603121561121d578081fd5b611226846111a6565b9250611234602085016111a6565b9150604084013590509250925092565b60008060008060808587031215611259578081fd5b611262856111a6565b9350611270602086016111a6565b925060408501359150606085013567ffffffffffffffff811115611292578182fd5b8501601f810187136112a2578182fd5b6112b187823560208401611130565b91505092959194509250565b600080604083850312156112cf578182fd5b6112d8836111a6565b9150602083013580151581146112ec578182fd5b809150509250929050565b60008060408385031215611309578182fd5b611312836111a6565b946020939093013593505050565b600060208284031215611331578081fd5b8135610a6881611a8b565b60006020828403121561134d578081fd5b8151610a6881611a8b565b600060208284031215611369578081fd5b813567ffffffffffffffff81111561137f578182fd5b8201601f8101841361138f578182fd5b610c5d84823560208401611130565b6000602082840312156113af578081fd5b5035919050565b600081518084526113ce8160208601602086016119dd565b601f01601f19169290920160200192915050565b600082516113f48184602087016119dd565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611445908301846113b6565b9695505050505050565b901515815260200190565b600060208252610a6860208301846113b6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526013908201527222a9219b99189d1026b0bc1039bab838363c9760691b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f546f74616c20686f6c64696e67206973206c696d697465642e00000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601e908201527f4d696e7420616d6f756e7420686967686572207468616e206c696d69742e0000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b600082198211156119c1576119c1611a5f565b500190565b6000828210156119d8576119d8611a5f565b500390565b60005b838110156119f85781810151838201526020016119e0565b838111156109da5750506000910152565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105fc57600080fdfea2646970667358221220d1432d64d9eef7a804efe6e81af5a511432de38652b04c084e3fd095ffa1d26c64736f6c63430008010033
Deployed Bytecode Sourcemap
43147:2464:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43692:215;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22621:100;;;:::i;:::-;;;;;;;:::i;24180:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23703:411::-;;;;;;:::i;:::-;;:::i;:::-;;43915:95;;;;;;:::i;:::-;;:::i;44372:88::-;;;:::i;:::-;;;;;;;:::i;43352:32::-;;;:::i;25070:339::-;;;;;;:::i;:::-;;:::i;45154:106::-;;;:::i;25480:185::-;;;;;;:::i;:::-;;:::i;44256:108::-;;;;;;:::i;:::-;;:::i;44146:102::-;;;;;;:::i;:::-;;:::i;22315:239::-;;;;;;:::i;:::-;;:::i;43273:61::-;;;:::i;22045:208::-;;;;;;:::i;:::-;;:::i;42518:94::-;;;:::i;41867:87::-;;;:::i;22790:104::-;;;:::i;44579:563::-;;;;;;:::i;:::-;;:::i;24473:295::-;;;;;;:::i;:::-;;:::i;25736:328::-;;;;;;:::i;:::-;;:::i;44469:95::-;;;:::i;45269:333::-;;;;;;:::i;:::-;;:::i;24839:164::-;;;;;;:::i;:::-;;:::i;42767:192::-;;;;;;:::i;:::-;;:::i;43391:33::-;;;:::i;43692:215::-;43785:4;-1:-1:-1;;;;;;43809:50:0;;-1:-1:-1;;;43809:50:0;;:90;;;43863:36;43887:11;43863:23;:36::i;:::-;43802:97;;43692:215;;;;:::o;22621:100::-;22675:13;22708:5;22701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22621:100;:::o;24180:221::-;24256:7;24284:16;24292:7;24284;:16::i;:::-;24276:73;;;;-1:-1:-1;;;24276:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24369:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24369:24:0;;24180:221::o;23703:411::-;23784:13;23800:23;23815:7;23800:14;:23::i;:::-;23784:39;;23848:5;-1:-1:-1;;;;;23842:11:0;:2;-1:-1:-1;;;;;23842:11:0;;;23834:57;;;;-1:-1:-1;;;23834:57:0;;;;;;;:::i;:::-;23942:5;-1:-1:-1;;;;;23926:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23926:21:0;;:62;;;;23951:37;23968:5;23975:12;:10;:12::i;23951:37::-;23904:168;;;;-1:-1:-1;;;23904:168:0;;;;;;;:::i;:::-;24085:21;24094:2;24098:7;24085:8;:21::i;:::-;23703:411;;;:::o;43915:95::-;42098:12;:10;:12::i;:::-;-1:-1:-1;;;;;42087:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42087:23:0;;42079:68;;;;-1:-1:-1;;;42079:68:0;;;;;;;:::i;:::-;43982:10:::1;:20:::0;43915:95::o;44372:88::-;44442:10;;44372:88;:::o;43352:32::-;;;;:::o;25070:339::-;25265:41;25284:12;:10;:12::i;:::-;25298:7;25265:18;:41::i;:::-;25257:103;;;;-1:-1:-1;;;25257:103:0;;;;;;;:::i;:::-;25373:28;25383:4;25389:2;25393:7;25373:9;:28::i;45154:106::-;42098:12;:10;:12::i;:::-;-1:-1:-1;;;;;42087:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42087:23:0;;42079:68;;;;-1:-1:-1;;;42079:68:0;;;;;;;:::i;:::-;45212:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;45204:25:0::1;:48;45230:21;45204:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45154:106::o:0;25480:185::-;25618:39;25635:4;25641:2;25645:7;25618:39;;;;;;;;;;;;:16;:39::i;44256:108::-;44314:7;44341:15;44351:4;44341:9;:15::i;44146:102::-;42098:12;:10;:12::i;:::-;-1:-1:-1;;;;;42087:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42087:23:0;;42079:68;;;;-1:-1:-1;;;42079:68:0;;;;;;;:::i;:::-;44222:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44146:102:::0;:::o;22315:239::-;22387:7;22423:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22423:16:0;22458:19;22450:73;;;;-1:-1:-1;;;22450:73:0;;;;;;;:::i;43273:61::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22045:208::-;22117:7;-1:-1:-1;;;;;22145:19:0;;22137:74;;;;-1:-1:-1;;;22137:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22229:16:0;;;;;:9;:16;;;;;;;22045:208::o;42518:94::-;42098:12;:10;:12::i;:::-;-1:-1:-1;;;;;42087:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42087:23:0;;42079:68;;;;-1:-1:-1;;;42079:68:0;;;;;;;:::i;:::-;42583:21:::1;42601:1;42583:9;:21::i;:::-;42518:94::o:0;41867:87::-;41940:6;;-1:-1:-1;;;;;41940:6:0;41867:87;:::o;22790:104::-;22846:13;22879:7;22872:14;;;;;:::i;44579:563::-;44654:1;44640:11;:15;44632:54;;;;-1:-1:-1;;;44632:54:0;;;;;;;:::i;:::-;44735:10;;44720:11;44705:12;;:26;;;;:::i;:::-;:40;;44697:72;;;;-1:-1:-1;;;44697:72:0;;;;;;;:::i;:::-;44803:13;;44788:11;:28;;44780:71;;;;-1:-1:-1;;;44780:71:0;;;;;;;:::i;:::-;44911:13;;44896:11;44870:23;44880:12;:10;:12::i;44870:23::-;:37;;;;:::i;:::-;:54;;44862:93;;;;-1:-1:-1;;;44862:93:0;;;;;;;:::i;:::-;44989:1;44972:153;44997:11;44992:1;:16;44972:153;;45030:37;45040:12;:10;:12::i;:::-;45054;;45030:9;:37::i;:::-;45097:12;;:16;;45112:1;45097:16;:::i;:::-;45082:12;:31;45010:3;;;;:::i;:::-;;;;44972:153;;24473:295;24588:12;:10;:12::i;:::-;-1:-1:-1;;;;;24576:24:0;:8;-1:-1:-1;;;;;24576:24:0;;;24568:62;;;;-1:-1:-1;;;24568:62:0;;;;;;;:::i;:::-;24688:8;24643:18;:32;24662:12;:10;:12::i;:::-;-1:-1:-1;;;;;24643:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24643:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24643:53:0;;;;;;;;;;;24727:12;:10;:12::i;:::-;-1:-1:-1;;;;;24712:48:0;;24751:8;24712:48;;;;;;:::i;:::-;;;;;;;;24473:295;;:::o;25736:328::-;25911:41;25930:12;:10;:12::i;:::-;25944:7;25911:18;:41::i;:::-;25903:103;;;;-1:-1:-1;;;25903:103:0;;;;;;;:::i;:::-;26017:39;26031:4;26037:2;26041:7;26050:5;26017:13;:39::i;:::-;25736:328;;;;:::o;44469:95::-;44513:7;44555:1;44540:12;;:16;;;;:::i;:::-;44533:23;;44469:95;:::o;45269:333::-;45342:13;45376:16;45384:7;45376;:16::i;:::-;45368:76;;;;-1:-1:-1;;;45368:76:0;;;;;;;:::i;:::-;45455:28;45486:10;:8;:10::i;:::-;45455:41;;45545:1;45520:14;45514:28;:32;:80;;;;;;;;;;;;;;;;;45573:14;45556:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;45514:80;45507:87;45269:333;-1:-1:-1;;;45269:333:0:o;24839:164::-;-1:-1:-1;;;;;24960:25:0;;;24936:4;24960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24839:164::o;42767:192::-;42098:12;:10;:12::i;:::-;-1:-1:-1;;;;;42087:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42087:23:0;;42079:68;;;;-1:-1:-1;;;42079:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42856:22:0;::::1;42848:73;;;;-1:-1:-1::0;;;42848:73:0::1;;;;;;;:::i;:::-;42932:19;42942:8;42932:9;:19::i;43391:33::-:0;;;;:::o;21676:305::-;21778:4;-1:-1:-1;;;;;;21815:40:0;;-1:-1:-1;;;21815:40:0;;:105;;-1:-1:-1;;;;;;;21872:48:0;;-1:-1:-1;;;21872:48:0;21815:105;:158;;;;21937:36;21961:11;21937:23;:36::i;27574:127::-;27639:4;27663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27663:16:0;:30;;;27574:127::o;20150:98::-;20230:10;20150:98;:::o;31556:174::-;31631:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31631:29:0;-1:-1:-1;;;;;31631:29:0;;;;;;;;:24;;31685:23;31631:24;31685:14;:23::i;:::-;-1:-1:-1;;;;;31676:46:0;;;;;;;;;;;31556:174;;:::o;27868:348::-;27961:4;27986:16;27994:7;27986;:16::i;:::-;27978:73;;;;-1:-1:-1;;;27978:73:0;;;;;;;:::i;:::-;28062:13;28078:23;28093:7;28078:14;:23::i;:::-;28062:39;;28131:5;-1:-1:-1;;;;;28120:16:0;:7;-1:-1:-1;;;;;28120:16:0;;:51;;;;28164:7;-1:-1:-1;;;;;28140:31:0;:20;28152:7;28140:11;:20::i;:::-;-1:-1:-1;;;;;28140:31:0;;28120:51;:87;;;;28175:32;28192:5;28199:7;28175:16;:32::i;:::-;28112:96;27868:348;-1:-1:-1;;;;27868:348:0:o;30860:578::-;31019:4;-1:-1:-1;;;;;30992:31:0;:23;31007:7;30992:14;:23::i;:::-;-1:-1:-1;;;;;30992:31:0;;30984:85;;;;-1:-1:-1;;;30984:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31088:16:0;;31080:65;;;;-1:-1:-1;;;31080:65:0;;;;;;;:::i;:::-;31158:39;31179:4;31185:2;31189:7;31158:20;:39::i;:::-;31262:29;31279:1;31283:7;31262:8;:29::i;:::-;-1:-1:-1;;;;;31304:15:0;;;;;;:9;:15;;;;;:20;;31323:1;;31304:15;:20;;31323:1;;31304:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31335:13:0;;;;;;:9;:13;;;;;:18;;31352:1;;31335:13;:18;;31352:1;;31335:18;:::i;:::-;;;;-1:-1:-1;;31364:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31364:21:0;-1:-1:-1;;;;;31364:21:0;;;;;;;;;31403:27;;31364:16;;31403:27;;;;;;;30860:578;;;:::o;42967:173::-;43042:6;;;-1:-1:-1;;;;;43059:17:0;;;-1:-1:-1;;;;;;43059:17:0;;;;;;;43092:40;;43042:6;;;43059:17;43042:6;;43092:40;;43023:16;;43092:40;42967:173;;:::o;28558:110::-;28634:26;28644:2;28648:7;28634:26;;;;;;;;;;;;:9;:26::i;26946:315::-;27103:28;27113:4;27119:2;27123:7;27103:9;:28::i;:::-;27150:48;27173:4;27179:2;27183:7;27192:5;27150:22;:48::i;:::-;27142:111;;;;-1:-1:-1;;;27142:111:0;;;;;;;:::i;44022:116::-;44090:13;44123:7;44116:14;;;;;:::i;7507:157::-;-1:-1:-1;;;;;;7616:40:0;;-1:-1:-1;;;7616:40:0;7507:157;;;:::o;43475:205::-;43627:45;43654:4;43660:2;43664:7;43627:26;:45::i;28895:321::-;29025:18;29031:2;29035:7;29025:5;:18::i;:::-;29076:54;29107:1;29111:2;29115:7;29124:5;29076:22;:54::i;:::-;29054:154;;;;-1:-1:-1;;;29054:154:0;;;;;;;:::i;32295:799::-;32450:4;32471:15;:2;-1:-1:-1;;;;;32471:13:0;;:15::i;:::-;32467:620;;;32523:2;-1:-1:-1;;;;;32507:36:0;;32544:12;:10;:12::i;:::-;32558:4;32564:7;32573:5;32507:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32507:72:0;;;;;;;;-1:-1:-1;;32507:72:0;;;;;;;;;;;;:::i;:::-;;;32503:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32749:13:0;;32745:272;;32792:60;;-1:-1:-1;;;32792:60:0;;;;;;;:::i;32745:272::-;32967:6;32961:13;32952:6;32948:2;32944:15;32937:38;32503:529;-1:-1:-1;;;;;;32630:51:0;-1:-1:-1;;;32630:51:0;;-1:-1:-1;32623:58:0;;32467:620;-1:-1:-1;33071:4:0;32295:799;;;;;;:::o;29552:382::-;-1:-1:-1;;;;;29632:16:0;;29624:61;;;;-1:-1:-1;;;29624:61:0;;;;;;;:::i;:::-;29705:16;29713:7;29705;:16::i;:::-;29704:17;29696:58;;;;-1:-1:-1;;;29696:58:0;;;;;;;:::i;:::-;29767:45;29796:1;29800:2;29804:7;29767:20;:45::i;:::-;-1:-1:-1;;;;;29825:13:0;;;;;;:9;:13;;;;;:18;;29842:1;;29825:13;:18;;29842:1;;29825:18;:::i;:::-;;;;-1:-1:-1;;29854:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29854:21:0;-1:-1:-1;;;;;29854:21:0;;;;;;;;29893:33;;29854:16;;;29893:33;;29854:16;;29893:33;29552:382;;:::o;10507:387::-;10830:20;10878:8;;;10507:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:198;;944:2;932:9;923:7;919:23;915:32;912:2;;;965:6;957;950:22;912:2;993:31;1014:9;993:31;:::i;1035:274::-;;;1164:2;1152:9;1143:7;1139:23;1135:32;1132:2;;;1185:6;1177;1170:22;1132:2;1213:31;1234:9;1213:31;:::i;:::-;1203:41;;1263:40;1299:2;1288:9;1284:18;1263:40;:::i;:::-;1253:50;;1122:187;;;;;:::o;1314:342::-;;;;1460:2;1448:9;1439:7;1435:23;1431:32;1428:2;;;1481:6;1473;1466:22;1428:2;1509:31;1530:9;1509:31;:::i;:::-;1499:41;;1559:40;1595:2;1584:9;1580:18;1559:40;:::i;:::-;1549:50;;1646:2;1635:9;1631:18;1618:32;1608:42;;1418:238;;;;;:::o;1661:702::-;;;;;1833:3;1821:9;1812:7;1808:23;1804:33;1801:2;;;1855:6;1847;1840:22;1801:2;1883:31;1904:9;1883:31;:::i;:::-;1873:41;;1933:40;1969:2;1958:9;1954:18;1933:40;:::i;:::-;1923:50;;2020:2;2009:9;2005:18;1992:32;1982:42;;2075:2;2064:9;2060:18;2047:32;2102:18;2094:6;2091:30;2088:2;;;2139:6;2131;2124:22;2088:2;2167:22;;2220:4;2212:13;;2208:27;-1:-1:-1;2198:2:1;;2254:6;2246;2239:22;2198:2;2282:75;2349:7;2344:2;2331:16;2326:2;2322;2318:11;2282:75;:::i;:::-;2272:85;;;1791:572;;;;;;;:::o;2368:369::-;;;2494:2;2482:9;2473:7;2469:23;2465:32;2462:2;;;2515:6;2507;2500:22;2462:2;2543:31;2564:9;2543:31;:::i;:::-;2533:41;;2624:2;2613:9;2609:18;2596:32;2671:5;2664:13;2657:21;2650:5;2647:32;2637:2;;2698:6;2690;2683:22;2637:2;2726:5;2716:15;;;2452:285;;;;;:::o;2742:266::-;;;2871:2;2859:9;2850:7;2846:23;2842:32;2839:2;;;2892:6;2884;2877:22;2839:2;2920:31;2941:9;2920:31;:::i;:::-;2910:41;2998:2;2983:18;;;;2970:32;;-1:-1:-1;;;2829:179:1:o;3013:257::-;;3124:2;3112:9;3103:7;3099:23;3095:32;3092:2;;;3145:6;3137;3130:22;3092:2;3189:9;3176:23;3208:32;3234:5;3208:32;:::i;3275:261::-;;3397:2;3385:9;3376:7;3372:23;3368:32;3365:2;;;3418:6;3410;3403:22;3365:2;3455:9;3449:16;3474:32;3500:5;3474:32;:::i;3541:482::-;;3663:2;3651:9;3642:7;3638:23;3634:32;3631:2;;;3684:6;3676;3669:22;3631:2;3729:9;3716:23;3762:18;3754:6;3751:30;3748:2;;;3799:6;3791;3784:22;3748:2;3827:22;;3880:4;3872:13;;3868:27;-1:-1:-1;3858:2:1;;3914:6;3906;3899:22;3858:2;3942:75;4009:7;4004:2;3991:16;3986:2;3982;3978:11;3942:75;:::i;4028:190::-;;4140:2;4128:9;4119:7;4115:23;4111:32;4108:2;;;4161:6;4153;4146:22;4108:2;-1:-1:-1;4189:23:1;;4098:120;-1:-1:-1;4098:120:1:o;4223:259::-;;4304:5;4298:12;4331:6;4326:3;4319:19;4347:63;4403:6;4396:4;4391:3;4387:14;4380:4;4373:5;4369:16;4347:63;:::i;:::-;4464:2;4443:15;-1:-1:-1;;4439:29:1;4430:39;;;;4471:4;4426:50;;4274:208;-1:-1:-1;;4274:208:1:o;4487:276::-;;4656:6;4650:13;4672:53;4718:6;4713:3;4706:4;4698:6;4694:17;4672:53;:::i;:::-;4741:16;;;;;4626:137;-1:-1:-1;;4626:137:1:o;4768:203::-;-1:-1:-1;;;;;4932:32:1;;;;4914:51;;4902:2;4887:18;;4869:102::o;4976:490::-;-1:-1:-1;;;;;5245:15:1;;;5227:34;;5297:15;;5292:2;5277:18;;5270:43;5344:2;5329:18;;5322:34;;;5392:3;5387:2;5372:18;;5365:31;;;4976:490;;5413:47;;5440:19;;5432:6;5413:47;:::i;:::-;5405:55;5179:287;-1:-1:-1;;;;;;5179:287:1:o;5471:187::-;5636:14;;5629:22;5611:41;;5599:2;5584:18;;5566:92::o;5663:221::-;;5812:2;5801:9;5794:21;5832:46;5874:2;5863:9;5859:18;5851:6;5832:46;:::i;5889:414::-;6091:2;6073:21;;;6130:2;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;-1:-1:-1;;;6235:2:1;6220:18;;6213:48;6293:3;6278:19;;6063:240::o;6308:402::-;6510:2;6492:21;;;6549:2;6529:18;;;6522:30;6588:34;6583:2;6568:18;;6561:62;-1:-1:-1;;;6654:2:1;6639:18;;6632:36;6700:3;6685:19;;6482:228::o;6715:352::-;6917:2;6899:21;;;6956:2;6936:18;;;6929:30;6995;6990:2;6975:18;;6968:58;7058:2;7043:18;;6889:178::o;7072:400::-;7274:2;7256:21;;;7313:2;7293:18;;;7286:30;7352:34;7347:2;7332:18;;7325:62;-1:-1:-1;;;7418:2:1;7403:18;;7396:34;7462:3;7447:19;;7246:226::o;7477:349::-;7679:2;7661:21;;;7718:2;7698:18;;;7691:30;7757:27;7752:2;7737:18;;7730:55;7817:2;7802:18;;7651:175::o;7831:408::-;8033:2;8015:21;;;8072:2;8052:18;;;8045:30;8111:34;8106:2;8091:18;;8084:62;-1:-1:-1;;;8177:2:1;8162:18;;8155:42;8229:3;8214:19;;8005:234::o;8244:343::-;8446:2;8428:21;;;8485:2;8465:18;;;8458:30;-1:-1:-1;;;8519:2:1;8504:18;;8497:49;8578:2;8563:18;;8418:169::o;8592:420::-;8794:2;8776:21;;;8833:2;8813:18;;;8806:30;8872:34;8867:2;8852:18;;8845:62;8943:26;8938:2;8923:18;;8916:54;9002:3;8987:19;;8766:246::o;9017:349::-;9219:2;9201:21;;;9258:2;9238:18;;;9231:30;9297:27;9292:2;9277:18;;9270:55;9357:2;9342:18;;9191:175::o;9371:406::-;9573:2;9555:21;;;9612:2;9592:18;;;9585:30;9651:34;9646:2;9631:18;;9624:62;-1:-1:-1;;;9717:2:1;9702:18;;9695:40;9767:3;9752:19;;9545:232::o;9782:405::-;9984:2;9966:21;;;10023:2;10003:18;;;9996:30;10062:34;10057:2;10042:18;;10035:62;-1:-1:-1;;;10128:2:1;10113:18;;10106:39;10177:3;10162:19;;9956:231::o;10192:356::-;10394:2;10376:21;;;10413:18;;;10406:30;10472:34;10467:2;10452:18;;10445:62;10539:2;10524:18;;10366:182::o;10553:408::-;10755:2;10737:21;;;10794:2;10774:18;;;10767:30;10833:34;10828:2;10813:18;;10806:62;-1:-1:-1;;;10899:2:1;10884:18;;10877:42;10951:3;10936:19;;10727:234::o;10966:350::-;11168:2;11150:21;;;11207:2;11187:18;;;11180:30;11246:28;11241:2;11226:18;;11219:56;11307:2;11292:18;;11140:176::o;11321:356::-;11523:2;11505:21;;;11542:18;;;11535:30;11601:34;11596:2;11581:18;;11574:62;11668:2;11653:18;;11495:182::o;11682:405::-;11884:2;11866:21;;;11923:2;11903:18;;;11896:30;11962:34;11957:2;11942:18;;11935:62;-1:-1:-1;;;12028:2:1;12013:18;;12006:39;12077:3;12062:19;;11856:231::o;12092:411::-;12294:2;12276:21;;;12333:2;12313:18;;;12306:30;12372:34;12367:2;12352:18;;12345:62;-1:-1:-1;;;12438:2:1;12423:18;;12416:45;12493:3;12478:19;;12266:237::o;12508:354::-;12710:2;12692:21;;;12749:2;12729:18;;;12722:30;12788:32;12783:2;12768:18;;12761:60;12853:2;12838:18;;12682:180::o;12867:397::-;13069:2;13051:21;;;13108:2;13088:18;;;13081:30;13147:34;13142:2;13127:18;;13120:62;-1:-1:-1;;;13213:2:1;13198:18;;13191:31;13254:3;13239:19;;13041:223::o;13269:413::-;13471:2;13453:21;;;13510:2;13490:18;;;13483:30;13549:34;13544:2;13529:18;;13522:62;-1:-1:-1;;;13615:2:1;13600:18;;13593:47;13672:3;13657:19;;13443:239::o;13687:177::-;13833:25;;;13821:2;13806:18;;13788:76::o;13869:128::-;;13940:1;13936:6;13933:1;13930:13;13927:2;;;13946:18;;:::i;:::-;-1:-1:-1;13982:9:1;;13917:80::o;14002:125::-;;14070:1;14067;14064:8;14061:2;;;14075:18;;:::i;:::-;-1:-1:-1;14112:9:1;;14051:76::o;14132:258::-;14204:1;14214:113;14228:6;14225:1;14222:13;14214:113;;;14304:11;;;14298:18;14285:11;;;14278:39;14250:2;14243:10;14214:113;;;14345:6;14342:1;14339:13;14336:2;;;-1:-1:-1;;14380:1:1;14362:16;;14355:27;14185:205::o;14395:380::-;14480:1;14470:12;;14527:1;14517:12;;;14538:2;;14592:4;14584:6;14580:17;14570:27;;14538:2;14645;14637:6;14634:14;14614:18;14611:38;14608:2;;;14691:10;14686:3;14682:20;14679:1;14672:31;14726:4;14723:1;14716:15;14754:4;14751:1;14744:15;14608:2;;14450:325;;;:::o;14780:135::-;;-1:-1:-1;;14840:17:1;;14837:2;;;14860:18;;:::i;:::-;-1:-1:-1;14907:1:1;14896:13;;14827:88::o;14920:127::-;14981:10;14976:3;14972:20;14969:1;14962:31;15012:4;15009:1;15002:15;15036:4;15033:1;15026:15;15052:127;15113:10;15108:3;15104:20;15101:1;15094:31;15144:4;15141:1;15134:15;15168:4;15165:1;15158:15;15184:133;-1:-1:-1;;;;;;15260:32:1;;15250:43;;15240:2;;15307:1;15304;15297:12
Swarm Source
ipfs://d1432d64d9eef7a804efe6e81af5a511432de38652b04c084e3fd095ffa1d26c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.