More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 56 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 54397050 | 279 days ago | IN | 0 POL | 0.00262666 | ||||
Set Approval For... | 53342850 | 305 days ago | IN | 0 POL | 0.00138631 | ||||
Mint | 51861801 | 344 days ago | IN | 0 POL | 0.02913236 | ||||
Safe Transfer Fr... | 45874836 | 496 days ago | IN | 0 POL | 0.00418227 | ||||
Safe Transfer Fr... | 45459769 | 506 days ago | IN | 0 POL | 0.00502054 | ||||
Safe Transfer Fr... | 42228237 | 589 days ago | IN | 0 POL | 0.01347278 | ||||
Safe Transfer Fr... | 41145380 | 617 days ago | IN | 0 POL | 0.00468784 | ||||
Safe Transfer Fr... | 40678289 | 629 days ago | IN | 0 POL | 0.00779209 | ||||
Set Approval For... | 40678047 | 629 days ago | IN | 0 POL | 0.00624381 | ||||
Safe Transfer Fr... | 38832437 | 678 days ago | IN | 0 POL | 0.00912194 | ||||
Mint | 38832384 | 678 days ago | IN | 0 POL | 0.01391456 | ||||
Safe Transfer Fr... | 38716358 | 681 days ago | IN | 0 POL | 0.00352328 | ||||
Safe Transfer Fr... | 38716346 | 681 days ago | IN | 0 POL | 0.00491008 | ||||
Safe Transfer Fr... | 38555856 | 685 days ago | IN | 0 POL | 0.00331442 | ||||
Safe Transfer Fr... | 38519286 | 686 days ago | IN | 0 POL | 0.0021281 | ||||
Mint | 38518942 | 686 days ago | IN | 0 POL | 0.00378742 | ||||
Mint | 38518723 | 686 days ago | IN | 0 POL | 0.00812231 | ||||
Set Approval For... | 38202553 | 694 days ago | IN | 0 POL | 0.00236701 | ||||
Mint | 38201976 | 694 days ago | IN | 0 POL | 0.00340564 | ||||
Mint | 38201908 | 694 days ago | IN | 0 POL | 0.00396886 | ||||
Mint | 37825008 | 703 days ago | IN | 0 POL | 0.00398566 | ||||
Safe Transfer Fr... | 37709310 | 706 days ago | IN | 0 POL | 0.00523799 | ||||
Mint | 37709247 | 706 days ago | IN | 0 POL | 0.0040395 | ||||
Mint | 37706761 | 706 days ago | IN | 0 POL | 0.00737623 | ||||
Mint | 37321328 | 716 days ago | IN | 0 POL | 0.00707923 |
Loading...
Loading
Contract Name:
Dicesia
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-02-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // 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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // 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/Context.sol // 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/access/Ownable.sol // 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/Address.sol // 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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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/introspection/IERC165.sol // 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/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.5.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 payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // 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/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol // 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/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.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 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 { _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 || 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); _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: contracts/dicesia.sol /** ▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░█▀▀▀▀▀▀▀█░▌ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░▌ ▐░░░░░░░░░░░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌ ▄▄▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄█░▌ ▄▄▄▄█░█▄▄▄▄ ▐░▌ ▐░▌ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀ */ pragma solidity >=0.7.0 <0.9.0; contract Dicesia is ERC721, IERC2981, ReentrancyGuard, Ownable { using Counters for Counters.Counter; constructor(string memory customBaseURI_) ERC721("Dicesia", "DCSIA") { customBaseURI = customBaseURI_; } /** MINTING **/ uint256 public constant MAX_SUPPLY = 2222; uint256 public constant MAX_MULTIMINT = 100; Counters.Counter private supplyCounter; function mint(uint256 count) public payable nonReentrant onlyOwner { require(saleIsActive, "Sale not active"); require(totalSupply() <= (MAX_SUPPLY - count), "Exceeds max supply"); require(count <= MAX_MULTIMINT, "Mint at most 100 at a time"); for (uint256 i = 0; i < count; i++) { supplyCounter.increment(); _mint(msg.sender, totalSupply()); } } function totalSupply() public view returns (uint256) { return supplyCounter.current(); } /** ACTIVATION **/ bool public saleIsActive = false; function setSaleIsActive(bool saleIsActive_) external onlyOwner { saleIsActive = saleIsActive_; } /** URI HANDLING **/ string private customBaseURI; function setBaseURI(string memory customBaseURI_) external onlyOwner { customBaseURI = customBaseURI_; } function _baseURI() internal view virtual override returns (string memory) { return customBaseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } /** PAYOUT **/ address private constant payoutAddress1 = 0xA7c8EF131344639F8C4aC295fb6F08695721198b; function withdraw() public nonReentrant onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance * 99 / 100); Address.sendValue(payable(payoutAddress1), balance * 1 / 100); } /** ROYALTIES **/ function royaltyInfo(uint256, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (address(this), (salePrice * 750) / 10000); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) { return ( interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","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
60806040526009805460ff191690553480156200001b57600080fd5b50604051620020c7380380620020c78339810160408190526200003e91620001de565b60408051808201825260078152664469636573696160c81b602080830191825283518085019094526005845264444353494160d81b9084015281519192916200008a9160009162000122565b508051620000a090600190602084019062000122565b5050600160065550620000b333620000d0565b8051620000c890600a90602084019062000122565b5050620002f7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620002ba565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001f257600080fd5b82516001600160401b03808211156200020a57600080fd5b818501915085601f8301126200021f57600080fd5b815181811115620002345762000234620001c8565b604051601f8201601f19908116603f011681019083821181831017156200025f576200025f620001c8565b8160405282815288868487010111156200027857600080fd5b600093505b828410156200029c57848401860151818501870152928501926200027d565b82841115620002ae5760008684830101525b98975050505050505050565b600181811c90821680620002cf57607f821691505b60208210811415620002f157634e487b7160e01b600052602260045260246000fd5b50919050565b611dc080620003076000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610419578063e985e9c514610439578063eb8d244414610482578063f2fde38b1461049c57600080fd5b8063a22cb465146103c4578063b88d4fde146103e4578063b8fc10511461040457600080fd5b80636352211e1461032957806370a0823114610349578063715018a6146103695780638da5cb5b1461037e57806395d89b411461039c578063a0712d68146103b157600080fd5b806323b872dd1161012357806323b872dd1461025f5780632a55205a1461027f57806332cb6b0c146102be5780633ccfd60b146102d457806342842e0e146102e957806355f804b31461030957600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b6101863660046117b9565b6104bc565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046117eb565b6104e7565b005b3480156101ce57600080fd5b506101d761052d565b604051610197919061185e565b3480156101f057600080fd5b506102046101ff366004611871565b6105bf565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c06102373660046118a1565b610654565b34801561024857600080fd5b5061025161076a565b604051908152602001610197565b34801561026b57600080fd5b506101c061027a3660046118cb565b61077a565b34801561028b57600080fd5b5061029f61029a366004611907565b6107ab565b604080516001600160a01b039093168352602083019190915201610197565b3480156102ca57600080fd5b506102516108ae81565b3480156102e057600080fd5b506101c06107d3565b3480156102f557600080fd5b506101c06103043660046118cb565b6108b4565b34801561031557600080fd5b506101c06103243660046119b5565b6108cf565b34801561033557600080fd5b50610204610344366004611871565b610910565b34801561035557600080fd5b506102516103643660046119fe565b610987565b34801561037557600080fd5b506101c0610a0e565b34801561038a57600080fd5b506007546001600160a01b0316610204565b3480156103a857600080fd5b506101d7610a44565b6101c06103bf366004611871565b610a53565b3480156103d057600080fd5b506101c06103df366004611a19565b610c06565b3480156103f057600080fd5b506101c06103ff366004611a4c565b610c11565b34801561041057600080fd5b50610251606481565b34801561042557600080fd5b506101d7610434366004611871565b610c49565b34801561044557600080fd5b5061018b610454366004611ac8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048e57600080fd5b5060095461018b9060ff1681565b3480156104a857600080fd5b506101c06104b73660046119fe565b610c7a565b60006001600160e01b0319821663152a902d60e11b14806104e157506104e182610d15565b92915050565b6007546001600160a01b0316331461051a5760405162461bcd60e51b815260040161051190611af2565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053c90611b27565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611b27565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610511565b506000908152600460205260409020546001600160a01b031690565b600061065f82610910565b9050806001600160a01b0316836001600160a01b031614156106cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610511565b336001600160a01b03821614806106e957506106e98133610454565b61075b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610511565b6107658383610d65565b505050565b600061077560085490565b905090565b6107843382610dd3565b6107a05760405162461bcd60e51b815260040161051190611b62565b610765838383610eca565b600080306127106107be856102ee611bc9565b6107c89190611bfe565b915091509250929050565b600260065414156108265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610511565b60026006556007546001600160a01b031633146108555760405162461bcd60e51b815260040161051190611af2565b4761088761086b6007546001600160a01b031690565b6064610878846063611bc9565b6108829190611bfe565b611066565b6108ac73a7c8ef131344639f8c4ac295fb6f08695721198b6064610878846001611bc9565b506001600655565b61076583838360405180602001604052806000815250610c11565b6007546001600160a01b031633146108f95760405162461bcd60e51b815260040161051190611af2565b805161090c90600a90602084019061170a565b5050565b6000818152600260205260408120546001600160a01b0316806104e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610511565b60006001600160a01b0382166109f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610511565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610a385760405162461bcd60e51b815260040161051190611af2565b610a42600061117f565b565b60606001805461053c90611b27565b60026006541415610aa65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610511565b60026006556007546001600160a01b03163314610ad55760405162461bcd60e51b815260040161051190611af2565b60095460ff16610b195760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610511565b610b25816108ae611c12565b610b2d61076a565b1115610b705760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610511565b6064811115610bc15760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206174206d6f73742031303020617420612074696d650000000000006044820152606401610511565b60005b81811015610bfd57610bda600880546001019055565b610beb33610be661076a565b6111d1565b80610bf581611c29565b915050610bc4565b50506001600655565b61090c338383611313565b610c1b3383610dd3565b610c375760405162461bcd60e51b815260040161051190611b62565b610c43848484846113e2565b50505050565b6060610c5482611415565b604051602001610c649190611c44565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161051190611af2565b6001600160a01b038116610d095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b610d128161117f565b50565b60006001600160e01b031982166380ac58cd60e01b1480610d4657506001600160e01b03198216635b5e139f60e01b145b806104e157506301ffc9a760e01b6001600160e01b03198316146104e1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d9a82610910565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610511565b6000610e5783610910565b9050806001600160a01b0316846001600160a01b03161480610e925750836001600160a01b0316610e87846105bf565b6001600160a01b0316145b80610ec257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610edd82610910565b6001600160a01b031614610f415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610511565b6001600160a01b038216610fa35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610511565b610fae600082610d65565b6001600160a01b0383166000908152600360205260408120805460019290610fd7908490611c12565b90915550506001600160a01b0382166000908152600360205260408120805460019290611005908490611c6d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156110b65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610511565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611103576040519150601f19603f3d011682016040523d82523d6000602084013e611108565b606091505b50509050806107655760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610511565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166112275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610511565b6000818152600260205260409020546001600160a01b03161561128c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610511565b6001600160a01b03821660009081526003602052604081208054600192906112b5908490611c6d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156113755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610511565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113ed848484610eca565b6113f9848484846114f0565b610c435760405162461bcd60e51b815260040161051190611c85565b6000818152600260205260409020546060906001600160a01b03166114945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610511565b600061149e6115fd565b905060008151116114be57604051806020016040528060008152506114e9565b806114c88461160c565b6040516020016114d9929190611cd7565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156115f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611534903390899088908890600401611d06565b602060405180830381600087803b15801561154e57600080fd5b505af192505050801561157e575060408051601f3d908101601f1916820190925261157b91810190611d43565b60015b6115d8573d8080156115ac576040519150601f19603f3d011682016040523d82523d6000602084013e6115b1565b606091505b5080516115d05760405162461bcd60e51b815260040161051190611c85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ec2565b506001949350505050565b6060600a805461053c90611b27565b6060816116305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561165a578061164481611c29565b91506116539050600a83611bfe565b9150611634565b60008167ffffffffffffffff81111561167557611675611929565b6040519080825280601f01601f19166020018201604052801561169f576020820181803683370190505b5090505b8415610ec2576116b4600183611c12565b91506116c1600a86611d60565b6116cc906030611c6d565b60f81b8183815181106116e1576116e1611d74565b60200101906001600160f81b031916908160001a905350611703600a86611bfe565b94506116a3565b82805461171690611b27565b90600052602060002090601f016020900481019282611738576000855561177e565b82601f1061175157805160ff191683800117855561177e565b8280016001018555821561177e579182015b8281111561177e578251825591602001919060010190611763565b5061178a92915061178e565b5090565b5b8082111561178a576000815560010161178f565b6001600160e01b031981168114610d1257600080fd5b6000602082840312156117cb57600080fd5b81356114e9816117a3565b803580151581146117e657600080fd5b919050565b6000602082840312156117fd57600080fd5b6114e9826117d6565b60005b83811015611821578181015183820152602001611809565b83811115610c435750506000910152565b6000815180845261184a816020860160208601611806565b601f01601f19169290920160200192915050565b6020815260006114e96020830184611832565b60006020828403121561188357600080fd5b5035919050565b80356001600160a01b03811681146117e657600080fd5b600080604083850312156118b457600080fd5b6118bd8361188a565b946020939093013593505050565b6000806000606084860312156118e057600080fd5b6118e98461188a565b92506118f76020850161188a565b9150604084013590509250925092565b6000806040838503121561191a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561195a5761195a611929565b604051601f8501601f19908116603f0116810190828211818310171561198257611982611929565b8160405280935085815286868601111561199b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119c757600080fd5b813567ffffffffffffffff8111156119de57600080fd5b8201601f810184136119ef57600080fd5b610ec28482356020840161193f565b600060208284031215611a1057600080fd5b6114e98261188a565b60008060408385031215611a2c57600080fd5b611a358361188a565b9150611a43602084016117d6565b90509250929050565b60008060008060808587031215611a6257600080fd5b611a6b8561188a565b9350611a796020860161188a565b925060408501359150606085013567ffffffffffffffff811115611a9c57600080fd5b8501601f81018713611aad57600080fd5b611abc8782356020840161193f565b91505092959194509250565b60008060408385031215611adb57600080fd5b611ae48361188a565b9150611a436020840161188a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611b3b57607f821691505b60208210811415611b5c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611be357611be3611bb3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c0d57611c0d611be8565b500490565b600082821015611c2457611c24611bb3565b500390565b6000600019821415611c3d57611c3d611bb3565b5060010190565b60008251611c56818460208701611806565b64173539b7b760d91b920191825250600501919050565b60008219821115611c8057611c80611bb3565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611ce9818460208801611806565b835190830190611cfd818360208801611806565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d3990830184611832565b9695505050505050565b600060208284031215611d5557600080fd5b81516114e9816117a3565b600082611d6f57611d6f611be8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fdfd8121d536ab590bdf74de7b3c730e972914311a5c16bb8877fe7a0860193a64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51767968795175697063384e5936784a6b4c5a6154614a32336e4e55674265584872483750675177325173512f00000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610419578063e985e9c514610439578063eb8d244414610482578063f2fde38b1461049c57600080fd5b8063a22cb465146103c4578063b88d4fde146103e4578063b8fc10511461040457600080fd5b80636352211e1461032957806370a0823114610349578063715018a6146103695780638da5cb5b1461037e57806395d89b411461039c578063a0712d68146103b157600080fd5b806323b872dd1161012357806323b872dd1461025f5780632a55205a1461027f57806332cb6b0c146102be5780633ccfd60b146102d457806342842e0e146102e957806355f804b31461030957600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b6101863660046117b9565b6104bc565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046117eb565b6104e7565b005b3480156101ce57600080fd5b506101d761052d565b604051610197919061185e565b3480156101f057600080fd5b506102046101ff366004611871565b6105bf565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c06102373660046118a1565b610654565b34801561024857600080fd5b5061025161076a565b604051908152602001610197565b34801561026b57600080fd5b506101c061027a3660046118cb565b61077a565b34801561028b57600080fd5b5061029f61029a366004611907565b6107ab565b604080516001600160a01b039093168352602083019190915201610197565b3480156102ca57600080fd5b506102516108ae81565b3480156102e057600080fd5b506101c06107d3565b3480156102f557600080fd5b506101c06103043660046118cb565b6108b4565b34801561031557600080fd5b506101c06103243660046119b5565b6108cf565b34801561033557600080fd5b50610204610344366004611871565b610910565b34801561035557600080fd5b506102516103643660046119fe565b610987565b34801561037557600080fd5b506101c0610a0e565b34801561038a57600080fd5b506007546001600160a01b0316610204565b3480156103a857600080fd5b506101d7610a44565b6101c06103bf366004611871565b610a53565b3480156103d057600080fd5b506101c06103df366004611a19565b610c06565b3480156103f057600080fd5b506101c06103ff366004611a4c565b610c11565b34801561041057600080fd5b50610251606481565b34801561042557600080fd5b506101d7610434366004611871565b610c49565b34801561044557600080fd5b5061018b610454366004611ac8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048e57600080fd5b5060095461018b9060ff1681565b3480156104a857600080fd5b506101c06104b73660046119fe565b610c7a565b60006001600160e01b0319821663152a902d60e11b14806104e157506104e182610d15565b92915050565b6007546001600160a01b0316331461051a5760405162461bcd60e51b815260040161051190611af2565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053c90611b27565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611b27565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610511565b506000908152600460205260409020546001600160a01b031690565b600061065f82610910565b9050806001600160a01b0316836001600160a01b031614156106cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610511565b336001600160a01b03821614806106e957506106e98133610454565b61075b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610511565b6107658383610d65565b505050565b600061077560085490565b905090565b6107843382610dd3565b6107a05760405162461bcd60e51b815260040161051190611b62565b610765838383610eca565b600080306127106107be856102ee611bc9565b6107c89190611bfe565b915091509250929050565b600260065414156108265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610511565b60026006556007546001600160a01b031633146108555760405162461bcd60e51b815260040161051190611af2565b4761088761086b6007546001600160a01b031690565b6064610878846063611bc9565b6108829190611bfe565b611066565b6108ac73a7c8ef131344639f8c4ac295fb6f08695721198b6064610878846001611bc9565b506001600655565b61076583838360405180602001604052806000815250610c11565b6007546001600160a01b031633146108f95760405162461bcd60e51b815260040161051190611af2565b805161090c90600a90602084019061170a565b5050565b6000818152600260205260408120546001600160a01b0316806104e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610511565b60006001600160a01b0382166109f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610511565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610a385760405162461bcd60e51b815260040161051190611af2565b610a42600061117f565b565b60606001805461053c90611b27565b60026006541415610aa65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610511565b60026006556007546001600160a01b03163314610ad55760405162461bcd60e51b815260040161051190611af2565b60095460ff16610b195760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610511565b610b25816108ae611c12565b610b2d61076a565b1115610b705760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610511565b6064811115610bc15760405162461bcd60e51b815260206004820152601a60248201527f4d696e74206174206d6f73742031303020617420612074696d650000000000006044820152606401610511565b60005b81811015610bfd57610bda600880546001019055565b610beb33610be661076a565b6111d1565b80610bf581611c29565b915050610bc4565b50506001600655565b61090c338383611313565b610c1b3383610dd3565b610c375760405162461bcd60e51b815260040161051190611b62565b610c43848484846113e2565b50505050565b6060610c5482611415565b604051602001610c649190611c44565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161051190611af2565b6001600160a01b038116610d095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b610d128161117f565b50565b60006001600160e01b031982166380ac58cd60e01b1480610d4657506001600160e01b03198216635b5e139f60e01b145b806104e157506301ffc9a760e01b6001600160e01b03198316146104e1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d9a82610910565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610511565b6000610e5783610910565b9050806001600160a01b0316846001600160a01b03161480610e925750836001600160a01b0316610e87846105bf565b6001600160a01b0316145b80610ec257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610edd82610910565b6001600160a01b031614610f415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610511565b6001600160a01b038216610fa35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610511565b610fae600082610d65565b6001600160a01b0383166000908152600360205260408120805460019290610fd7908490611c12565b90915550506001600160a01b0382166000908152600360205260408120805460019290611005908490611c6d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156110b65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610511565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611103576040519150601f19603f3d011682016040523d82523d6000602084013e611108565b606091505b50509050806107655760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610511565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166112275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610511565b6000818152600260205260409020546001600160a01b03161561128c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610511565b6001600160a01b03821660009081526003602052604081208054600192906112b5908490611c6d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156113755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610511565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113ed848484610eca565b6113f9848484846114f0565b610c435760405162461bcd60e51b815260040161051190611c85565b6000818152600260205260409020546060906001600160a01b03166114945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610511565b600061149e6115fd565b905060008151116114be57604051806020016040528060008152506114e9565b806114c88461160c565b6040516020016114d9929190611cd7565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156115f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611534903390899088908890600401611d06565b602060405180830381600087803b15801561154e57600080fd5b505af192505050801561157e575060408051601f3d908101601f1916820190925261157b91810190611d43565b60015b6115d8573d8080156115ac576040519150601f19603f3d011682016040523d82523d6000602084013e6115b1565b606091505b5080516115d05760405162461bcd60e51b815260040161051190611c85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ec2565b506001949350505050565b6060600a805461053c90611b27565b6060816116305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561165a578061164481611c29565b91506116539050600a83611bfe565b9150611634565b60008167ffffffffffffffff81111561167557611675611929565b6040519080825280601f01601f19166020018201604052801561169f576020820181803683370190505b5090505b8415610ec2576116b4600183611c12565b91506116c1600a86611d60565b6116cc906030611c6d565b60f81b8183815181106116e1576116e1611d74565b60200101906001600160f81b031916908160001a905350611703600a86611bfe565b94506116a3565b82805461171690611b27565b90600052602060002090601f016020900481019282611738576000855561177e565b82601f1061175157805160ff191683800117855561177e565b8280016001018555821561177e579182015b8281111561177e578251825591602001919060010190611763565b5061178a92915061178e565b5090565b5b8082111561178a576000815560010161178f565b6001600160e01b031981168114610d1257600080fd5b6000602082840312156117cb57600080fd5b81356114e9816117a3565b803580151581146117e657600080fd5b919050565b6000602082840312156117fd57600080fd5b6114e9826117d6565b60005b83811015611821578181015183820152602001611809565b83811115610c435750506000910152565b6000815180845261184a816020860160208601611806565b601f01601f19169290920160200192915050565b6020815260006114e96020830184611832565b60006020828403121561188357600080fd5b5035919050565b80356001600160a01b03811681146117e657600080fd5b600080604083850312156118b457600080fd5b6118bd8361188a565b946020939093013593505050565b6000806000606084860312156118e057600080fd5b6118e98461188a565b92506118f76020850161188a565b9150604084013590509250925092565b6000806040838503121561191a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561195a5761195a611929565b604051601f8501601f19908116603f0116810190828211818310171561198257611982611929565b8160405280935085815286868601111561199b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119c757600080fd5b813567ffffffffffffffff8111156119de57600080fd5b8201601f810184136119ef57600080fd5b610ec28482356020840161193f565b600060208284031215611a1057600080fd5b6114e98261188a565b60008060408385031215611a2c57600080fd5b611a358361188a565b9150611a43602084016117d6565b90509250929050565b60008060008060808587031215611a6257600080fd5b611a6b8561188a565b9350611a796020860161188a565b925060408501359150606085013567ffffffffffffffff811115611a9c57600080fd5b8501601f81018713611aad57600080fd5b611abc8782356020840161193f565b91505092959194509250565b60008060408385031215611adb57600080fd5b611ae48361188a565b9150611a436020840161188a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611b3b57607f821691505b60208210811415611b5c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611be357611be3611bb3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c0d57611c0d611be8565b500490565b600082821015611c2457611c24611bb3565b500390565b6000600019821415611c3d57611c3d611bb3565b5060010190565b60008251611c56818460208701611806565b64173539b7b760d91b920191825250600501919050565b60008219821115611c8057611c80611bb3565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611ce9818460208801611806565b835190830190611cfd818360208801611806565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d3990830184611832565b9695505050505050565b600060208284031215611d5557600080fd5b81516114e9816117a3565b600082611d6f57611d6f611be8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fdfd8121d536ab590bdf74de7b3c730e972914311a5c16bb8877fe7a0860193a64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51767968795175697063384e5936784a6b4c5a6154614a32336e4e55674265584872483750675177325173512f00000000000000000000
-----Decoded View---------------
Arg [0] : customBaseURI_ (string): ipfs://QmQvyhyQuipc8NY6xJkLZaTaJ23nNUgBeXHrH7PgQw2QsQ/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d51767968795175697063384e5936784a6b4c5a6154614a
Arg [3] : 32336e4e55674265584872483750675177325173512f00000000000000000000
Deployed Bytecode Sourcemap
45124:2384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47245:260;;;;;;;;;;-1:-1:-1;47245:260:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;47245:260:0;;;;;;;;46090:105;;;;;;;;;;-1:-1:-1;46090:105:0;;;;;:::i;:::-;;:::i;:::-;;30361:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31920:221::-;;;;;;;;;;-1:-1:-1;31920:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;31920:221:0;1878:203:1;31443:411:0;;;;;;;;;;-1:-1:-1;31443:411:0;;;;;:::i;:::-;;:::i;45925:96::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;45925:96:0;2523:177:1;32670:339:0;;;;;;;;;;-1:-1:-1;32670:339:0;;;;;:::i;:::-;;:::i;47047:192::-;;;;;;;;;;-1:-1:-1;47047:192:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3483:32:1;;;3465:51;;3547:2;3532:18;;3525:34;;;;3438:18;47047:192:0;3291:274:1;45374:41:0;;;;;;;;;;;;45411:4;45374:41;;46782:236;;;;;;;;;;;;;:::i;33080:185::-;;;;;;;;;;-1:-1:-1;33080:185:0;;;;;:::i;:::-;;:::i;46262:112::-;;;;;;;;;;-1:-1:-1;46262:112:0;;;;;:::i;:::-;;:::i;30055:239::-;;;;;;;;;;-1:-1:-1;30055:239:0;;;;;:::i;:::-;;:::i;29785:208::-;;;;;;;;;;-1:-1:-1;29785:208:0;;;;;:::i;:::-;;:::i;8987:103::-;;;;;;;;;;;;;:::i;8336:87::-;;;;;;;;;;-1:-1:-1;8409:6:0;;-1:-1:-1;;;;;8409:6:0;8336:87;;30530:104;;;;;;;;;;;;;:::i;45517:402::-;;;;;;:::i;:::-;;:::i;32213:155::-;;;;;;;;;;-1:-1:-1;32213:155:0;;;;;:::i;:::-;;:::i;33336:328::-;;;;;;;;;;-1:-1:-1;33336:328:0;;;;;:::i;:::-;;:::i;45422:43::-;;;;;;;;;;;;45462:3;45422:43;;46494:166;;;;;;;;;;-1:-1:-1;46494:166:0;;;;;:::i;:::-;;:::i;32439:164::-;;;;;;;;;;-1:-1:-1;32439:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32560:25:0;;;32536:4;32560:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32439:164;46051:32;;;;;;;;;;-1:-1:-1;46051:32:0;;;;;;;;9245:201;;;;;;;;;;-1:-1:-1;9245:201:0;;;;;:::i;:::-;;:::i;47245:260::-;47372:4;-1:-1:-1;;;;;;47404:41:0;;-1:-1:-1;;;47404:41:0;;:88;;;47456:36;47480:11;47456:23;:36::i;:::-;47388:111;47245:260;-1:-1:-1;;47245:260:0:o;46090:105::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;;;;;;;;;46161:12:::1;:28:::0;;-1:-1:-1;;46161:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46090:105::o;30361:100::-;30415:13;30448:5;30441:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30361:100;:::o;31920:221::-;31996:7;35263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35263:16:0;32016:73;;;;-1:-1:-1;;;32016:73:0;;7130:2:1;32016:73:0;;;7112:21:1;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:42;7311:19;;32016:73:0;6928:408:1;32016:73:0;-1:-1:-1;32109:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32109:24:0;;31920:221::o;31443:411::-;31524:13;31540:23;31555:7;31540:14;:23::i;:::-;31524:39;;31588:5;-1:-1:-1;;;;;31582:11:0;:2;-1:-1:-1;;;;;31582:11:0;;;31574:57;;;;-1:-1:-1;;;31574:57:0;;7543:2:1;31574:57:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;-1:-1:-1;;;7672:18:1;;;7665:31;7713:19;;31574:57:0;7341:397:1;31574:57:0;7140:10;-1:-1:-1;;;;;31666:21:0;;;;:62;;-1:-1:-1;31691:37:0;31708:5;7140:10;32439:164;:::i;31691:37::-;31644:168;;;;-1:-1:-1;;;31644:168:0;;7945:2:1;31644:168:0;;;7927:21:1;7984:2;7964:18;;;7957:30;8023:34;8003:18;;;7996:62;8094:26;8074:18;;;8067:54;8138:19;;31644:168:0;7743:420:1;31644:168:0;31825:21;31834:2;31838:7;31825:8;:21::i;:::-;31513:341;31443:411;;:::o;45925:96::-;45969:7;45992:23;:13;997:14;;905:114;45992:23;45985:30;;45925:96;:::o;32670:339::-;32865:41;7140:10;32898:7;32865:18;:41::i;:::-;32857:103;;;;-1:-1:-1;;;32857:103:0;;;;;;;:::i;:::-;32973:28;32983:4;32989:2;32993:7;32973:9;:28::i;47047:192::-;47133:16;;47200:4;47227:5;47208:15;:9;47220:3;47208:15;:::i;:::-;47207:25;;;;:::i;:::-;47184:49;;;;47047:192;;;;;:::o;46782:236::-;3310:1;3908:7;;:19;;3900:63;;;;-1:-1:-1;;;3900:63:0;;9350:2:1;3900:63:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:33;9408:18;;;9401:61;9479:18;;3900:63:0;9148:355:1;3900:63:0;3310:1;4041:7;:18;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23:::1;8548:68;;;;-1:-1:-1::0;;;8548:68:0::1;;;;;;;:::i;:::-;46857:21:::2;46887:55;46913:7;8409:6:::0;;-1:-1:-1;;;;;8409:6:0;;8336:87;46913:7:::2;46938:3;46923:12;:7:::0;46933:2:::2;46923:12;:::i;:::-;:18;;;;:::i;:::-;46887:17;:55::i;:::-;46951:61;46733:42;47008:3;46994:11;:7:::0;47004:1:::2;46994:11;:::i;46951:61::-;-1:-1:-1::0;3266:1:0;4220:7;:22;46782:236::o;33080:185::-;33218:39;33235:4;33241:2;33245:7;33218:39;;;;;;;;;;;;:16;:39::i;46262:112::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;46338:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46262:112:::0;:::o;30055:239::-;30127:7;30163:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30163:16:0;30198:19;30190:73;;;;-1:-1:-1;;;30190:73:0;;9710:2:1;30190:73:0;;;9692:21:1;9749:2;9729:18;;;9722:30;9788:34;9768:18;;;9761:62;-1:-1:-1;;;9839:18:1;;;9832:39;9888:19;;30190:73:0;9508:405:1;29785:208:0;29857:7;-1:-1:-1;;;;;29885:19:0;;29877:74;;;;-1:-1:-1;;;29877:74:0;;10120:2:1;29877:74:0;;;10102:21:1;10159:2;10139:18;;;10132:30;10198:34;10178:18;;;10171:62;-1:-1:-1;;;10249:18:1;;;10242:40;10299:19;;29877:74:0;9918:406:1;29877:74:0;-1:-1:-1;;;;;;29969:16:0;;;;;:9;:16;;;;;;;29785:208::o;8987:103::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;9052:30:::1;9079:1;9052:18;:30::i;:::-;8987:103::o:0;30530:104::-;30586:13;30619:7;30612:14;;;;;:::i;45517:402::-;3310:1;3908:7;;:19;;3900:63;;;;-1:-1:-1;;;3900:63:0;;9350:2:1;3900:63:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:33;9408:18;;;9401:61;9479:18;;3900:63:0;9148:355:1;3900:63:0;3310:1;4041:7;:18;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23:::1;8548:68;;;;-1:-1:-1::0;;;8548:68:0::1;;;;;;;:::i;:::-;45599:12:::2;::::0;::::2;;45591:40;;;::::0;-1:-1:-1;;;45591:40:0;;10531:2:1;45591:40:0::2;::::0;::::2;10513:21:1::0;10570:2;10550:18;;;10543:30;-1:-1:-1;;;10589:18:1;;;10582:45;10644:18;;45591:40:0::2;10329:339:1::0;45591:40:0::2;45666:18;45679:5:::0;45411:4:::2;45666:18;:::i;:::-;45648:13;:11;:13::i;:::-;:37;;45640:68;;;::::0;-1:-1:-1;;;45640:68:0;;11005:2:1;45640:68:0::2;::::0;::::2;10987:21:1::0;11044:2;11024:18;;;11017:30;-1:-1:-1;;;11063:18:1;;;11056:48;11121:18;;45640:68:0::2;10803:342:1::0;45640:68:0::2;45462:3;45725:5;:22;;45717:61;;;::::0;-1:-1:-1;;;45717:61:0;;11352:2:1;45717:61:0::2;::::0;::::2;11334:21:1::0;11391:2;11371:18;;;11364:30;11430:28;11410:18;;;11403:56;11476:18;;45717:61:0::2;11150:350:1::0;45717:61:0::2;45792:9;45787:127;45811:5;45807:1;:9;45787:127;;;45832:25;:13;1116:19:::0;;1134:1;1116:19;;;1027:127;45832:25:::2;45866:32;45872:10;45884:13;:11;:13::i;:::-;45866:5;:32::i;:::-;45818:3:::0;::::2;::::0;::::2;:::i;:::-;;;;45787:127;;;-1:-1:-1::0;;3266:1:0;4220:7;:22;45517:402::o;32213:155::-;32308:52;7140:10;32341:8;32351;32308:18;:52::i;33336:328::-;33511:41;7140:10;33544:7;33511:18;:41::i;:::-;33503:103;;;;-1:-1:-1;;;33503:103:0;;;;;;;:::i;:::-;33617:39;33631:4;33637:2;33641:7;33650:5;33617:13;:39::i;:::-;33336:328;;;;:::o;46494:166::-;46564:13;46620:23;46635:7;46620:14;:23::i;:::-;46603:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;46589:65;;46494:166;;;:::o;9245:201::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9334:22:0;::::1;9326:73;;;::::0;-1:-1:-1;;;9326:73:0;;12295:2:1;9326:73:0::1;::::0;::::1;12277:21:1::0;12334:2;12314:18;;;12307:30;12373:34;12353:18;;;12346:62;-1:-1:-1;;;12424:18:1;;;12417:36;12470:19;;9326:73:0::1;12093:402:1::0;9326:73:0::1;9410:28;9429:8;9410:18;:28::i;:::-;9245:201:::0;:::o;29416:305::-;29518:4;-1:-1:-1;;;;;;29555:40:0;;-1:-1:-1;;;29555:40:0;;:105;;-1:-1:-1;;;;;;;29612:48:0;;-1:-1:-1;;;29612:48:0;29555:105;:158;;;-1:-1:-1;;;;;;;;;;22279:40:0;;;29677:36;22170:157;39320:174;39395:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39395:29:0;-1:-1:-1;;;;;39395:29:0;;;;;;;;:24;;39449:23;39395:24;39449:14;:23::i;:::-;-1:-1:-1;;;;;39440:46:0;;;;;;;;;;;39320:174;;:::o;35468:348::-;35561:4;35263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35263:16:0;35578:73;;;;-1:-1:-1;;;35578:73:0;;12702:2:1;35578:73:0;;;12684:21:1;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:42;12883:19;;35578:73:0;12500:408:1;35578:73:0;35662:13;35678:23;35693:7;35678:14;:23::i;:::-;35662:39;;35731:5;-1:-1:-1;;;;;35720:16:0;:7;-1:-1:-1;;;;;35720:16:0;;:51;;;;35764:7;-1:-1:-1;;;;;35740:31:0;:20;35752:7;35740:11;:20::i;:::-;-1:-1:-1;;;;;35740:31:0;;35720:51;:87;;;-1:-1:-1;;;;;;32560:25:0;;;32536:4;32560:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35775:32;35712:96;35468:348;-1:-1:-1;;;;35468:348:0:o;38577:625::-;38736:4;-1:-1:-1;;;;;38709:31:0;:23;38724:7;38709:14;:23::i;:::-;-1:-1:-1;;;;;38709:31:0;;38701:81;;;;-1:-1:-1;;;38701:81:0;;13115:2:1;38701:81:0;;;13097:21:1;13154:2;13134:18;;;13127:30;13193:34;13173:18;;;13166:62;-1:-1:-1;;;13244:18:1;;;13237:35;13289:19;;38701:81:0;12913:401:1;38701:81:0;-1:-1:-1;;;;;38801:16:0;;38793:65;;;;-1:-1:-1;;;38793:65:0;;13521:2:1;38793:65:0;;;13503:21:1;13560:2;13540:18;;;13533:30;13599:34;13579:18;;;13572:62;-1:-1:-1;;;13650:18:1;;;13643:34;13694:19;;38793:65:0;13319:400:1;38793:65:0;38975:29;38992:1;38996:7;38975:8;:29::i;:::-;-1:-1:-1;;;;;39017:15:0;;;;;;:9;:15;;;;;:20;;39036:1;;39017:15;:20;;39036:1;;39017:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39048:13:0;;;;;;:9;:13;;;;;:18;;39065:1;;39048:13;:18;;39065:1;;39048:18;:::i;:::-;;;;-1:-1:-1;;39077:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39077:21:0;-1:-1:-1;;;;;39077:21:0;;;;;;;;;39116:27;;39077:16;;39116:27;;;;;;;31513:341;31443:411;;:::o;12298:317::-;12413:6;12388:21;:31;;12380:73;;;;-1:-1:-1;;;12380:73:0;;14059:2:1;12380:73:0;;;14041:21:1;14098:2;14078:18;;;14071:30;14137:31;14117:18;;;14110:59;14186:18;;12380:73:0;13857:353:1;12380:73:0;12467:12;12485:9;-1:-1:-1;;;;;12485:14:0;12507:6;12485:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12466:52;;;12537:7;12529:78;;;;-1:-1:-1;;;12529:78:0;;14627:2:1;12529:78:0;;;14609:21:1;14666:2;14646:18;;;14639:30;14705:34;14685:18;;;14678:62;14776:28;14756:18;;;14749:56;14822:19;;12529:78:0;14425:422:1;9606:191:0;9699:6;;;-1:-1:-1;;;;;9716:17:0;;;-1:-1:-1;;;;;;9716:17:0;;;;;;;9749:40;;9699:6;;;9716:17;9699:6;;9749:40;;9680:16;;9749:40;9669:128;9606:191;:::o;37152:439::-;-1:-1:-1;;;;;37232:16:0;;37224:61;;;;-1:-1:-1;;;37224:61:0;;15054:2:1;37224:61:0;;;15036:21:1;;;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;15184:18;;37224:61:0;14852:356:1;37224:61:0;35239:4;35263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35263:16:0;:30;37296:58;;;;-1:-1:-1;;;37296:58:0;;15415:2:1;37296:58:0;;;15397:21:1;15454:2;15434:18;;;15427:30;15493;15473:18;;;15466:58;15541:18;;37296:58:0;15213:352:1;37296:58:0;-1:-1:-1;;;;;37425:13:0;;;;;;:9;:13;;;;;:18;;37442:1;;37425:13;:18;;37442:1;;37425:18;:::i;:::-;;;;-1:-1:-1;;37454:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37454:21:0;-1:-1:-1;;;;;37454:21:0;;;;;;;;37493:33;;37454:16;;;37493:33;;37454:16;;37493:33;46338:30:::1;46262:112:::0;:::o;39636:315::-;39791:8;-1:-1:-1;;;;;39782:17:0;:5;-1:-1:-1;;;;;39782:17:0;;;39774:55;;;;-1:-1:-1;;;39774:55:0;;15772:2:1;39774:55:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:27;15830:18;;;15823:55;15895:18;;39774:55:0;15570:349:1;39774:55:0;-1:-1:-1;;;;;39840:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39840:46:0;;;;;;;;;;39902:41;;540::1;;;39902::0;;513:18:1;39902:41:0;;;;;;;39636:315;;;:::o;34546:::-;34703:28;34713:4;34719:2;34723:7;34703:9;:28::i;:::-;34750:48;34773:4;34779:2;34783:7;34792:5;34750:22;:48::i;:::-;34742:111;;;;-1:-1:-1;;;34742:111:0;;;;;;;:::i;30705:334::-;35239:4;35263:16;;;:7;:16;;;;;;30778:13;;-1:-1:-1;;;;;35263:16:0;30804:76;;;;-1:-1:-1;;;30804:76:0;;16545:2:1;30804:76:0;;;16527:21:1;16584:2;16564:18;;;16557:30;16623:34;16603:18;;;16596:62;-1:-1:-1;;;16674:18:1;;;16667:45;16729:19;;30804:76:0;16343:411:1;30804:76:0;30893:21;30917:10;:8;:10::i;:::-;30893:34;;30969:1;30951:7;30945:21;:25;:86;;;;;;;;;;;;;;;;;30997:7;31006:18;:7;:16;:18::i;:::-;30980:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30945:86;30938:93;30705:334;-1:-1:-1;;;30705:334:0:o;40516:799::-;40671:4;-1:-1:-1;;;;;40692:13:0;;11332:19;:23;40688:620;;40728:72;;-1:-1:-1;;;40728:72:0;;-1:-1:-1;;;;;40728:36:0;;;;;:72;;7140:10;;40779:4;;40785:7;;40794:5;;40728:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40728:72:0;;;;;;;;-1:-1:-1;;40728:72:0;;;;;;;;;;;;:::i;:::-;;;40724:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40970:13:0;;40966:272;;41013:60;;-1:-1:-1;;;41013:60:0;;;;;;;:::i;40966:272::-;41188:6;41182:13;41173:6;41169:2;41165:15;41158:38;40724:529;-1:-1:-1;;;;;;40851:51:0;-1:-1:-1;;;40851:51:0;;-1:-1:-1;40844:58:0;;40688:620;-1:-1:-1;41292:4:0;40516:799;;;;;;:::o;46380:108::-;46440:13;46469;46462:20;;;;;:::i;4622:723::-;4678:13;4899:10;4895:53;;-1:-1:-1;;4926:10:0;;;;;;;;;;;;-1:-1:-1;;;4926:10:0;;;;;4622:723::o;4895:53::-;4973:5;4958:12;5014:78;5021:9;;5014:78;;5047:8;;;;:::i;:::-;;-1:-1:-1;5070:10:0;;-1:-1:-1;5078:2:0;5070:10;;:::i;:::-;;;5014:78;;;5102:19;5134:6;5124:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5124:17:0;;5102:39;;5152:154;5159:10;;5152:154;;5186:11;5196:1;5186:11;;:::i;:::-;;-1:-1:-1;5255:10:0;5263:2;5255:5;:10;:::i;:::-;5242:24;;:2;:24;:::i;:::-;5229:39;;5212:6;5219;5212:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5212:56:0;;;;;;;;-1:-1:-1;5283:11:0;5292:2;5283:11;;:::i;:::-;;;5152:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:1;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:1:o;3570:127::-;3631:10;3626:3;3622:20;3619:1;3612:31;3662:4;3659:1;3652:15;3686:4;3683:1;3676:15;3702:632;3767:5;3797:18;3838:2;3830:6;3827:14;3824:40;;;3844:18;;:::i;:::-;3919:2;3913:9;3887:2;3973:15;;-1:-1:-1;;3969:24:1;;;3995:2;3965:33;3961:42;3949:55;;;4019:18;;;4039:22;;;4016:46;4013:72;;;4065:18;;:::i;:::-;4105:10;4101:2;4094:22;4134:6;4125:15;;4164:6;4156;4149:22;4204:3;4195:6;4190:3;4186:16;4183:25;4180:45;;;4221:1;4218;4211:12;4180:45;4271:6;4266:3;4259:4;4251:6;4247:17;4234:44;4326:1;4319:4;4310:6;4302;4298:19;4294:30;4287:41;;;;3702:632;;;;;:::o;4339:451::-;4408:6;4461:2;4449:9;4440:7;4436:23;4432:32;4429:52;;;4477:1;4474;4467:12;4429:52;4517:9;4504:23;4550:18;4542:6;4539:30;4536:50;;;4582:1;4579;4572:12;4536:50;4605:22;;4658:4;4650:13;;4646:27;-1:-1:-1;4636:55:1;;4687:1;4684;4677:12;4636:55;4710:74;4776:7;4771:2;4758:16;4753:2;4749;4745:11;4710:74;:::i;4795:186::-;4854:6;4907:2;4895:9;4886:7;4882:23;4878:32;4875:52;;;4923:1;4920;4913:12;4875:52;4946:29;4965:9;4946:29;:::i;4986:254::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:29;5170:9;5151:29;:::i;:::-;5141:39;;5199:35;5230:2;5219:9;5215:18;5199:35;:::i;:::-;5189:45;;4986:254;;;;;:::o;5245:667::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5457:29;5476:9;5457:29;:::i;:::-;5447:39;;5505:38;5539:2;5528:9;5524:18;5505:38;:::i;:::-;5495:48;;5590:2;5579:9;5575:18;5562:32;5552:42;;5645:2;5634:9;5630:18;5617:32;5672:18;5664:6;5661:30;5658:50;;;5704:1;5701;5694:12;5658:50;5727:22;;5780:4;5772:13;;5768:27;-1:-1:-1;5758:55:1;;5809:1;5806;5799:12;5758:55;5832:74;5898:7;5893:2;5880:16;5875:2;5871;5867:11;5832:74;:::i;:::-;5822:84;;;5245:667;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:356::-;6384:2;6366:21;;;6403:18;;;6396:30;6462:34;6457:2;6442:18;;6435:62;6529:2;6514:18;;6182:356::o;6543:380::-;6622:1;6618:12;;;;6665;;;6686:61;;6740:4;6732:6;6728:17;6718:27;;6686:61;6793:2;6785:6;6782:14;6762:18;6759:38;6756:161;;;6839:10;6834:3;6830:20;6827:1;6820:31;6874:4;6871:1;6864:15;6902:4;6899:1;6892:15;6756:161;;6543:380;;;:::o;8168:413::-;8370:2;8352:21;;;8409:2;8389:18;;;8382:30;8448:34;8443:2;8428:18;;8421:62;-1:-1:-1;;;8514:2:1;8499:18;;8492:47;8571:3;8556:19;;8168:413::o;8586:127::-;8647:10;8642:3;8638:20;8635:1;8628:31;8678:4;8675:1;8668:15;8702:4;8699:1;8692:15;8718:168;8758:7;8824:1;8820;8816:6;8812:14;8809:1;8806:21;8801:1;8794:9;8787:17;8783:45;8780:71;;;8831:18;;:::i;:::-;-1:-1:-1;8871:9:1;;8718:168::o;8891:127::-;8952:10;8947:3;8943:20;8940:1;8933:31;8983:4;8980:1;8973:15;9007:4;9004:1;8997:15;9023:120;9063:1;9089;9079:35;;9094:18;;:::i;:::-;-1:-1:-1;9128:9:1;;9023:120::o;10673:125::-;10713:4;10741:1;10738;10735:8;10732:34;;;10746:18;;:::i;:::-;-1:-1:-1;10783:9:1;;10673:125::o;11505:135::-;11544:3;-1:-1:-1;;11565:17:1;;11562:43;;;11585:18;;:::i;:::-;-1:-1:-1;11632:1:1;11621:13;;11505:135::o;11645:443::-;11877:3;11915:6;11909:13;11931:53;11977:6;11972:3;11965:4;11957:6;11953:17;11931:53;:::i;:::-;-1:-1:-1;;;12006:16:1;;12031:22;;;-1:-1:-1;12080:1:1;12069:13;;11645:443;-1:-1:-1;11645:443:1:o;13724:128::-;13764:3;13795:1;13791:6;13788:1;13785:13;13782:39;;;13801:18;;:::i;:::-;-1:-1:-1;13837:9:1;;13724:128::o;15924:414::-;16126:2;16108:21;;;16165:2;16145:18;;;16138:30;16204:34;16199:2;16184:18;;16177:62;-1:-1:-1;;;16270:2:1;16255:18;;16248:48;16328:3;16313:19;;15924:414::o;16759:470::-;16938:3;16976:6;16970:13;16992:53;17038:6;17033:3;17026:4;17018:6;17014:17;16992:53;:::i;:::-;17108:13;;17067:16;;;;17130:57;17108:13;17067:16;17164:4;17152:17;;17130:57;:::i;:::-;17203:20;;16759:470;-1:-1:-1;;;;16759:470:1:o;17234:489::-;-1:-1:-1;;;;;17503:15:1;;;17485:34;;17555:15;;17550:2;17535:18;;17528:43;17602:2;17587:18;;17580:34;;;17650:3;17645:2;17630:18;;17623:31;;;17428:4;;17671:46;;17697:19;;17689:6;17671:46;:::i;:::-;17663:54;17234:489;-1:-1:-1;;;;;;17234:489:1:o;17728:249::-;17797:6;17850:2;17838:9;17829:7;17825:23;17821:32;17818:52;;;17866:1;17863;17856:12;17818:52;17898:9;17892:16;17917:30;17941:5;17917:30;:::i;17982:112::-;18014:1;18040;18030:35;;18045:18;;:::i;:::-;-1:-1:-1;18079:9:1;;17982:112::o;18099:127::-;18160:10;18155:3;18151:20;18148:1;18141:31;18191:4;18188:1;18181:15;18215:4;18212:1;18205:15
Swarm Source
ipfs://fdfd8121d536ab590bdf74de7b3c730e972914311a5c16bb8877fe7a0860193a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.