Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Paused | 10434687 | 27 hrs ago | IN | 0 S | 0.00257757 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
VeSixAirdrop
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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); } pragma solidity ^0.8.20; /** * @dev Required interface of an ERC-721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC-721 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } pragma solidity ^0.8.20; /** * @title IERC1363 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. * * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction. */ interface IERC1363 is IERC20, IERC165 { /* * Note: the ERC-165 identifier for this interface is 0xb0202a11. * 0xb0202a11 === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^ * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @param data Additional data with no specified format, sent in call to `spender`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool); } pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); } pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert Errors.FailedCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // 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 ("memory-safe") { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert Errors.FailedCall(); } } } pragma solidity ^0.8.20; /** * @title SafeERC20 * @dev Wrappers around ERC-20 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 { /** * @dev An operation with an ERC-20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. * * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client" * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. * * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client" * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. * * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being * set here. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { safeTransfer(token, to, value); } else if (!token.transferAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferFromAndCallRelaxed( IERC1363 token, address from, address to, uint256 value, bytes memory data ) internal { if (to.code.length == 0) { safeTransferFrom(token, from, to, value); } else if (!token.transferFromAndCall(from, to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}. * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall} * once without retrying, and relies on the returned value to be true. * * Reverts if the returned value is other than `true`. */ function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { forceApprove(token, to, value); } else if (!token.approveAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements. */ function _callOptionalReturn(IERC20 token, bytes memory data) private { uint256 returnSize; uint256 returnValue; assembly ("memory-safe") { let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20) // bubble errors if iszero(success) { let ptr := mload(0x40) returndatacopy(ptr, 0, returndatasize()) revert(ptr, returndatasize()) } returnSize := returndatasize() returnValue := mload(0) } if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { bool success; uint256 returnSize; uint256 returnValue; assembly ("memory-safe") { success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20) returnSize := returndatasize() returnValue := mload(0) } return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1); } } 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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } pragma solidity 0.8.27; interface IVeSix { struct Point { int128 bias; int128 slope; uint256 ts; uint256 blk; } function getFarmingPower(uint256 tokenId, uint32 timestamp) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); function isApprovedOrOwner(address spender, uint256 tokenId) external view returns (bool); function lockedToken() external view returns (address); function increaseLockAmount(uint256 tokenId, uint128 additionalAmount, uint256 deadline, uint128 minMultiplier) external; function getCurrentMultiplier(uint256 tokenId) external view returns (uint128); function deposit_for(uint256 tokenId, uint256 value) external; function point_history(uint256 epoch) external view returns (Point memory); function user_point_history(uint256 tokenId, uint256 loc) external view returns (Point memory); function epoch() external view returns (uint256); function user_point_epoch(uint256 tokenId) external view returns (uint256); function checkpoint() external; function tokenEpoch(uint256 tokenId) external view returns (uint256); function totalWeightedSupply() external view returns (uint128); function createLock(uint128 amount,uint32 lockDuration,uint256 deadline,uint128 minMultiplier) external returns (uint256 tokenId); function getExpectedMultiplier(uint128 amount, uint32 duration) external pure returns (uint128); } pragma solidity 0.8.27; contract VeSixAirdrop is Ownable, ReentrancyGuard { using SafeERC20 for IERC20; // Events event AirdropClaimed(address indexed user, uint256 amount, uint256 tokenId); event AllocationSet(address indexed user, uint256 amount); event UnclaimedTokensRecovered(uint256 amount); event EmergencyModeEnabled(); event PausedStateChanged(bool isPaused); // Constants from veSix contract uint32 private constant MAX_LOCK_DURATION = 180 days; uint128 private constant BASE_MULTIPLIER = 1e18; uint256 private constant MAX_BATCH_SIZE = 200; uint128 private constant MAX_MULTIPLIER = 4e18; // From veSix uint128 private constant PRECISION = 1e18; // State variables IERC20 public immutable fSIX; IVeSix public immutable veSix; IERC721 public immutable veSixNFT; mapping(address => uint256) public allocations; mapping(address => bool) public hasClaimed; bool public isPaused; bool private _emergencyMode; uint256 private _totalAllocations; // Errors error AlreadyClaimed(); error NoAllocation(); error InsufficientBalance(); error InvalidAddress(); error TransferFailed(); error LockFailed(); error InvalidAmount(); error BatchTooLarge(); error InsufficientContractBalance(); error MaxMultiplierExceeded(); error OnlyInEmergencyMode(); error Paused(); error DeadlineExpired(); modifier whenNotPaused() { if (isPaused) revert Paused(); _; } modifier validDeadline(uint256 deadline) { if (block.timestamp > deadline) revert DeadlineExpired(); _; } constructor(address _fSIX, address _veSix) Ownable(msg.sender) { if (_fSIX == address(0) || _veSix == address(0)) revert InvalidAddress(); fSIX = IERC20(_fSIX); veSix = IVeSix(_veSix); veSixNFT = IERC721(_veSix); } /** * @notice Set allocations for users * @param users Array of user addresses * @param amounts Array of allocation amounts */ function setAllocations( address[] calldata users, uint256[] calldata amounts ) external onlyOwner { if (users.length != amounts.length) revert InvalidAmount(); if (users.length > MAX_BATCH_SIZE) revert BatchTooLarge(); for (uint256 i = 0; i < users.length; i++) { if (users[i] == address(0)) revert InvalidAddress(); // Update total allocations if (allocations[users[i]] > 0) { _totalAllocations -= allocations[users[i]]; } allocations[users[i]] = amounts[i]; _totalAllocations += amounts[i]; emit AllocationSet(users[i], amounts[i]); } } /** * @notice Allows eligible users to claim their airdrop and automatically lock it for max duration * @param minMultiplier Minimum acceptable multiplier for the lock (slippage protection) * @param deadline Timestamp after which the transaction will revert */ function claim( uint128 minMultiplier, uint256 deadline ) external nonReentrant whenNotPaused validDeadline(deadline) returns (uint256 tokenId) { if (minMultiplier > MAX_MULTIPLIER) revert MaxMultiplierExceeded(); // Check eligibility if (hasClaimed[msg.sender]) revert AlreadyClaimed(); uint256 amount = allocations[msg.sender]; if (amount == 0) revert NoAllocation(); // Verify contract has enough tokens if (fSIX.balanceOf(address(this)) < amount) revert InsufficientContractBalance(); // Mark as claimed first to prevent reentrancy hasClaimed[msg.sender] = true; _totalAllocations -= amount; // First transfer tokens to veSix contract fSIX.safeTransfer(address(veSix), amount); // Create locked position with maximum duration try veSix.createLock( uint128(amount), // Cast to uint128 as required by veSix MAX_LOCK_DURATION, deadline, minMultiplier ) returns (uint256 _tokenId) { tokenId = _tokenId; } catch { revert LockFailed(); } // Make sure NFT was minted correctly require(veSixNFT.ownerOf(tokenId) == address(this), "NFT not minted to this contract"); // Transfer NFT to claimer veSixNFT.safeTransferFrom(address(this), msg.sender, tokenId); emit AirdropClaimed(msg.sender, amount, tokenId); return tokenId; } /** * @notice Allows owner to recover unclaimed tokens after airdrop period */ function recoverUnclaimedTokens() external onlyOwner { uint256 balance = fSIX.balanceOf(address(this)); if (balance == 0) revert InsufficientBalance(); fSIX.safeTransfer(owner(), balance); emit UnclaimedTokensRecovered(balance); } /** * @notice View function to check if an address is eligible for the airdrop * @param user Address to check */ function isEligible(address user) public view returns (bool) { return !hasClaimed[user] && allocations[user] > 0; } /** * @notice View function to get user's allocation * @param user Address to check */ function getAllocation(address user) external view returns (uint256) { return allocations[user]; } /** * @notice View function to check if contract has sufficient funds for all allocations */ function verifyContractBalance() public view returns (bool) { uint256 contractBalance = fSIX.balanceOf(address(this)); return contractBalance >= _totalAllocations; } /** * @notice View function to get total allocations */ function getTotalAllocations() public view returns (uint256) { return _totalAllocations; } /** * @notice Enable emergency mode which pauses all operations */ function enableEmergencyMode() external onlyOwner { _emergencyMode = true; isPaused = true; emit EmergencyModeEnabled(); } /** * @notice Set paused state * @param _isPaused New paused state */ function setPaused(bool _isPaused) external onlyOwner { isPaused = _isPaused; emit PausedStateChanged(_isPaused); } /** * @notice Check if emergency mode is active */ function isEmergencyMode() external view returns (bool) { return _emergencyMode; } /** * @notice Get the expected multiplier for a given lock * @param amount Token amount * @param duration Lock duration */ function getExpectedMultiplier(uint128 amount, uint32 duration) external view returns (uint128) { return veSix.getExpectedMultiplier(amount, duration); } /** * @notice Get the recommended minimum multiplier accounting for potential block drift * @param amount Token amount */ function getRecommendedMinMultiplier(uint128 amount) external view returns (uint128) { // Account for potential block drift by using a slightly lower duration uint32 driftAdjustedDuration = MAX_LOCK_DURATION > 15 ? MAX_LOCK_DURATION - 15 : MAX_LOCK_DURATION; return veSix.getExpectedMultiplier(amount, driftAdjustedDuration); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_fSIX","type":"address"},{"internalType":"address","name":"_veSix","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"BatchTooLarge","type":"error"},{"inputs":[],"name":"DeadlineExpired","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InsufficientContractBalance","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"LockFailed","type":"error"},{"inputs":[],"name":"MaxMultiplierExceeded","type":"error"},{"inputs":[],"name":"NoAllocation","type":"error"},{"inputs":[],"name":"OnlyInEmergencyMode","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Paused","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AirdropClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AllocationSet","type":"event"},{"anonymous":false,"inputs":[],"name":"EmergencyModeEnabled","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":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PausedStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnclaimedTokensRecovered","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"minMultiplier","type":"uint128"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"claim","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEmergencyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fSIX","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint32","name":"duration","type":"uint32"}],"name":"getExpectedMultiplier","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"getRecommendedMinMultiplier","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEmergencyMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverUnclaimedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"setAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"veSix","outputs":[{"internalType":"contract IVeSix","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"veSixNFT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"verifyContractBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e060405234801561000f575f5ffd5b5060405161142138038061142183398101604081905261002e91610122565b338061005357604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b61005c816100b8565b50600180556001600160a01b038216158061007e57506001600160a01b038116155b1561009c5760405163e6c4247b60e01b815260040160405180910390fd5b6001600160a01b039182166080521660a081905260c052610153565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461011d575f5ffd5b919050565b5f5f60408385031215610133575f5ffd5b61013c83610107565b915061014a60208401610107565b90509250929050565b60805160a05160c0516112576101ca5f395f818161028c015281816109400152610a2601525f8181610255015281816108390152818161089401528181610cc40152610da901525f8181610306015281816107490152818161081701528181610aec01528181610b7f0152610c3001526112575ff3fe608060405234801561000f575f5ffd5b5060043610610132575f3560e01c80638da5cb5b116100b4578063b187bd2611610079578063b187bd26146102ae578063bb65c1f7146102bb578063c5b1c7d0146102e6578063d89dd269146102ee578063d933bb1c14610301578063f2fde38b14610328575f5ffd5b80638da5cb5b1461022c57806392815606146102505780639e6fd044146102775780639f56f8dc1461027f578063a191fae014610287575f5ffd5b8063559eeb8e116100fa578063559eeb8e146101d457806366e305fd146101dc578063715018a6146101ef57806373b2e80e146101f757806373ce697814610219575f5ffd5b80630e0229231461013657806316c38b3c146101715780631ff64acd1461018657806320a194b81461019957806352a9039c146101b5575b5f5ffd5b61015e610144366004610fe4565b6001600160a01b03165f9081526002602052604090205490565b6040519081526020015b60405180910390f35b61018461017f366004610fff565b61033b565b005b610184610194366004611066565b61038b565b600454610100900460ff165b6040519015158152602001610168565b61015e6101c3366004610fe4565b60026020525f908152604090205481565b60055461015e565b6101a56101ea366004610fe4565b6105fa565b61018461063e565b6101a5610205366004610fe4565b60036020525f908152604090205460ff1681565b61015e6102273660046110e6565b610651565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610168565b6102387f000000000000000000000000000000000000000000000000000000000000000081565b6101a5610acb565b610184610b60565b6102387f000000000000000000000000000000000000000000000000000000000000000081565b6004546101a59060ff1681565b6102ce6102c9366004611110565b610c87565b6040516001600160801b039091168152602001610168565b610184610d3c565b6102ce6102fc36600461112b565b610d7d565b6102387f000000000000000000000000000000000000000000000000000000000000000081565b610184610336366004610fe4565b610df6565b610343610e33565b6004805460ff19168215159081179091556040519081527f9e3a5e37224532dea67b89face185703738a228a6e8a23dee546960180d3be64906020015b60405180910390a150565b610393610e33565b8281146103b35760405163162908e360e11b815260040160405180910390fd5b60c88311156103d5576040516305beb17160e11b815260040160405180910390fd5b5f5b838110156105f3575f8585838181106103f2576103f261116a565b90506020020160208101906104079190610fe4565b6001600160a01b03160361042e5760405163e6c4247b60e01b815260040160405180910390fd5b5f60025f8787858181106104445761044461116a565b90506020020160208101906104599190610fe4565b6001600160a01b03166001600160a01b031681526020019081526020015f205411156104df5760025f8686848181106104945761049461116a565b90506020020160208101906104a99190610fe4565b6001600160a01b03166001600160a01b031681526020019081526020015f205460055f8282546104d99190611192565b90915550505b8282828181106104f1576104f161116a565b9050602002013560025f87878581811061050d5761050d61116a565b90506020020160208101906105229190610fe4565b6001600160a01b0316815260208101919091526040015f205582828281811061054d5761054d61116a565b9050602002013560055f82825461056491906111a5565b90915550859050848281811061057c5761057c61116a565b90506020020160208101906105919190610fe4565b6001600160a01b03167fedfc909d0ab2a1625b7911d925efbd8200cdd99d4c7ba44e720328b17879f0b38484848181106105cd576105cd61116a565b905060200201356040516105e391815260200190565b60405180910390a26001016103d7565b5050505050565b6001600160a01b0381165f9081526003602052604081205460ff1615801561063857506001600160a01b0382165f9081526002602052604090205415155b92915050565b610646610e33565b61064f5f610e5f565b565b5f61065a610eae565b60045460ff161561067e576040516313d0ff5960e31b815260040160405180910390fd5b81804211156106a057604051631ab7da6b60e01b815260040160405180910390fd5b673782dace9d9000006001600160801b03851611156106d257604051633178e89d60e21b815260040160405180910390fd5b335f9081526003602052604090205460ff161561070257604051630c8d9eab60e31b815260040160405180910390fd5b335f908152600260205260408120549081900361073257604051632fc532ad60e11b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610796573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ba91906111b8565b10156107d95760405163786e0a9960e01b815260040160405180910390fd5b335f908152600360205260408120805460ff1916600117905560058054839290610804908490611192565b9091555061085e90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083610f07565b60405163df21515760e01b81526001600160801b03808316600483015262ed4e00602483015260448201869052861660648201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df215157906084016020604051808303815f875af1925050508015610900575060408051601f3d908101601f191682019092526108fd918101906111b8565b60015b61091d57604051630292de3960e61b815260040160405180910390fd5b6040516331a9108f60e11b81526004810182905290935030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015610985573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a991906111cf565b6001600160a01b031614610a045760405162461bcd60e51b815260206004820152601f60248201527f4e4654206e6f74206d696e74656420746f207468697320636f6e74726163740060448201526064015b60405180910390fd5b604051632142170760e11b8152306004820152336024820152604481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906342842e0e906064015f604051808303815f87803b158015610a6f575f5ffd5b505af1158015610a81573d5f5f3e3d5ffd5b505060408051848152602081018790523393507fd0755a9ef5a74f50d34b3503bb5b65ad71a112c001b76dfa6412c9aa4a1f43b092500160405180910390a2505061063860018055565b6040516370a0823160e01b81523060048201525f9081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610b31573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5591906111b8565b600554111592915050565b610b68610e33565b6040516370a0823160e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf091906111b8565b9050805f03610c1257604051631e9acf1760e31b815260040160405180910390fd5b610c57610c265f546001600160a01b031690565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083610f07565b6040518181527f425421240fa1fa0c9f4157a173a42f650a821eca2c6420903baa8ce31b9a309390602001610380565b5f80610c97600f62ed4e006111ea565b60405163d89dd26960e01b81526001600160801b038516600482015263ffffffff821660248201529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d89dd26990604401602060405180830381865afa158015610d11573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d359190611206565b9392505050565b610d44610e33565b6004805461ffff19166101011790556040517f2064d51aa5a8bd67928c7675e267e05c67ad5adf7c9098d0a602d01f36fda9c5905f90a1565b60405163d89dd26960e01b81526001600160801b038316600482015263ffffffff821660248201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d89dd26990604401602060405180830381865afa158015610d11573d5f5f3e3d5ffd5b610dfe610e33565b6001600160a01b038116610e2757604051631e4fbdf760e01b81525f60048201526024016109fb565b610e3081610e5f565b50565b5f546001600160a01b0316331461064f5760405163118cdaa760e01b81523360048201526024016109fb565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600260015403610f005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109fb565b6002600155565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f59908490610f5e565b505050565b5f5f60205f8451602086015f885af180610f7d576040513d5f823e3d81fd5b50505f513d91508115610f94578060011415610fa1565b6001600160a01b0384163b155b15610fca57604051635274afe760e01b81526001600160a01b03851660048201526024016109fb565b50505050565b6001600160a01b0381168114610e30575f5ffd5b5f60208284031215610ff4575f5ffd5b8135610d3581610fd0565b5f6020828403121561100f575f5ffd5b81358015158114610d35575f5ffd5b5f5f83601f84011261102e575f5ffd5b50813567ffffffffffffffff811115611045575f5ffd5b6020830191508360208260051b850101111561105f575f5ffd5b9250929050565b5f5f5f5f60408587031215611079575f5ffd5b843567ffffffffffffffff81111561108f575f5ffd5b61109b8782880161101e565b909550935050602085013567ffffffffffffffff8111156110ba575f5ffd5b6110c68782880161101e565b95989497509550505050565b6001600160801b0381168114610e30575f5ffd5b5f5f604083850312156110f7575f5ffd5b8235611102816110d2565b946020939093013593505050565b5f60208284031215611120575f5ffd5b8135610d35816110d2565b5f5f6040838503121561113c575f5ffd5b8235611147816110d2565b9150602083013563ffffffff8116811461115f575f5ffd5b809150509250929050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b818103818111156106385761063861117e565b808201808211156106385761063861117e565b5f602082840312156111c8575f5ffd5b5051919050565b5f602082840312156111df575f5ffd5b8151610d3581610fd0565b63ffffffff82811682821603908111156106385761063861117e565b5f60208284031215611216575f5ffd5b8151610d35816110d256fea26469706673582212205b0d58b0dcdd615236205b5a89f972511e0b4198a2cb9f0948b0e04ef67145b264736f6c634300081b003300000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a60000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b9
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610132575f3560e01c80638da5cb5b116100b4578063b187bd2611610079578063b187bd26146102ae578063bb65c1f7146102bb578063c5b1c7d0146102e6578063d89dd269146102ee578063d933bb1c14610301578063f2fde38b14610328575f5ffd5b80638da5cb5b1461022c57806392815606146102505780639e6fd044146102775780639f56f8dc1461027f578063a191fae014610287575f5ffd5b8063559eeb8e116100fa578063559eeb8e146101d457806366e305fd146101dc578063715018a6146101ef57806373b2e80e146101f757806373ce697814610219575f5ffd5b80630e0229231461013657806316c38b3c146101715780631ff64acd1461018657806320a194b81461019957806352a9039c146101b5575b5f5ffd5b61015e610144366004610fe4565b6001600160a01b03165f9081526002602052604090205490565b6040519081526020015b60405180910390f35b61018461017f366004610fff565b61033b565b005b610184610194366004611066565b61038b565b600454610100900460ff165b6040519015158152602001610168565b61015e6101c3366004610fe4565b60026020525f908152604090205481565b60055461015e565b6101a56101ea366004610fe4565b6105fa565b61018461063e565b6101a5610205366004610fe4565b60036020525f908152604090205460ff1681565b61015e6102273660046110e6565b610651565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610168565b6102387f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b981565b6101a5610acb565b610184610b60565b6102387f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b981565b6004546101a59060ff1681565b6102ce6102c9366004611110565b610c87565b6040516001600160801b039091168152602001610168565b610184610d3c565b6102ce6102fc36600461112b565b610d7d565b6102387f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a681565b610184610336366004610fe4565b610df6565b610343610e33565b6004805460ff19168215159081179091556040519081527f9e3a5e37224532dea67b89face185703738a228a6e8a23dee546960180d3be64906020015b60405180910390a150565b610393610e33565b8281146103b35760405163162908e360e11b815260040160405180910390fd5b60c88311156103d5576040516305beb17160e11b815260040160405180910390fd5b5f5b838110156105f3575f8585838181106103f2576103f261116a565b90506020020160208101906104079190610fe4565b6001600160a01b03160361042e5760405163e6c4247b60e01b815260040160405180910390fd5b5f60025f8787858181106104445761044461116a565b90506020020160208101906104599190610fe4565b6001600160a01b03166001600160a01b031681526020019081526020015f205411156104df5760025f8686848181106104945761049461116a565b90506020020160208101906104a99190610fe4565b6001600160a01b03166001600160a01b031681526020019081526020015f205460055f8282546104d99190611192565b90915550505b8282828181106104f1576104f161116a565b9050602002013560025f87878581811061050d5761050d61116a565b90506020020160208101906105229190610fe4565b6001600160a01b0316815260208101919091526040015f205582828281811061054d5761054d61116a565b9050602002013560055f82825461056491906111a5565b90915550859050848281811061057c5761057c61116a565b90506020020160208101906105919190610fe4565b6001600160a01b03167fedfc909d0ab2a1625b7911d925efbd8200cdd99d4c7ba44e720328b17879f0b38484848181106105cd576105cd61116a565b905060200201356040516105e391815260200190565b60405180910390a26001016103d7565b5050505050565b6001600160a01b0381165f9081526003602052604081205460ff1615801561063857506001600160a01b0382165f9081526002602052604090205415155b92915050565b610646610e33565b61064f5f610e5f565b565b5f61065a610eae565b60045460ff161561067e576040516313d0ff5960e31b815260040160405180910390fd5b81804211156106a057604051631ab7da6b60e01b815260040160405180910390fd5b673782dace9d9000006001600160801b03851611156106d257604051633178e89d60e21b815260040160405180910390fd5b335f9081526003602052604090205460ff161561070257604051630c8d9eab60e31b815260040160405180910390fd5b335f908152600260205260408120549081900361073257604051632fc532ad60e11b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281907f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a66001600160a01b0316906370a0823190602401602060405180830381865afa158015610796573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ba91906111b8565b10156107d95760405163786e0a9960e01b815260040160405180910390fd5b335f908152600360205260408120805460ff1916600117905560058054839290610804908490611192565b9091555061085e90506001600160a01b037f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a6167f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b983610f07565b60405163df21515760e01b81526001600160801b03808316600483015262ed4e00602483015260448201869052861660648201527f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b96001600160a01b03169063df215157906084016020604051808303815f875af1925050508015610900575060408051601f3d908101601f191682019092526108fd918101906111b8565b60015b61091d57604051630292de3960e61b815260040160405180910390fd5b6040516331a9108f60e11b81526004810182905290935030906001600160a01b037f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b91690636352211e90602401602060405180830381865afa158015610985573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a991906111cf565b6001600160a01b031614610a045760405162461bcd60e51b815260206004820152601f60248201527f4e4654206e6f74206d696e74656420746f207468697320636f6e74726163740060448201526064015b60405180910390fd5b604051632142170760e11b8152306004820152336024820152604481018490527f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b96001600160a01b0316906342842e0e906064015f604051808303815f87803b158015610a6f575f5ffd5b505af1158015610a81573d5f5f3e3d5ffd5b505060408051848152602081018790523393507fd0755a9ef5a74f50d34b3503bb5b65ad71a112c001b76dfa6412c9aa4a1f43b092500160405180910390a2505061063860018055565b6040516370a0823160e01b81523060048201525f9081906001600160a01b037f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a616906370a0823190602401602060405180830381865afa158015610b31573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5591906111b8565b600554111592915050565b610b68610e33565b6040516370a0823160e01b81523060048201525f907f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a66001600160a01b0316906370a0823190602401602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf091906111b8565b9050805f03610c1257604051631e9acf1760e31b815260040160405180910390fd5b610c57610c265f546001600160a01b031690565b6001600160a01b037f00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a6169083610f07565b6040518181527f425421240fa1fa0c9f4157a173a42f650a821eca2c6420903baa8ce31b9a309390602001610380565b5f80610c97600f62ed4e006111ea565b60405163d89dd26960e01b81526001600160801b038516600482015263ffffffff821660248201529091507f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b96001600160a01b03169063d89dd26990604401602060405180830381865afa158015610d11573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d359190611206565b9392505050565b610d44610e33565b6004805461ffff19166101011790556040517f2064d51aa5a8bd67928c7675e267e05c67ad5adf7c9098d0a602d01f36fda9c5905f90a1565b60405163d89dd26960e01b81526001600160801b038316600482015263ffffffff821660248201525f907f0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b96001600160a01b03169063d89dd26990604401602060405180830381865afa158015610d11573d5f5f3e3d5ffd5b610dfe610e33565b6001600160a01b038116610e2757604051631e4fbdf760e01b81525f60048201526024016109fb565b610e3081610e5f565b50565b5f546001600160a01b0316331461064f5760405163118cdaa760e01b81523360048201526024016109fb565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600260015403610f005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109fb565b6002600155565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f59908490610f5e565b505050565b5f5f60205f8451602086015f885af180610f7d576040513d5f823e3d81fd5b50505f513d91508115610f94578060011415610fa1565b6001600160a01b0384163b155b15610fca57604051635274afe760e01b81526001600160a01b03851660048201526024016109fb565b50505050565b6001600160a01b0381168114610e30575f5ffd5b5f60208284031215610ff4575f5ffd5b8135610d3581610fd0565b5f6020828403121561100f575f5ffd5b81358015158114610d35575f5ffd5b5f5f83601f84011261102e575f5ffd5b50813567ffffffffffffffff811115611045575f5ffd5b6020830191508360208260051b850101111561105f575f5ffd5b9250929050565b5f5f5f5f60408587031215611079575f5ffd5b843567ffffffffffffffff81111561108f575f5ffd5b61109b8782880161101e565b909550935050602085013567ffffffffffffffff8111156110ba575f5ffd5b6110c68782880161101e565b95989497509550505050565b6001600160801b0381168114610e30575f5ffd5b5f5f604083850312156110f7575f5ffd5b8235611102816110d2565b946020939093013593505050565b5f60208284031215611120575f5ffd5b8135610d35816110d2565b5f5f6040838503121561113c575f5ffd5b8235611147816110d2565b9150602083013563ffffffff8116811461115f575f5ffd5b809150509250929050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b818103818111156106385761063861117e565b808201808211156106385761063861117e565b5f602082840312156111c8575f5ffd5b5051919050565b5f602082840312156111df575f5ffd5b8151610d3581610fd0565b63ffffffff82811682821603908111156106385761063861117e565b5f60208284031215611216575f5ffd5b8151610d35816110d256fea26469706673582212205b0d58b0dcdd615236205b5a89f972511e0b4198a2cb9f0948b0e04ef67145b264736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a60000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b9
-----Decoded View---------------
Arg [0] : _fSIX (address): 0x94B999e05D1361A802aD6690c1b1aE3426A4e1a6
Arg [1] : _veSix (address): 0x5663414dae619434555557aEAC0B74a2Ad8c46B9
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000094b999e05d1361a802ad6690c1b1ae3426a4e1a6
Arg [1] : 0000000000000000000000005663414dae619434555557aeac0b74a2ad8c46b9
Deployed Bytecode Sourcemap
37708:7646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43252:112;;;;;;:::i;:::-;-1:-1:-1;;;;;43339:17:0;43312:7;43339:17;;;:11;:17;;;;;;;43252:112;;;;548:25:1;;;536:2;521:18;43252:112:0;;;;;;;;44202:138;;;;;;:::i;:::-;;:::i;:::-;;39830:763;;;;;;:::i;:::-;;:::i;44416:96::-;44490:14;;;;;;;44416:96;;;2172:14:1;;2165:22;2147:41;;2135:2;2120:18;44416:96:0;2007:187:1;38558:46:0;;;;;;:::i;:::-;;;;;;;;;;;;;;43751:104;43830:17;;43751:104;;43005:129;;;;;;:::i;:::-;;:::i;35295:103::-;;;:::i;38611:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;40891:1575;;;;;;:::i;:::-;;:::i;34620:87::-;34666:7;34693:6;-1:-1:-1;;;;;34693:6:0;34620:87;;;-1:-1:-1;;;;;2834:32:1;;;2816:51;;2804:2;2789:18;34620:87:0;2670:203:1;38476:29:0;;;;;43482:188;;;:::i;42570:291::-;;;:::i;38512:33::-;;;;;38660:20;;;;;;;;;44992:359;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3740:47:1;;;3722:66;;3710:2;3695:18;44992:359:0;3576:218:1;43947:154:0;;;:::i;44672:167::-;;;;;;:::i;:::-;;:::i;38441:28::-;;;;;35553:220;;;;;;:::i;:::-;;:::i;44202:138::-;34506:13;:11;:13::i;:::-;44267:8:::1;:20:::0;;-1:-1:-1;;44267:20:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44303:29:::1;::::0;2147:41:1;;;44303:29:0::1;::::0;2135:2:1;2120:18;44303:29:0::1;;;;;;;;44202:138:::0;:::o;39830:763::-;34506:13;:11;:13::i;:::-;39967:30;;::::1;39963:58;;40006:15;;-1:-1:-1::0;;;40006:15:0::1;;;;;;;;;;;39963:58;38290:3;40036:29:::0;::::1;40032:57;;;40074:15;;-1:-1:-1::0;;;40074:15:0::1;;;;;;;;;;;40032:57;40115:9;40110:476;40130:16:::0;;::::1;40110:476;;;40192:1;40172:5:::0;;40178:1;40172:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40172:22:0::1;::::0;40168:51:::1;;40203:16;;-1:-1:-1::0;;;40203:16:0::1;;;;;;;;;;;40168:51;40317:1;40293:11;:21;40305:5;;40311:1;40305:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40293:21:0::1;-1:-1:-1::0;;;;;40293:21:0::1;;;;;;;;;;;;;:25;40289:108;;;40360:11;:21;40372:5;;40378:1;40372:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40360:21:0::1;-1:-1:-1::0;;;;;40360:21:0::1;;;;;;;;;;;;;40339:17;;:42;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;40289:108:0::1;40449:7;;40457:1;40449:10;;;;;;;:::i;:::-;;;;;;;40425:11;:21;40437:5;;40443:1;40437:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40425:21:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40425:21:0;:34;40495:7;;40503:1;40495:10;;::::1;;;;;:::i;:::-;;;;;;;40474:17;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;40553:5:0;;-1:-1:-1;40553:5:0;40559:1;40553:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40539:35:0::1;;40563:7;;40571:1;40563:10;;;;;;;:::i;:::-;;;;;;;40539:35;;;;548:25:1::0;;536:2;521:18;;402:177;40539:35:0::1;;;;;;;;40148:3;;40110:476;;;;39830:763:::0;;;;:::o;43005:129::-;-1:-1:-1;;;;;43085:16:0;;43060:4;43085:16;;;:10;:16;;;;;;;;43084:17;:42;;;;-1:-1:-1;;;;;;43105:17:0;;43125:1;43105:17;;;:11;:17;;;;;;:21;;43084:42;43077:49;43005:129;-1:-1:-1;;43005:129:0:o;35295:103::-;34506:13;:11;:13::i;:::-;35360:30:::1;35387:1;35360:18;:30::i;:::-;35295:103::o:0;40891:1575::-;41042:15;31287:21;:19;:21::i;:::-;39212:8:::1;::::0;::::1;;39208:29;;;39229:8;;-1:-1:-1::0;;;39229:8:0::1;;;;;;;;;;;39208:29;41023:8:::2;39339;39321:15;:26;39317:56;;;39356:17;;-1:-1:-1::0;;;39356:17:0::2;;;;;;;;;;;39317:56;38342:4:::3;-1:-1:-1::0;;;;;41074:30:0;::::3;;41070:66;;;41113:23;;-1:-1:-1::0;;;41113:23:0::3;;;;;;;;;;;41070:66;41202:10;41191:22;::::0;;;:10:::3;:22;::::0;;;;;::::3;;41187:51;;;41222:16;;-1:-1:-1::0;;;41222:16:0::3;;;;;;;;;;;41187:51;41288:10;41259:14;41276:23:::0;;;:11:::3;:23;::::0;;;;;;41314:11;;;41310:38:::3;;41334:14;;-1:-1:-1::0;;;41334:14:0::3;;;;;;;;;;;41310:38;41411:29;::::0;-1:-1:-1;;;41411:29:0;;41434:4:::3;41411:29;::::0;::::3;2816:51:1::0;41443:6:0;;41411:4:::3;-1:-1:-1::0;;;;;41411:14:0::3;::::0;::::3;::::0;2789:18:1;;41411:29:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;41407:80;;;41458:29;;-1:-1:-1::0;;;41458:29:0::3;;;;;;;;;;;41407:80;41567:10;41556:22;::::0;;;:10:::3;:22;::::0;;;;:29;;-1:-1:-1;;41556:29:0::3;41581:4;41556:29;::::0;;41596:17:::3;:27:::0;;41617:6;;41556:22;41596:27:::3;::::0;41617:6;;41596:27:::3;:::i;:::-;::::0;;;-1:-1:-1;41688:41:0::3;::::0;-1:-1:-1;;;;;;41688:4:0::3;:17;41714:5;41722:6:::0;41688:17:::3;:41::i;:::-;41811:180;::::0;-1:-1:-1;;;41811:180:0;;-1:-1:-1;;;;;5407:47:1;;;41811:180:0::3;::::0;::::3;5389:66:1::0;38179:8:0::3;5471:18:1::0;;;5464:51;5531:18;;;5524:34;;;5594:47;;5574:18;;;5567:75;41811:5:0::3;-1:-1:-1::0;;;;;41811:16:0::3;::::0;::::3;::::0;5361:19:1;;41811:180:0::3;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;41811:180:0::3;::::0;;::::3;;::::0;;::::3;-1:-1:-1::0;;41811:180:0::3;::::0;::::3;::::0;;;::::3;::::0;;::::3;::::0;::::3;:::i;:::-;;;41807:310;;42093:12;;-1:-1:-1::0;;;42093:12:0::3;;;;;;;;;;;41807:310;42184:25;::::0;-1:-1:-1;;;42184:25:0;;::::3;::::0;::::3;548::1::0;;;42044:8:0;;-1:-1:-1;42221:4:0::3;::::0;-1:-1:-1;;;;;42184:8:0::3;:16;::::0;::::3;::::0;521:18:1;;42184:25:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42184:42:0::3;;42176:86;;;::::0;-1:-1:-1;;;42176:86:0;;6111:2:1;42176:86:0::3;::::0;::::3;6093:21:1::0;6150:2;6130:18;;;6123:30;6189:33;6169:18;;;6162:61;6240:18;;42176:86:0::3;;;;;;;;;42311:61;::::0;-1:-1:-1;;;42311:61:0;;42345:4:::3;42311:61;::::0;::::3;6471:51:1::0;42352:10:0::3;6538:18:1::0;;;6531:60;6607:18;;;6600:34;;;42311:8:0::3;-1:-1:-1::0;;;;;42311:25:0::3;::::0;::::3;::::0;6444:18:1;;42311:61:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;42390:43:0::3;::::0;;6819:25:1;;;6875:2;6860:18;;6853:34;;;42405:10:0::3;::::0;-1:-1:-1;42390:43:0::3;::::0;-1:-1:-1;6792:18:1;42390:43:0::3;;;;;;;42444:14;39248:1:::2;31331:20:::0;30725:1;31851:22;;31668:213;43482:188;43579:29;;-1:-1:-1;;;43579:29:0;;43602:4;43579:29;;;2816:51:1;43536:4:0;;;;-1:-1:-1;;;;;43579:4:0;:14;;;;2789:18:1;;43579:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43645:17;;-1:-1:-1;43626:36:0;;43482:188;-1:-1:-1;;43482:188:0:o;42570:291::-;34506:13;:11;:13::i;:::-;42652:29:::1;::::0;-1:-1:-1;;;42652:29:0;;42675:4:::1;42652:29;::::0;::::1;2816:51:1::0;42634:15:0::1;::::0;42652:4:::1;-1:-1:-1::0;;;;;42652:14:0::1;::::0;::::1;::::0;2789:18:1;;42652:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42634:47;;42696:7;42707:1;42696:12:::0;42692:46:::1;;42717:21;;-1:-1:-1::0;;;42717:21:0::1;;;;;;;;;;;42692:46;42759:35;42777:7;34666::::0;34693:6;-1:-1:-1;;;;;34693:6:0;;34620:87;42777:7:::1;-1:-1:-1::0;;;;;42759:4:0::1;:17;::::0;42786:7;42759:17:::1;:35::i;:::-;42820:33;::::0;548:25:1;;;42820:33:0::1;::::0;536:2:1;521:18;42820:33:0::1;402:177:1::0;44992:359:0;45068:7;;45225:22;45245:2;38179:8;45225:22;:::i;:::-;45285:58;;-1:-1:-1;;;45285:58:0;;-1:-1:-1;;;;;7263:47:1;;45285:58:0;;;7245:66:1;7359:10;7347:23;;7327:18;;;7320:51;45169:98:0;;-1:-1:-1;45285:5:0;-1:-1:-1;;;;;45285:27:0;;;;7218:18:1;;45285:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45278:65;44992:359;-1:-1:-1;;;44992:359:0:o;43947:154::-;34506:13;:11;:13::i;:::-;44008:14:::1;:21:::0;;-1:-1:-1;;44040:15:0;;;;;44071:22:::1;::::0;::::1;::::0;-1:-1:-1;;44071:22:0::1;43947:154::o:0;44672:167::-;44786:45;;-1:-1:-1;;;44786:45:0;;-1:-1:-1;;;;;7263:47:1;;44786:45:0;;;7245:66:1;7359:10;7347:23;;7327:18;;;7320:51;44759:7:0;;44786:5;-1:-1:-1;;;;;44786:27:0;;;;7218:18:1;;44786:45:0;;;;;;;;;;;;;;;;;;;;;;35553:220;34506:13;:11;:13::i;:::-;-1:-1:-1;;;;;35638:22:0;::::1;35634:93;;35684:31;::::0;-1:-1:-1;;;35684:31:0;;35712:1:::1;35684:31;::::0;::::1;2816:51:1::0;2789:18;;35684:31:0::1;2670:203:1::0;35634:93:0::1;35737:28;35756:8;35737:18;:28::i;:::-;35553:220:::0;:::o;34785:166::-;34666:7;34693:6;-1:-1:-1;;;;;34693:6:0;32834:10;34845:23;34841:103;;34892:40;;-1:-1:-1;;;34892:40:0;;32834:10;34892:40;;;2816:51:1;2789:18;;34892:40:0;2670:203:1;35933:191:0;36007:16;36026:6;;-1:-1:-1;;;;;36043:17:0;;;-1:-1:-1;;;;;;36043:17:0;;;;;;36076:40;;36026:6;;;;;;;36076:40;;36007:16;36076:40;35996:128;35933:191;:::o;31367:293::-;30769:1;31501:7;;:19;31493:63;;;;-1:-1:-1;;;31493:63:0;;7840:2:1;31493:63:0;;;7822:21:1;7879:2;7859:18;;;7852:30;7918:33;7898:18;;;7891:61;7969:18;;31493:63:0;7638:355:1;31493:63:0;30769:1;31634:7;:18;31367:293::o;20747:162::-;20857:43;;;-1:-1:-1;;;;;8190:32:1;;20857:43:0;;;8172:51:1;8239:18;;;;8232:34;;;20857:43:0;;;;;;;;;;8145:18:1;;;;20857:43:0;;;;;;;;-1:-1:-1;;;;;20857:43:0;-1:-1:-1;;;20857:43:0;;;20830:71;;20850:5;;20830:19;:71::i;:::-;20747:162;;;:::o;27340:738::-;27421:18;27450:19;27590:4;27587:1;27580:4;27574:11;27567:4;27561;27557:15;27554:1;27547:5;27540;27535:60;27649:7;27639:180;;27694:4;27688:11;27740:16;27737:1;27732:3;27717:40;27787:16;27782:3;27775:29;27639:180;-1:-1:-1;;27898:1:0;27892:8;27847:16;;-1:-1:-1;27927:15:0;;:68;;27979:11;27994:1;27979:16;;27927:68;;;-1:-1:-1;;;;;27945:26:0;;;:31;27927:68;27923:148;;;28019:40;;-1:-1:-1;;;28019:40:0;;-1:-1:-1;;;;;2834:32:1;;28019:40:0;;;2816:51:1;2789:18;;28019:40:0;2670:203:1;27923:148:0;27410:668;;27340:738;;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;584:273::-;640:6;693:2;681:9;672:7;668:23;664:32;661:52;;;709:1;706;699:12;661:52;748:9;735:23;801:5;794:13;787:21;780:5;777:32;767:60;;823:1;820;813:12;862:367;925:8;935:6;989:3;982:4;974:6;970:17;966:27;956:55;;1007:1;1004;997:12;956:55;-1:-1:-1;1030:20:1;;1073:18;1062:30;;1059:50;;;1105:1;1102;1095:12;1059:50;1142:4;1134:6;1130:17;1118:29;;1202:3;1195:4;1185:6;1182:1;1178:14;1170:6;1166:27;1162:38;1159:47;1156:67;;;1219:1;1216;1209:12;1156:67;862:367;;;;;:::o;1234:768::-;1356:6;1364;1372;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:52;;;1449:1;1446;1439:12;1401:52;1489:9;1476:23;1522:18;1514:6;1511:30;1508:50;;;1554:1;1551;1544:12;1508:50;1593:70;1655:7;1646:6;1635:9;1631:22;1593:70;:::i;:::-;1682:8;;-1:-1:-1;1567:96:1;-1:-1:-1;;1770:2:1;1755:18;;1742:32;1799:18;1786:32;;1783:52;;;1831:1;1828;1821:12;1783:52;1870:72;1934:7;1923:8;1912:9;1908:24;1870:72;:::i;:::-;1234:768;;;;-1:-1:-1;1961:8:1;-1:-1:-1;;;;1234:768:1:o;2199:146::-;-1:-1:-1;;;;;2278:5:1;2274:46;2267:5;2264:57;2254:85;;2335:1;2332;2325:12;2350:315;2418:6;2426;2479:2;2467:9;2458:7;2454:23;2450:32;2447:52;;;2495:1;2492;2485:12;2447:52;2534:9;2521:23;2553:31;2578:5;2553:31;:::i;:::-;2603:5;2655:2;2640:18;;;;2627:32;;-1:-1:-1;;;2350:315:1:o;3324:247::-;3383:6;3436:2;3424:9;3415:7;3411:23;3407:32;3404:52;;;3452:1;3449;3442:12;3404:52;3491:9;3478:23;3510:31;3535:5;3510:31;:::i;3799:419::-;3866:6;3874;3927:2;3915:9;3906:7;3902:23;3898:32;3895:52;;;3943:1;3940;3933:12;3895:52;3982:9;3969:23;4001:31;4026:5;4001:31;:::i;:::-;4051:5;-1:-1:-1;4108:2:1;4093:18;;4080:32;4156:10;4143:24;;4131:37;;4121:65;;4182:1;4179;4172:12;4121:65;4205:7;4195:17;;;3799:419;;;;;:::o;4444:127::-;4505:10;4500:3;4496:20;4493:1;4486:31;4536:4;4533:1;4526:15;4560:4;4557:1;4550:15;4576:127;4637:10;4632:3;4628:20;4625:1;4618:31;4668:4;4665:1;4658:15;4692:4;4689:1;4682:15;4708:128;4775:9;;;4796:11;;;4793:37;;;4810:18;;:::i;4841:125::-;4906:9;;;4927:10;;;4924:36;;;4940:18;;:::i;4971:184::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;-1:-1:-1;5133:16:1;;4971:184;-1:-1:-1;4971:184:1:o;5653:251::-;5723:6;5776:2;5764:9;5755:7;5751:23;5747:32;5744:52;;;5792:1;5789;5782:12;5744:52;5824:9;5818:16;5843:31;5868:5;5843:31;:::i;6898:170::-;6995:10;6988:18;;;6968;;;6964:43;;7019:20;;7016:46;;;7042:18;;:::i;7382:251::-;7452:6;7505:2;7493:9;7484:7;7480:23;7476:32;7473:52;;;7521:1;7518;7511:12;7473:52;7553:9;7547:16;7572:31;7597:5;7572:31;:::i
Swarm Source
ipfs://5b0d58b0dcdd615236205b5a89f972511e0b4198a2cb9f0948b0e04ef67145b2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.