Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
804 AIED
Holders
116
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
15 AIEDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
borovik
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-12 */ // SPDX-License-Identifier: MIT // AI every day, by @3orovik (twitter) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @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/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // 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/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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/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: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract borovik is ERC721A, Ownable, ReentrancyGuard { uint public nextOwnerToExplicitlySet; string public baseURI; constructor() ERC721A("AI Every Day", "AIED") {} function reserveMint(uint256 num) external onlyOwner { _safeMint(msg.sender, num); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"num","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600c81526b41492045766572792044617960a01b6020808301918252835180850190945260048452631052515160e21b9084015281519192916200006291600191620000f6565b50805162000078906002906020840190620000f6565b505050620000956200008f620000a060201b60201c565b620000a4565b6001600855620001d9565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000104906200019c565b90600052602060002090601f01602090048101928262000128576000855562000173565b82601f106200014357805160ff191683800117855562000173565b8280016001018555821562000173579182015b828111156200017357825182559160200191906001019062000156565b506200018192915062000185565b5090565b5b8082111562000181576000815560010162000186565b600181811c90821680620001b157607f821691505b60208210811415620001d357634e487b7160e01b600052602260045260246000fd5b50919050565b611f5080620001e96000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636352211e116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610385578063d7224ba014610398578063e985e9c5146103a1578063f2fde38b146103dd57600080fd5b806395d89b4114610357578063a22cb4651461035f578063b88d4fde1461037257600080fd5b8063715018a6116100c8578063715018a6146102fd5780638da5cb5b146103055780639231ab2a1461031657600080fd5b80636352211e146102cf5780636c0360eb146102e257806370a08231146102ea57600080fd5b806323b872dd1161015b5780633ccfd60b116101355780633ccfd60b1461028e57806342842e0e146102965780634f6ccce7146102a957806355f804b3146102bc57600080fd5b806323b872dd146102555780632d20fb60146102685780632f745c591461027b57600080fd5b8063095ea7b31161018c578063095ea7b31461021b5780631342ff4c1461023057806318160ddd1461024357600080fd5b806301ffc9a7146101b357806306fdde03146101db578063081812fc146101f0575b600080fd5b6101c66101c1366004611be7565b6103f0565b60405190151581526020015b60405180910390f35b6101e361045d565b6040516101d29190611d43565b6102036101fe366004611c93565b6104ef565b6040516001600160a01b0390911681526020016101d2565b61022e610229366004611bbd565b61057f565b005b61022e61023e366004611c93565b610697565b6000545b6040519081526020016101d2565b61022e610263366004611a69565b6106ec565b61022e610276366004611c93565b6106f7565b610247610289366004611bbd565b6107a8565b61022e610905565b61022e6102a4366004611a69565b610a30565b6102476102b7366004611c93565b610a4b565b61022e6102ca366004611c21565b610aad565b6102036102dd366004611c93565b610b01565b6101e3610b13565b6102476102f8366004611a1b565b610ba1565b61022e610c32565b6007546001600160a01b0316610203565b610329610324366004611c93565b610c86565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101d2565b6101e3610ca3565b61022e61036d366004611b81565b610cb2565b61022e610380366004611aa5565b610d77565b6101e3610393366004611c93565b610db0565b61024760095481565b6101c66103af366004611a36565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61022e6103eb366004611a1b565b610e7e565b60006001600160e01b031982166380ac58cd60e01b148061042157506001600160e01b03198216635b5e139f60e01b145b8061043c57506001600160e01b0319821663780e9d6360e01b145b8061045757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461046c90611e22565b80601f016020809104026020016040519081016040528092919081815260200182805461049890611e22565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b60006104fc826000541190565b6105635760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061058a82610b01565b9050806001600160a01b0316836001600160a01b031614156105f95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161055a565b336001600160a01b0382161480610615575061061581336103af565b6106875760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161055a565b610692838383610f34565b505050565b6007546001600160a01b031633146106df5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b6106e93382610f90565b50565b610692838383610fae565b6007546001600160a01b0316331461073f5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b600260085414156107925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161055a565b60026008556107a0816112a7565b506001600855565b60006107b383610ba1565b821061080c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161055a565b600080549080805b838110156108a5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561086757805192505b876001600160a01b0316836001600160a01b0316141561089c57868414156108955750935061045792505050565b6001909301925b50600101610814565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161055a565b6007546001600160a01b0316331461094d5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b600260085414156109a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161055a565b6002600855604051600090339047908381818185875af1925050503d80600081146109e7576040519150601f19603f3d011682016040523d82523d6000602084013e6109ec565b606091505b50509050806107a05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161055a565b61069283838360405180602001604052806000815250610d77565b600080548210610aa95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161055a565b5090565b6007546001600160a01b03163314610af55760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b610692600a838361196f565b6000610b0c8261143f565b5192915050565b600a8054610b2090611e22565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4c90611e22565b8015610b995780601f10610b6e57610100808354040283529160200191610b99565b820191906000526020600020905b815481529060010190602001808311610b7c57829003601f168201915b505050505081565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161055a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c7a5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b610c846000611516565b565b60408051808201909152600080825260208201526104578261143f565b60606002805461046c90611e22565b6001600160a01b038216331415610d0b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161055a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d82848484610fae565b610d8e84848484611568565b610daa5760405162461bcd60e51b815260040161055a90611d56565b50505050565b6060610dbd826000541190565b610e215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161055a565b6000610e2b611676565b9050805160001415610e4c5760405180602001604052806000815250610e77565b80610e5684611685565b604051602001610e67929190611cd8565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ec65760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b6001600160a01b038116610f2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055a565b6106e981611516565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610faa82826040518060200160405280600081525061179b565b5050565b6000610fb98261143f565b80519091506000906001600160a01b0316336001600160a01b03161480610ff0575033610fe5846104ef565b6001600160a01b0316145b806110025750815161100290336103af565b9050806110775760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161055a565b846001600160a01b031682600001516001600160a01b0316146110eb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161055a565b6001600160a01b03841661114f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b61115f6000848460000151610f34565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661125d57611210816000541190565b1561125d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b806112f45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161055a565b6000546113435760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000604482015260640161055a565b60095460005481106113975760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e2073657400000000604482015260640161055a565b60005482820160001981019110156113b25750600054600019015b815b818111611434576000818152600360205260409020546001600160a01b031661142c5760006113e28261143f565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016113b4565b506001016009555050565b604080518082019091526000808252602082015261145e826000541190565b6114bd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161055a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561150c579392505050565b50600019016114bf565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ac903390899088908890600401611d07565b602060405180830381600087803b1580156115c657600080fd5b505af19250505080156115f6575060408051601f3d908101601f191682019092526115f391810190611c04565b60015b611650573d808015611624576040519150601f19603f3d011682016040523d82523d6000602084013e611629565b606091505b5080516116485760405162461bcd60e51b815260040161055a90611d56565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061166e565b5060015b949350505050565b6060600a805461046c90611e22565b6060816116a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d357806116bd81611e5d565b91506116cc9050600a83611dcb565b91506116ad565b60008167ffffffffffffffff8111156116ee576116ee611ece565b6040519080825280601f01601f191660200182016040528015611718576020820181803683370190505b5090505b841561166e5761172d600183611ddf565b915061173a600a86611e78565b611745906030611db3565b60f81b81838151811061175a5761175a611eb8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611794600a86611dcb565b945061171c565b61069283838360016000546001600160a01b0385166118065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161055a565b836118645760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161055a565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561195a5761193e6000888488611568565b61195a5760405162461bcd60e51b815260040161055a90611d56565b600191820191016118eb565b506000556112a0565b82805461197b90611e22565b90600052602060002090601f01602090048101928261199d57600085556119e3565b82601f106119b65782800160ff198235161785556119e3565b828001600101855582156119e3579182015b828111156119e35782358255916020019190600101906119c8565b50610aa99291505b80821115610aa957600081556001016119eb565b80356001600160a01b0381168114611a1657600080fd5b919050565b600060208284031215611a2d57600080fd5b610e77826119ff565b60008060408385031215611a4957600080fd5b611a52836119ff565b9150611a60602084016119ff565b90509250929050565b600080600060608486031215611a7e57600080fd5b611a87846119ff565b9250611a95602085016119ff565b9150604084013590509250925092565b60008060008060808587031215611abb57600080fd5b611ac4856119ff565b9350611ad2602086016119ff565b925060408501359150606085013567ffffffffffffffff80821115611af657600080fd5b818701915087601f830112611b0a57600080fd5b813581811115611b1c57611b1c611ece565b604051601f8201601f19908116603f01168101908382118183101715611b4457611b44611ece565b816040528281528a6020848701011115611b5d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b9457600080fd5b611b9d836119ff565b915060208301358015158114611bb257600080fd5b809150509250929050565b60008060408385031215611bd057600080fd5b611bd9836119ff565b946020939093013593505050565b600060208284031215611bf957600080fd5b8135610e7781611ee4565b600060208284031215611c1657600080fd5b8151610e7781611ee4565b60008060208385031215611c3457600080fd5b823567ffffffffffffffff80821115611c4c57600080fd5b818501915085601f830112611c6057600080fd5b813581811115611c6f57600080fd5b866020828501011115611c8157600080fd5b60209290920196919550909350505050565b600060208284031215611ca557600080fd5b5035919050565b60008151808452611cc4816020860160208601611df6565b601f01601f19169290920160200192915050565b60008351611cea818460208801611df6565b835190830190611cfe818360208801611df6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d396080830184611cac565b9695505050505050565b602081526000610e776020830184611cac565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b60008219821115611dc657611dc6611e8c565b500190565b600082611dda57611dda611ea2565b500490565b600082821015611df157611df1611e8c565b500390565b60005b83811015611e11578181015183820152602001611df9565b83811115610daa5750506000910152565b600181811c90821680611e3657607f821691505b60208210811415611e5757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7157611e71611e8c565b5060010190565b600082611e8757611e87611ea2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106e957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122043dd6f5233118c27a5d57c95d6756f42520b9e348feab558443799673348083f64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636352211e116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610385578063d7224ba014610398578063e985e9c5146103a1578063f2fde38b146103dd57600080fd5b806395d89b4114610357578063a22cb4651461035f578063b88d4fde1461037257600080fd5b8063715018a6116100c8578063715018a6146102fd5780638da5cb5b146103055780639231ab2a1461031657600080fd5b80636352211e146102cf5780636c0360eb146102e257806370a08231146102ea57600080fd5b806323b872dd1161015b5780633ccfd60b116101355780633ccfd60b1461028e57806342842e0e146102965780634f6ccce7146102a957806355f804b3146102bc57600080fd5b806323b872dd146102555780632d20fb60146102685780632f745c591461027b57600080fd5b8063095ea7b31161018c578063095ea7b31461021b5780631342ff4c1461023057806318160ddd1461024357600080fd5b806301ffc9a7146101b357806306fdde03146101db578063081812fc146101f0575b600080fd5b6101c66101c1366004611be7565b6103f0565b60405190151581526020015b60405180910390f35b6101e361045d565b6040516101d29190611d43565b6102036101fe366004611c93565b6104ef565b6040516001600160a01b0390911681526020016101d2565b61022e610229366004611bbd565b61057f565b005b61022e61023e366004611c93565b610697565b6000545b6040519081526020016101d2565b61022e610263366004611a69565b6106ec565b61022e610276366004611c93565b6106f7565b610247610289366004611bbd565b6107a8565b61022e610905565b61022e6102a4366004611a69565b610a30565b6102476102b7366004611c93565b610a4b565b61022e6102ca366004611c21565b610aad565b6102036102dd366004611c93565b610b01565b6101e3610b13565b6102476102f8366004611a1b565b610ba1565b61022e610c32565b6007546001600160a01b0316610203565b610329610324366004611c93565b610c86565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101d2565b6101e3610ca3565b61022e61036d366004611b81565b610cb2565b61022e610380366004611aa5565b610d77565b6101e3610393366004611c93565b610db0565b61024760095481565b6101c66103af366004611a36565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61022e6103eb366004611a1b565b610e7e565b60006001600160e01b031982166380ac58cd60e01b148061042157506001600160e01b03198216635b5e139f60e01b145b8061043c57506001600160e01b0319821663780e9d6360e01b145b8061045757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461046c90611e22565b80601f016020809104026020016040519081016040528092919081815260200182805461049890611e22565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b60006104fc826000541190565b6105635760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061058a82610b01565b9050806001600160a01b0316836001600160a01b031614156105f95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161055a565b336001600160a01b0382161480610615575061061581336103af565b6106875760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161055a565b610692838383610f34565b505050565b6007546001600160a01b031633146106df5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b6106e93382610f90565b50565b610692838383610fae565b6007546001600160a01b0316331461073f5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b600260085414156107925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161055a565b60026008556107a0816112a7565b506001600855565b60006107b383610ba1565b821061080c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161055a565b600080549080805b838110156108a5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561086757805192505b876001600160a01b0316836001600160a01b0316141561089c57868414156108955750935061045792505050565b6001909301925b50600101610814565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161055a565b6007546001600160a01b0316331461094d5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b600260085414156109a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161055a565b6002600855604051600090339047908381818185875af1925050503d80600081146109e7576040519150601f19603f3d011682016040523d82523d6000602084013e6109ec565b606091505b50509050806107a05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161055a565b61069283838360405180602001604052806000815250610d77565b600080548210610aa95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161055a565b5090565b6007546001600160a01b03163314610af55760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b610692600a838361196f565b6000610b0c8261143f565b5192915050565b600a8054610b2090611e22565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4c90611e22565b8015610b995780601f10610b6e57610100808354040283529160200191610b99565b820191906000526020600020905b815481529060010190602001808311610b7c57829003601f168201915b505050505081565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161055a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c7a5760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b610c846000611516565b565b60408051808201909152600080825260208201526104578261143f565b60606002805461046c90611e22565b6001600160a01b038216331415610d0b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161055a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d82848484610fae565b610d8e84848484611568565b610daa5760405162461bcd60e51b815260040161055a90611d56565b50505050565b6060610dbd826000541190565b610e215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161055a565b6000610e2b611676565b9050805160001415610e4c5760405180602001604052806000815250610e77565b80610e5684611685565b604051602001610e67929190611cd8565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ec65760405162461bcd60e51b81526020600482018190526024820152600080516020611efb833981519152604482015260640161055a565b6001600160a01b038116610f2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055a565b6106e981611516565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610faa82826040518060200160405280600081525061179b565b5050565b6000610fb98261143f565b80519091506000906001600160a01b0316336001600160a01b03161480610ff0575033610fe5846104ef565b6001600160a01b0316145b806110025750815161100290336103af565b9050806110775760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161055a565b846001600160a01b031682600001516001600160a01b0316146110eb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161055a565b6001600160a01b03841661114f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b61115f6000848460000151610f34565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661125d57611210816000541190565b1561125d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b806112f45760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161055a565b6000546113435760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000604482015260640161055a565b60095460005481106113975760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e2073657400000000604482015260640161055a565b60005482820160001981019110156113b25750600054600019015b815b818111611434576000818152600360205260409020546001600160a01b031661142c5760006113e28261143f565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016113b4565b506001016009555050565b604080518082019091526000808252602082015261145e826000541190565b6114bd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161055a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561150c579392505050565b50600019016114bf565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ac903390899088908890600401611d07565b602060405180830381600087803b1580156115c657600080fd5b505af19250505080156115f6575060408051601f3d908101601f191682019092526115f391810190611c04565b60015b611650573d808015611624576040519150601f19603f3d011682016040523d82523d6000602084013e611629565b606091505b5080516116485760405162461bcd60e51b815260040161055a90611d56565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061166e565b5060015b949350505050565b6060600a805461046c90611e22565b6060816116a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d357806116bd81611e5d565b91506116cc9050600a83611dcb565b91506116ad565b60008167ffffffffffffffff8111156116ee576116ee611ece565b6040519080825280601f01601f191660200182016040528015611718576020820181803683370190505b5090505b841561166e5761172d600183611ddf565b915061173a600a86611e78565b611745906030611db3565b60f81b81838151811061175a5761175a611eb8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611794600a86611dcb565b945061171c565b61069283838360016000546001600160a01b0385166118065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161055a565b836118645760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161055a565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561195a5761193e6000888488611568565b61195a5760405162461bcd60e51b815260040161055a90611d56565b600191820191016118eb565b506000556112a0565b82805461197b90611e22565b90600052602060002090601f01602090048101928261199d57600085556119e3565b82601f106119b65782800160ff198235161785556119e3565b828001600101855582156119e3579182015b828111156119e35782358255916020019190600101906119c8565b50610aa99291505b80821115610aa957600081556001016119eb565b80356001600160a01b0381168114611a1657600080fd5b919050565b600060208284031215611a2d57600080fd5b610e77826119ff565b60008060408385031215611a4957600080fd5b611a52836119ff565b9150611a60602084016119ff565b90509250929050565b600080600060608486031215611a7e57600080fd5b611a87846119ff565b9250611a95602085016119ff565b9150604084013590509250925092565b60008060008060808587031215611abb57600080fd5b611ac4856119ff565b9350611ad2602086016119ff565b925060408501359150606085013567ffffffffffffffff80821115611af657600080fd5b818701915087601f830112611b0a57600080fd5b813581811115611b1c57611b1c611ece565b604051601f8201601f19908116603f01168101908382118183101715611b4457611b44611ece565b816040528281528a6020848701011115611b5d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b9457600080fd5b611b9d836119ff565b915060208301358015158114611bb257600080fd5b809150509250929050565b60008060408385031215611bd057600080fd5b611bd9836119ff565b946020939093013593505050565b600060208284031215611bf957600080fd5b8135610e7781611ee4565b600060208284031215611c1657600080fd5b8151610e7781611ee4565b60008060208385031215611c3457600080fd5b823567ffffffffffffffff80821115611c4c57600080fd5b818501915085601f830112611c6057600080fd5b813581811115611c6f57600080fd5b866020828501011115611c8157600080fd5b60209290920196919550909350505050565b600060208284031215611ca557600080fd5b5035919050565b60008151808452611cc4816020860160208601611df6565b601f01601f19169290920160200192915050565b60008351611cea818460208801611df6565b835190830190611cfe818360208801611df6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d396080830184611cac565b9695505050505050565b602081526000610e776020830184611cac565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b60008219821115611dc657611dc6611e8c565b500190565b600082611dda57611dda611ea2565b500490565b600082821015611df157611df1611e8c565b500390565b60005b83811015611e11578181015183820152602001611df9565b83811115610daa5750506000910152565b600181811c90821680611e3657607f821691505b60208210811415611e5757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7157611e71611e8c565b5060010190565b600082611e8757611e87611ea2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106e957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122043dd6f5233118c27a5d57c95d6756f42520b9e348feab558443799673348083f64736f6c63430008070033
Deployed Bytecode Sourcemap
50056:2052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36916:372;;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;36916:372:0;;;;;;;;38802:100;;;:::i;:::-;;;;;;;:::i;40364:214::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5155:55:1;;;5137:74;;5125:2;5110:18;40364:214:0;4991:226:1;39885:413:0;;;;;;:::i;:::-;;:::i;:::-;;50238:92;;;;;;:::i;:::-;;:::i;35173:100::-;35226:7;35253:12;35173:100;;;16160:25:1;;;16148:2;16133:18;35173:100:0;16014:177:1;41240:170:0;;;;;;:::i;:::-;;:::i;50720:118::-;;;;;;:::i;:::-;;:::i;35837:1007::-;;;;;;:::i;:::-;;:::i;50540:176::-;;;:::i;41481:185::-;;;;;;:::i;:::-;;:::i;35350:187::-;;;;;;:::i;:::-;;:::i;50334:96::-;;;;;;:::i;:::-;;:::i;38611:124::-;;;;;;:::i;:::-;;:::i;50158:21::-;;;:::i;37352:221::-;;;;;;:::i;:::-;;:::i;10308:103::-;;;:::i;9657:87::-;9730:6;;-1:-1:-1;;;;;9730:6:0;9657:87;;50842:129;;;;;;:::i;:::-;;:::i;:::-;;;;15856:13:1;;-1:-1:-1;;;;;15852:62:1;15834:81;;15975:4;15963:17;;;15957:24;15983:18;15953:49;15931:20;;;15924:79;;;;15807:18;50842:129:0;15624:385:1;38971:104:0;;;:::i;40650:288::-;;;;;;:::i;:::-;;:::i;41737:355::-;;;;;;:::i;:::-;;:::i;39146:335::-;;;;;;:::i;:::-;;:::i;50117:36::-;;;;;;41009:164;;;;;;:::i;:::-;-1:-1:-1;;;;;41130:25:0;;;41106:4;41130:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41009:164;10566:201;;;;;;:::i;:::-;;:::i;36916:372::-;37018:4;-1:-1:-1;;;;;;37055:40:0;;-1:-1:-1;;;37055:40:0;;:105;;-1:-1:-1;;;;;;;37112:48:0;;-1:-1:-1;;;37112:48:0;37055:105;:172;;;-1:-1:-1;;;;;;;37177:50:0;;-1:-1:-1;;;37177:50:0;37055:172;:225;;;-1:-1:-1;;;;;;;;;;26545:40:0;;;37244:36;37035:245;36916:372;-1:-1:-1;;36916:372:0:o;38802:100::-;38856:13;38889:5;38882:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38802:100;:::o;40364:214::-;40432:7;40460:16;40468:7;42404:4;42438:12;-1:-1:-1;42428:22:0;42347:111;40460:16;40452:74;;;;-1:-1:-1;;;40452:74:0;;15412:2:1;40452:74:0;;;15394:21:1;15451:2;15431:18;;;15424:30;15490:34;15470:18;;;15463:62;-1:-1:-1;;;15541:18:1;;;15534:43;15594:19;;40452:74:0;;;;;;;;;-1:-1:-1;40546:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40546:24:0;;40364:214::o;39885:413::-;39958:13;39974:24;39990:7;39974:15;:24::i;:::-;39958:40;;40023:5;-1:-1:-1;;;;;40017:11:0;:2;-1:-1:-1;;;;;40017:11:0;;;40009:58;;;;-1:-1:-1;;;40009:58:0;;12242:2:1;40009:58:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:1;;;12364:32;12413:19;;40009:58:0;12040:398:1;40009:58:0;8461:10;-1:-1:-1;;;;;40102:21:0;;;;:62;;-1:-1:-1;40127:37:0;40144:5;8461:10;41009:164;:::i;40127:37::-;40080:169;;;;-1:-1:-1;;;40080:169:0;;9093:2:1;40080:169:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;9242:27;9222:18;;;9215:55;9287:19;;40080:169:0;8891:421:1;40080:169:0;40262:28;40271:2;40275:7;40284:5;40262:8;:28::i;:::-;39947:351;39885:413;;:::o;50238:92::-;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;50298:26:::1;50308:10;50320:3;50298:9;:26::i;:::-;50238:92:::0;:::o;41240:170::-;41374:28;41384:4;41390:2;41394:7;41374:9;:28::i;50720:118::-;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;4631:1:::1;5229:7;;:19;;5221:63;;;::::0;-1:-1:-1;;;5221:63:0;;14636:2:1;5221:63:0::1;::::0;::::1;14618:21:1::0;14675:2;14655:18;;;14648:30;14714:33;14694:18;;;14687:61;14765:18;;5221:63:0::1;14434:355:1::0;5221:63:0::1;4631:1;5362:7;:18:::0;50804:28:::2;50823:8:::0;50804:18:::2;:28::i;:::-;-1:-1:-1::0;4587:1:0::1;5541:7;:22:::0;50720:118::o;35837:1007::-;35926:7;35962:16;35972:5;35962:9;:16::i;:::-;35954:5;:24;35946:71;;;;-1:-1:-1;;;35946:71:0;;6356:2:1;35946:71:0;;;6338:21:1;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;-1:-1:-1;;;6485:18:1;;;6478:32;6527:19;;35946:71:0;6154:398:1;35946:71:0;36028:22;35253:12;;;36028:22;;36291:466;36311:14;36307:1;:18;36291:466;;;36351:31;36385:14;;;:11;:14;;;;;;;;;36351:48;;;;;;;;;-1:-1:-1;;;;;36351:48:0;;;;;-1:-1:-1;;;36351:48:0;;;;;;;;;;;;36422:28;36418:111;;36495:14;;;-1:-1:-1;36418:111:0;36572:5;-1:-1:-1;;;;;36551:26:0;:17;-1:-1:-1;;;;;36551:26:0;;36547:195;;;36621:5;36606:11;:20;36602:85;;;-1:-1:-1;36662:1:0;-1:-1:-1;36655:8:0;;-1:-1:-1;;;36655:8:0;36602:85;36709:13;;;;;36547:195;-1:-1:-1;36327:3:0;;36291:466;;;-1:-1:-1;36780:56:0;;-1:-1:-1;;;36780:56:0;;14221:2:1;36780:56:0;;;14203:21:1;14260:2;14240:18;;;14233:30;14299:34;14279:18;;;14272:62;-1:-1:-1;;;14350:18:1;;;14343:44;14404:19;;36780:56:0;14019:410:1;50540:176:0;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;4631:1:::1;5229:7;;:19;;5221:63;;;::::0;-1:-1:-1;;;5221:63:0;;14636:2:1;5221:63:0::1;::::0;::::1;14618:21:1::0;14675:2;14655:18;;;14648:30;14714:33;14694:18;;;14687:61;14765:18;;5221:63:0::1;14434:355:1::0;5221:63:0::1;4631:1;5362:7;:18:::0;50618:49:::2;::::0;50600:12:::2;::::0;50618:10:::2;::::0;50641:21:::2;::::0;50600:12;50618:49;50600:12;50618:49;50641:21;50618:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50599:68;;;50682:7;50674:36;;;::::0;-1:-1:-1;;;50674:36:0;;12645:2:1;50674:36:0::2;::::0;::::2;12627:21:1::0;12684:2;12664:18;;;12657:30;-1:-1:-1;;;12703:18:1;;;12696:46;12759:18;;50674:36:0::2;12443:340:1::0;41481:185:0;41619:39;41636:4;41642:2;41646:7;41619:39;;;;;;;;;;;;:16;:39::i;35350:187::-;35417:7;35253:12;;35445:5;:21;35437:69;;;;-1:-1:-1;;;35437:69:0;;7926:2:1;35437:69:0;;;7908:21:1;7965:2;7945:18;;;7938:30;8004:34;7984:18;;;7977:62;-1:-1:-1;;;8055:18:1;;;8048:33;8098:19;;35437:69:0;7724:399:1;35437:69:0;-1:-1:-1;35524:5:0;35350:187::o;50334:96::-;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;50406:18:::1;:7;50416:8:::0;;50406:18:::1;:::i;38611:124::-:0;38675:7;38702:20;38714:7;38702:11;:20::i;:::-;:25;;38611:124;-1:-1:-1;;38611:124:0:o;50158:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37352:221::-;37416:7;-1:-1:-1;;;;;37444:19:0;;37436:75;;;;-1:-1:-1;;;37436:75:0;;9872:2:1;37436:75:0;;;9854:21:1;9911:2;9891:18;;;9884:30;9950:34;9930:18;;;9923:62;-1:-1:-1;;;10001:18:1;;;9994:41;10052:19;;37436:75:0;9670:407:1;37436:75:0;-1:-1:-1;;;;;;37537:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37537:27:0;;37352:221::o;10308:103::-;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;10373:30:::1;10400:1;10373:18;:30::i;:::-;10308:103::o:0;50842:129::-;-1:-1:-1;;;;;;;;;;;;;;;;;50945:20:0;50957:7;50945:11;:20::i;38971:104::-;39027:13;39060:7;39053:14;;;;;:::i;40650:288::-;-1:-1:-1;;;;;40745:24:0;;8461:10;40745:24;;40737:63;;;;-1:-1:-1;;;40737:63:0;;11468:2:1;40737:63:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:28;11526:18;;;11519:56;11592:18;;40737:63:0;11266:350:1;40737:63:0;8461:10;40813:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40813:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40813:53:0;;;;;;;;;;40882:48;;5878:41:1;;;40813:42:0;;8461:10;40882:48;;5851:18:1;40882:48:0;;;;;;;40650:288;;:::o;41737:355::-;41896:28;41906:4;41912:2;41916:7;41896:9;:28::i;:::-;41957:48;41980:4;41986:2;41990:7;41999:5;41957:22;:48::i;:::-;41935:149;;;;-1:-1:-1;;;41935:149:0;;;;;;;:::i;:::-;41737:355;;;;:::o;39146:335::-;39219:13;39253:16;39261:7;42404:4;42438:12;-1:-1:-1;42428:22:0;42347:111;39253:16;39245:76;;;;-1:-1:-1;;;39245:76:0;;11052:2:1;39245:76:0;;;11034:21:1;11091:2;11071:18;;;11064:30;11130:34;11110:18;;;11103:62;-1:-1:-1;;;11181:18:1;;;11174:45;11236:19;;39245:76:0;10850:411:1;39245:76:0;39334:21;39358:10;:8;:10::i;:::-;39334:34;;39392:7;39386:21;39411:1;39386:26;;:87;;;;;;;;;;;;;;;;;39439:7;39448:18;:7;:16;:18::i;:::-;39422:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39386:87;39379:94;39146:335;-1:-1:-1;;;39146:335:0:o;10566:201::-;9730:6;;-1:-1:-1;;;;;9730:6:0;8461:10;9877:23;9869:68;;;;-1:-1:-1;;;9869:68:0;;10691:2:1;9869:68:0;;;10673:21:1;;;10710:18;;;10703:30;-1:-1:-1;;;;;;;;;;;10749:18:1;;;10742:62;10821:18;;9869:68:0;10489:356:1;9869:68:0;-1:-1:-1;;;;;10655:22:0;::::1;10647:73;;;::::0;-1:-1:-1;;;10647:73:0;;6759:2:1;10647:73:0::1;::::0;::::1;6741:21:1::0;6798:2;6778:18;;;6771:30;6837:34;6817:18;;;6810:62;-1:-1:-1;;;6888:18:1;;;6881:36;6934:19;;10647:73:0::1;6557:402:1::0;10647:73:0::1;10731:28;10750:8;10731:18;:28::i;47267:196::-:0;47382:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47382:29:0;-1:-1:-1;;;;;47382:29:0;;;;;;;;;47427:28;;47382:24;;47427:28;;;;;;;47267:196;;;:::o;42466:104::-;42535:27;42545:2;42549:8;42535:27;;;;;;;;;;;;:9;:27::i;:::-;42466:104;;:::o;45147:2002::-;45262:35;45300:20;45312:7;45300:11;:20::i;:::-;45375:18;;45262:58;;-1:-1:-1;45333:22:0;;-1:-1:-1;;;;;45359:34:0;8461:10;-1:-1:-1;;;;;45359:34:0;;:87;;;-1:-1:-1;8461:10:0;45410:20;45422:7;45410:11;:20::i;:::-;-1:-1:-1;;;;;45410:36:0;;45359:87;:154;;;-1:-1:-1;45480:18:0;;45463:50;;8461:10;41009:164;:::i;45463:50::-;45333:181;;45535:17;45527:80;;;;-1:-1:-1;;;45527:80:0;;11823:2:1;45527:80:0;;;11805:21:1;11862:2;11842:18;;;11835:30;11901:34;11881:18;;;11874:62;11972:20;11952:18;;;11945:48;12010:19;;45527:80:0;11621:414:1;45527:80:0;45650:4;-1:-1:-1;;;;;45628:26:0;:13;:18;;;-1:-1:-1;;;;;45628:26:0;;45620:77;;;;-1:-1:-1;;;45620:77:0;;10284:2:1;45620:77:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:34;10342:18;;;10335:62;-1:-1:-1;;;10413:18:1;;;10406:36;10459:19;;45620:77:0;10082:402:1;45620:77:0;-1:-1:-1;;;;;45716:16:0;;45708:66;;;;-1:-1:-1;;;45708:66:0;;8330:2:1;45708:66:0;;;8312:21:1;8369:2;8349:18;;;8342:30;8408:34;8388:18;;;8381:62;-1:-1:-1;;;8459:18:1;;;8452:35;8504:19;;45708:66:0;8128:401:1;45708:66:0;45895:49;45912:1;45916:7;45925:13;:18;;;45895:8;:49::i;:::-;-1:-1:-1;;;;;46240:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46240:31:0;;;-1:-1:-1;;;;;46240:31:0;;;-1:-1:-1;;46240:31:0;;;;;;;46286:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46286:29:0;;;;;;;;;;;;;46332:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46377:61:0;;;;-1:-1:-1;;;46422:15:0;46377:61;;;;;;46712:11;;;46742:24;;;;;:29;46712:11;;46742:29;46738:295;;46810:20;46818:11;42404:4;42438:12;-1:-1:-1;42428:22:0;42347:111;46810:20;46806:212;;;46887:18;;;46855:24;;;:11;:24;;;;;;;;:50;;46970:28;;;;46928:70;;-1:-1:-1;;;46928:70:0;-1:-1:-1;;;;;;46928:70:0;;;-1:-1:-1;;;;;46855:50:0;;;46928:70;;;;;;;46806:212;46215:829;47080:7;47076:2;-1:-1:-1;;;;;47061:27:0;47070:4;-1:-1:-1;;;;;47061:27:0;;;;;;;;;;;47099:42;45251:1898;;45147:2002;;;:::o;50975:1130::-;51047:13;51039:50;;;;-1:-1:-1;;;51039:50:0;;9519:2:1;51039:50:0;;;9501:21:1;9558:2;9538:18;;;9531:30;9597:26;9577:18;;;9570:54;9641:18;;51039:50:0;9317:348:1;51039:50:0;51106:12;;51098:50;;;;-1:-1:-1;;;51098:50:0;;7577:2:1;51098:50:0;;;7559:21:1;7616:2;7596:18;;;7589:30;7655:22;7635:18;;;7628:50;7695:18;;51098:50:0;7375:344:1;51098:50:0;51193:24;;51157:33;51262:12;51234:40;;51226:81;;;;-1:-1:-1;;;51226:81:0;;8736:2:1;51226:81:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814;8794:18;;;8787:58;8862:18;;51226:81:0;8534:352:1;51226:81:0;51445:16;51597:12;51464:36;;;-1:-1:-1;;51464:40:0;;;-1:-1:-1;51578:91:0;;;-1:-1:-1;51639:12:0;;-1:-1:-1;;51639:16:0;51578:91;51700:25;51683:354;51732:8;51727:1;:13;51683:354;;51799:1;51768:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;51768:19:0;51764:260;;51824:31;51858:14;51870:1;51858:11;:14::i;:::-;51915;;;51893;;;:11;:14;;;;;;;;:36;;51982:24;;;;;51950:56;;-1:-1:-1;;;51950:56:0;-1:-1:-1;;;;;;51950:56:0;;;-1:-1:-1;;;;;51893:36:0;;;51950:56;;;;;;;-1:-1:-1;51764:260:0;51742:3;;51683:354;;;-1:-1:-1;52089:1:0;52078:12;52051:24;:39;-1:-1:-1;;50975:1130:0:o;38012:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38115:16:0;38123:7;42404:4;42438:12;-1:-1:-1;42428:22:0;42347:111;38115:16;38107:71;;;;-1:-1:-1;;;38107:71:0;;7166:2:1;38107:71:0;;;7148:21:1;7205:2;7185:18;;;7178:30;7244:34;7224:18;;;7217:62;-1:-1:-1;;;7295:18:1;;;7288:40;7345:19;;38107:71:0;6964:406:1;38107:71:0;38236:7;38216:245;38283:31;38317:17;;;:11;:17;;;;;;;;;38283:51;;;;;;;;;-1:-1:-1;;;;;38283:51:0;;;;;-1:-1:-1;;;38283:51:0;;;;;;;;;;;;38357:28;38353:93;;38417:9;38012:537;-1:-1:-1;;;38012:537:0:o;38353:93::-;-1:-1:-1;;;38256:6:0;38216:245;;10927:191;11020:6;;;-1:-1:-1;;;;;11037:17:0;;;-1:-1:-1;;;;;;11037:17:0;;;;;;;11070:40;;11020:6;;;11037:17;11020:6;;11070:40;;11001:16;;11070:40;10990:128;10927:191;:::o;48028:804::-;48183:4;-1:-1:-1;;;;;48204:13:0;;12653:19;:23;48200:625;;48240:72;;-1:-1:-1;;;48240:72:0;;-1:-1:-1;;;;;48240:36:0;;;;;:72;;8461:10;;48291:4;;48297:7;;48306:5;;48240:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48240:72:0;;;;;;;;-1:-1:-1;;48240:72:0;;;;;;;;;;;;:::i;:::-;;;48236:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48486:13:0;;48482:273;;48529:61;;-1:-1:-1;;;48529:61:0;;;;;;;:::i;48482:273::-;48705:6;48699:13;48690:6;48686:2;48682:15;48675:38;48236:534;-1:-1:-1;;;;;;48363:55:0;-1:-1:-1;;;48363:55:0;;-1:-1:-1;48356:62:0;;48200:625;-1:-1:-1;48809:4:0;48200:625;48028:804;;;;;;:::o;50434:102::-;50494:13;50523:7;50516:14;;;;;:::i;5943:723::-;5999:13;6220:10;6216:53;;-1:-1:-1;;6247:10:0;;;;;;;;;;;;-1:-1:-1;;;6247:10:0;;;;;5943:723::o;6216:53::-;6294:5;6279:12;6335:78;6342:9;;6335:78;;6368:8;;;;:::i;:::-;;-1:-1:-1;6391:10:0;;-1:-1:-1;6399:2:0;6391:10;;:::i;:::-;;;6335:78;;;6423:19;6455:6;6445:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6445:17:0;;6423:39;;6473:154;6480:10;;6473:154;;6507:11;6517:1;6507:11;;:::i;:::-;;-1:-1:-1;6576:10:0;6584:2;6576:5;:10;:::i;:::-;6563:24;;:2;:24;:::i;:::-;6550:39;;6533:6;6540;6533:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6604:11:0;6613:2;6604:11;;:::i;:::-;;;6473:154;;42933:163;43056:32;43062:2;43066:8;43076:5;43083:4;43494:20;43517:12;-1:-1:-1;;;;;43548:16:0;;43540:62;;;;-1:-1:-1;;;43540:62:0;;13410:2:1;43540:62:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;-1:-1:-1;;;13539:18:1;;;13532:31;13580:19;;43540:62:0;13208:397:1;43540:62:0;43621:13;43613:66;;;;-1:-1:-1;;;43613:66:0;;13812:2:1;43613:66:0;;;13794:21:1;13851:2;13831:18;;;13824:30;13890:34;13870:18;;;13863:62;-1:-1:-1;;;13941:18:1;;;13934:38;13989:19;;43613:66:0;13610:404:1;43613:66:0;-1:-1:-1;;;;;44031:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;44031:45:0;;-1:-1:-1;;;;;44031:45:0;;;;;;;;;;44091:50;;;;;;;;;;;;;;44158:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44208:66:0;;;;-1:-1:-1;;;44258:15:0;44208:66;;;;;;;44158:25;;44343:415;44363:8;44359:1;:12;44343:415;;;44402:38;;44427:12;;-1:-1:-1;;;;;44402:38:0;;;44419:1;;44402:38;;44419:1;;44402:38;44463:4;44459:249;;;44526:59;44557:1;44561:2;44565:12;44579:5;44526:22;:59::i;:::-;44492:196;;;;-1:-1:-1;;;44492:196:0;;;;;;;:::i;:::-;44728:14;;;;;44373:3;44343:415;;;-1:-1:-1;44774:12:0;:27;44825:60;41737:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:1;;-1:-1:-1;;;;3262:592:1:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:1;;3859:180;-1:-1:-1;3859:180:1:o;4044:257::-;4085:3;4123:5;4117:12;4150:6;4145:3;4138:19;4166:63;4222:6;4215:4;4210:3;4206:14;4199:4;4192:5;4188:16;4166:63;:::i;:::-;4283:2;4262:15;-1:-1:-1;;4258:29:1;4249:39;;;;4290:4;4245:50;;4044:257;-1:-1:-1;;4044:257:1:o;4306:470::-;4485:3;4523:6;4517:13;4539:53;4585:6;4580:3;4573:4;4565:6;4561:17;4539:53;:::i;:::-;4655:13;;4614:16;;;;4677:57;4655:13;4614:16;4711:4;4699:17;;4677:57;:::i;:::-;4750:20;;4306:470;-1:-1:-1;;;;4306:470:1:o;5222:511::-;5416:4;-1:-1:-1;;;;;5526:2:1;5518:6;5514:15;5503:9;5496:34;5578:2;5570:6;5566:15;5561:2;5550:9;5546:18;5539:43;;5618:6;5613:2;5602:9;5598:18;5591:34;5661:3;5656:2;5645:9;5641:18;5634:31;5682:45;5722:3;5711:9;5707:19;5699:6;5682:45;:::i;:::-;5674:53;5222:511;-1:-1:-1;;;;;;5222:511:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;12788:415::-;12990:2;12972:21;;;13029:2;13009:18;;;13002:30;13068:34;13063:2;13048:18;;13041:62;13139:21;13134:2;13119:18;;13112:49;13193:3;13178:19;;12788:415::o;16196:128::-;16236:3;16267:1;16263:6;16260:1;16257:13;16254:39;;;16273:18;;:::i;:::-;-1:-1:-1;16309:9:1;;16196:128::o;16329:120::-;16369:1;16395;16385:35;;16400:18;;:::i;:::-;-1:-1:-1;16434:9:1;;16329:120::o;16454:125::-;16494:4;16522:1;16519;16516:8;16513:34;;;16527:18;;:::i;:::-;-1:-1:-1;16564:9:1;;16454:125::o;16584:258::-;16656:1;16666:113;16680:6;16677:1;16674:13;16666:113;;;16756:11;;;16750:18;16737:11;;;16730:39;16702:2;16695:10;16666:113;;;16797:6;16794:1;16791:13;16788:48;;;-1:-1:-1;;16832:1:1;16814:16;;16807:27;16584:258::o;16847:380::-;16926:1;16922:12;;;;16969;;;16990:61;;17044:4;17036:6;17032:17;17022:27;;16990:61;17097:2;17089:6;17086:14;17066:18;17063:38;17060:161;;;17143:10;17138:3;17134:20;17131:1;17124:31;17178:4;17175:1;17168:15;17206:4;17203:1;17196:15;17060:161;;16847:380;;;:::o;17232:135::-;17271:3;-1:-1:-1;;17292:17:1;;17289:43;;;17312:18;;:::i;:::-;-1:-1:-1;17359:1:1;17348:13;;17232:135::o;17372:112::-;17404:1;17430;17420:35;;17435:18;;:::i;:::-;-1:-1:-1;17469:9:1;;17372:112::o;17489:127::-;17550:10;17545:3;17541:20;17538:1;17531:31;17581:4;17578:1;17571:15;17605:4;17602:1;17595:15;17621:127;17682:10;17677:3;17673:20;17670:1;17663:31;17713:4;17710:1;17703:15;17737:4;17734:1;17727:15;17753:127;17814:10;17809:3;17805:20;17802:1;17795:31;17845:4;17842:1;17835:15;17869:4;17866:1;17859:15;17885:127;17946:10;17941:3;17937:20;17934:1;17927:31;17977:4;17974:1;17967:15;18001:4;17998:1;17991:15;18017:131;-1:-1:-1;;;;;;18091:32:1;;18081:43;;18071:71;;18138:1;18135;18128:12
Swarm Source
ipfs://43dd6f5233118c27a5d57c95d6756f42520b9e348feab558443799673348083f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.