Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
VestingManager
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-09-09
*/
/**
*Submitted for verification at Etherscan.io on 2023-09-06
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
function getRoundData(
uint80 _roundId
)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}
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@v4.7.2
// OpenZeppelin Contracts (last updated v4.7.0) (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 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 {
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/token/ERC20/IERC20.sol@v4.7.2
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 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);
}
// File @openzeppelin/contracts/utils/math/SafeMath.sol@v4.7.2
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File contracts/interfaces/ICrowdsale.sol
pragma solidity ^0.8.0;
// Import this file to use console.log
interface ICrowdsale {
// Amount in CAI
event TokenSold(address indexed beneficiary, uint256 indexed amount);
event TokenTransferred(address indexed receiver, uint256 indexed amount);
// Price (USDT) per CAI
function price() external view returns (uint256);
// Max. amount in USDT
function maxAmountUsd() external view returns (uint256);
// Max. amount in ETH
function maxAmountETH() external view returns (uint256);
// The beneficiary vesting wallet address
function vestingWallet(address) external view returns (address);
function startTimestamp() external view returns (uint256);
function endTimestamp() external view returns (uint256);
function soldToken() external view returns (uint256);
function setPrice(uint256) external;
function usdtAddress() external view returns (address);
function caiAddress() external view returns (address);
function RouterAddress() external view returns (address);
function vestingManagerAddress() external view returns (address);
function setStartTimestamp(uint256) external;
function setRound(uint8) external;
function setEndTimestamp(uint256) external;
function setMaxAmountUsd(uint256) external;
function setMaxAmountETH(uint256) external;
function buyTokenETH() external payable;
function buyTokenUSDT(uint256) external;
function withdrawToken(address) external;
function transferTokenOwnership(address) external;
}
// File @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol@v4.7.2
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// File @openzeppelin/contracts/utils/Address.sol@v4.7.2
// OpenZeppelin Contracts (last updated v4.7.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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol@v4.7.2
// OpenZeppelin Contracts (last updated v4.7.0) (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
)
);
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(
nonceAfter == nonceBefore + 1,
"SafeERC20: permit did not succeed"
);
}
/**
* @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/utils/math/Math.sol@v4.7.2
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`.
// We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
// This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
// Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
// good first aproximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1;
uint256 x = a;
if (x >> 128 > 0) {
x >>= 128;
result <<= 64;
}
if (x >> 64 > 0) {
x >>= 64;
result <<= 32;
}
if (x >> 32 > 0) {
x >>= 32;
result <<= 16;
}
if (x >> 16 > 0) {
x >>= 16;
result <<= 8;
}
if (x >> 8 > 0) {
x >>= 8;
result <<= 4;
}
if (x >> 4 > 0) {
x >>= 4;
result <<= 2;
}
if (x >> 2 > 0) {
result <<= 1;
}
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(
uint256 a,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = sqrt(a);
if (rounding == Rounding.Up && result * result < a) {
result += 1;
}
return result;
}
}
// File contracts/interfaces/IVestingManager.sol
pragma solidity ^0.8.0;
// Import this file to use console.log
interface IVestingManager {
function startTimestamp() external view returns (uint256);
function durationSAFT() external view returns (uint256);
function durationOne() external view returns (uint256);
function durationTwo() external view returns (uint256);
function durationThree() external view returns (uint256);
function durationFour() external view returns (uint256);
function durationFive() external view returns (uint256);
function durationSix() external view returns (uint256);
function cliffoffSAFT() external view returns (uint256);
function cliffoffOne() external view returns (uint256);
function cliffoffTwo() external view returns (uint256);
function tgeThree() external view returns (uint256);
function tgeFour() external view returns (uint256);
function tgeFive() external view returns (uint256);
function tgeSix() external view returns (uint256);
function setStartTimestamp(uint256) external;
function setDurationSAFT(uint256) external;
function setDurationOne(uint256) external;
function setDurationTwo(uint256) external;
function setDurationThree(uint256) external;
function setDurationFour(uint256) external;
function setDurationFive(uint256) external;
function setDurationSix(uint256) external;
function setCliffoffSAFT(uint256) external;
function setCliffoffOne(uint256) external;
function setCliffoffTwo(uint256) external;
function setTgeThree(uint256) external;
function setTgeFour(uint256) external;
function setTgeFive(uint256) external;
function setTgeSix(uint256) external;
}
// File contracts/VestingWallet.sol
// OpenZeppelin Contracts (last updated v4.7.0) (finance/VestingWallet.sol)
pragma solidity ^0.8.0;
// Import this file to use console.log
/**
* @title VestingWallet
* @dev This contract handles the vesting of Eth and ERC20 tokens for a given beneficiary. Custody of multiple tokens
* can be given to this contract, which will release the token to the beneficiary following a given vesting schedule.
* The vesting schedule is customizable through the {vestedAmount} function.
*
* Any token transferred to this contract will follow the vesting schedule as if they were locked from the beginning.
* Consequently, if the vesting has already started, any amount of tokens sent to this contract will (at least partly)
* be immediately releasable.
*/
contract VestingWallet is Context {
using SafeMath for uint256;
event EtherReleased(uint256 amount);
event ERC20Released(address indexed token, uint256 amount);
uint256 private _released;
mapping(address => uint256) public _erc20Released;
mapping(address => uint256) public _erc20Initial;
mapping(address => bool) private _initial;
address private immutable _beneficiary;
uint8 private immutable _round;
address private immutable _vestingManagerAddress;
/**
* @dev Set the beneficiary, start timestamp and vesting duration of the vesting wallet.
*/
constructor(
address beneficiaryAddress,
address vestingManagerAddress,
uint8 roundn
) {
require(
beneficiaryAddress != address(0),
"VestingWallet: beneficiary is zero address"
);
_beneficiary = beneficiaryAddress;
require(
vestingManagerAddress != address(0),
"VestingWallet: vesting manager is zero address"
);
_vestingManagerAddress = vestingManagerAddress;
_round = roundn;
_initial[address(this)] = false;
}
/**
* @dev The contract should be able to receive Eth.
*/
receive() external payable virtual {}
/**
* @dev Getter for the beneficiary address.
*/
function beneficiary() public view virtual returns (address) {
return _beneficiary;
}
/**
* @dev Getter for the start timestamp.
*/
function start() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).startTimestamp();
}
function round() public view virtual returns (uint256) {
return _round;
}
/**
* @dev Getter for the vesting duration.
*/
function durationSAFT() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationSAFT();
}
function durationOne() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationOne();
}
function durationTwo() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationTwo();
}
function durationThree() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationThree();
}
function durationFour() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationFour();
}
function durationFive() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationFive();
}
function durationSix() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).durationSix();
}
function cliffoffSAFT() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).cliffoffSAFT();
}
function cliffoffOne() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).cliffoffOne();
}
function cliffoffTwo() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).cliffoffTwo();
}
function tgeThree() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).tgeThree();
}
function tgeFour() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).tgeFour();
}
function tgeFive() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).tgeFive();
}
function tgeSix() public view virtual returns (uint256) {
return IVestingManager(_vestingManagerAddress).tgeSix();
}
/**
* @dev Amount of token already released
*/
function released() public view virtual returns (uint256) {
address token = 0x4534b9De0a5CD0940a1f73B827b721eCb791DAe3;
return _erc20Released[token];
}
/**
* @dev Release the tokens that have already vested.
*
* Emits a {ERC20Released} event.
*/
function release() public virtual {
address token = 0x4534b9De0a5CD0940a1f73B827b721eCb791DAe3;
uint256 releasable;
require(block.timestamp > start(), "Vesting not started yet");
releasable = vestedAmount(token, uint64(block.timestamp)) - released();
if (_initial[address(this)] == true) {
_erc20Released[token] += releasable;
} else {
_erc20Initial[token] += releasable;
}
emit ERC20Released(token, releasable);
SafeERC20.safeTransfer(IERC20(token), beneficiary(), releasable);
_initial[address(this)] = true;
}
/**
* @dev Calculates the amount of tokens that has already vested. Default implementation is a linear vesting curve.
*/
function vestedAmount(
address token,
uint64 timestamp
) public view virtual returns (uint256) {
return
_vestingSchedule(
IERC20(token).balanceOf(address(this)) + released(),
timestamp
);
}
/**
* @dev Virtual implementation of the vesting formula. This returns the amount vested, as a function of time, for
* an asset given its total historical allocation.
*/
function _vestingSchedule(
uint256 totalAllocation,
uint64 timestamp
) internal view virtual returns (uint256) {
if (timestamp < start()) {
return 0;
} else {
uint init = 0;
if (_round == 1) {
require(
(start() + cliffoffOne()) < timestamp,
"You still have to wait, sorry."
);
if (timestamp > (start() + durationOne())) {
return totalAllocation;
}
return
(totalAllocation *
(timestamp - (start() + cliffoffOne()))) /
durationOne();
} else if (_round == 2) {
require(
(start() + cliffoffTwo()) < timestamp,
"You still have to wait, sorry."
);
if (timestamp > (start() + durationTwo())) {
return totalAllocation;
}
return
(totalAllocation *
(timestamp - (start() + cliffoffTwo()))) /
durationTwo();
} else if (_round == 3) {
if (_initial[address(this)] == false) {
init = ((totalAllocation / 100) * tgeThree()) / 100;
return
((totalAllocation * (timestamp - start())) /
durationThree()) + init;
}
if (timestamp > (start() + durationThree())) {
return totalAllocation;
}
return
(totalAllocation * (timestamp - start())) / durationThree();
} else if (_round == 4) {
if (_initial[address(this)] == false) {
init = ((totalAllocation / 100) * tgeFour()) / 100;
return
((totalAllocation * (timestamp - start())) /
durationFour()) + init;
}
if (timestamp > (start() + durationFour())) {
return totalAllocation;
}
return
(totalAllocation * (timestamp - start())) / durationFour();
} else if (_round == 5) {
if (_initial[address(this)] == false) {
init = ((totalAllocation / 100) * tgeFive()) / 100;
return
((totalAllocation * (timestamp - start())) /
durationFive()) + init;
}
if (timestamp > (start() + durationFive())) {
return totalAllocation;
}
return
(totalAllocation * (timestamp - start())) / durationFive();
} else if (_round == 6) {
if (_initial[address(this)] == false) {
init = ((totalAllocation / 100) * tgeSix()) / 100;
return
((totalAllocation * (timestamp - start())) /
durationSix()) + init;
}
if (timestamp > (start() + durationSix())) {
return totalAllocation;
}
return
(totalAllocation * (timestamp - start())) / durationSix();
} else if (_round == 0) {
require(
(start() + cliffoffSAFT()) < timestamp,
"You still have to wait, sorry."
);
if (timestamp > (start() + durationSAFT())) {
return totalAllocation;
}
return
(totalAllocation *
(timestamp - (start() + cliffoffSAFT()))) /
durationSAFT();
} else {
return 0;
}
// return totalAllocation/100;
}
}
}
pragma solidity ^0.8.0;
contract PresaleAIC is ICrowdsale, Ownable {
using SafeMath for uint256;
uint256 private _price;
uint256 private _maxAmountUsd;
uint256 private _maxAmountETH;
mapping(address => address) private _vestingWallets;
mapping(address => uint8) private _bought;
mapping(address => uint256) public whitelistSAFT;
mapping(address => bool) public whitelistSEED;
mapping(uint8 => uint256) public tokensCollected;
AggregatorV3Interface internal priceFeed;
uint256 private _startTimestamp;
uint256 private _endTimestamp;
uint256 public percent_dominator = 1000;
uint256 private _soldToken;
address private immutable _usdtAddress;
uint8 public _round;
address private immutable _caiAddress;
address private immutable _RouterAddress;
address private immutable _vestingManagerAddress;
constructor(
address addressUsdt,
address addressCai,
address addressRouter,
address addressVestingManager
) {
_price = 2000; // 0.02 USDT
_maxAmountUsd = 15000 ether;
_maxAmountETH = 100 ether;
_usdtAddress = addressUsdt;
_round = 0;
_caiAddress = addressCai;
_RouterAddress = addressRouter;
_vestingManagerAddress = addressVestingManager;
priceFeed = AggregatorV3Interface(
0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
);
}
function price() public view virtual override returns (uint256) {
return _price;
}
function maxAmountUsd() public view virtual override returns (uint256) {
return _maxAmountUsd;
}
function maxAmountETH() public view virtual override returns (uint256) {
return _maxAmountETH;
}
function vestingWallet(
address beneficiary
) public view virtual override returns (address) {
return _vestingWallets[beneficiary];
}
function startTimestamp() public view virtual override returns (uint256) {
return _startTimestamp;
}
function endTimestamp() public view virtual override returns (uint256) {
return _endTimestamp;
}
function soldToken() public view virtual override returns (uint256) {
return _soldToken;
}
function currentRound() public view virtual returns (uint8) {
return _round;
}
function usdtAddress() public view virtual override returns (address) {
return _usdtAddress;
}
function caiAddress() public view virtual override returns (address) {
return _caiAddress;
}
function RouterAddress() public view virtual override returns (address) {
return _RouterAddress;
}
function vestingManagerAddress()
public
view
virtual
override
returns (address)
{
return _vestingManagerAddress;
}
function setWhitelistForSAFT(
address _addr,
uint256 amount
) external onlyOwner {
whitelistSAFT[_addr] = amount;
}
function setWhitelistForSEED(
address _addr
) external onlyOwner {
whitelistSEED[_addr] = true;
}
function setStartTimestamp(
uint256 value
) public virtual override onlyOwner {
require(
value > block.timestamp,
"Start timestamp must be in the future."
);
_startTimestamp = value;
}
function setEndTimestamp(uint256 value) public virtual override onlyOwner {
require(
value > block.timestamp,
"End timestamp must be in the future."
);
_endTimestamp = value;
}
function setRound(uint8 value) public virtual override onlyOwner {
require(value > 0, "Round must be greather than 1");
_round = value;
}
function setMaxAmountUsd(uint256 value) public virtual override onlyOwner {
_maxAmountUsd = value;
}
function setPrice(uint256 value) public virtual override onlyOwner {
_price = value;
}
function setMaxAmountETH(uint256 value) public virtual override onlyOwner {
_maxAmountETH = value;
}
function setPercentDominator(uint256 value) public onlyOwner {
percent_dominator = value;
}
/**
* Buying
*/
function buyTokenETH() public payable virtual override {
require(_round > 0, "ICO not started");
_preValidate();
_validateAmountETH();
if(_round == 1)
{
require(whitelistSEED[msg.sender],"You are not whitelisted for the SEED Round");
}
uint256 tokenAmount = (uint256(msg.value) * uint256(getLatestPrice())) /
(price());
uint256 amountCai = tokenAmount / percent_dominator;
_execute(msg.sender, amountCai);
}
function SAFTClaim() public virtual {
require(
whitelistSAFT[msg.sender] > 0,
"You are not in the SAFT Whitelist"
);
uint256 amountCai = whitelistSAFT[msg.sender];
_execute(msg.sender, amountCai);
whitelistSAFT[msg.sender] = 0;
}
function buyTokenUSDT(uint256 amountUsdt) public virtual override {
require(_round > 0, "ICO not started");
if(_round == 1)
{
require(whitelistSEED[msg.sender],"You are not whitelisted for the SEED Round");
}
_buyTokenErc20(amountUsdt);
}
function _buyTokenErc20(uint256 usdtAmount) private {
_preValidate();
_validateAmountUsd(usdtAmount);
IERC20 usdt = IERC20(usdtAddress());
uint8 tokenDecimals = 18;
uint8 usdtDecimals = 6;
uint256 tokenAmount = ((usdtAmount *
(10 ** (tokenDecimals - usdtDecimals))) / _price) *
percent_dominator;
require(
usdt.allowance(msg.sender, address(this)) >= usdtAmount,
"Insufficient USDT allowance"
);
require(
usdt.transferFrom(msg.sender, address(this), usdtAmount),
"USDT transfer failed"
);
_execute(msg.sender, tokenAmount.mul(100));
}
function _execute(address beneficiary, uint256 amountCai) private {
address walletAddress = _getVestingWalletAddress(beneficiary);
require(
_bought[beneficiary] == _round,
"You already bought in a previous round"
);
tokensCollected[_round] += amountCai;
_soldToken = _soldToken.add(amountCai);
emit TokenTransferred(walletAddress, amountCai);
emit TokenSold(beneficiary, amountCai);
IERC20 cai = IERC20(caiAddress());
require(
cai.transfer(walletAddress, amountCai),
"Crowdsale: CAI transfer failed"
);
}
function _getVestingWalletAddress(
address beneficiary
) private returns (address) {
address existingWallet = _vestingWallets[beneficiary];
if (existingWallet == address(0x0)) {
VestingWallet wallet = new VestingWallet(
beneficiary,
vestingManagerAddress(),
_round
);
address walletAddress = address(wallet);
_vestingWallets[beneficiary] = walletAddress;
_bought[beneficiary] = _round;
return walletAddress;
} else {
return existingWallet;
}
}
/**
* Withdraw
*/
function withdrawToken(
address tokenAddress
) public virtual override onlyOwner {
IERC20 token = IERC20(tokenAddress);
require(
token.transfer(msg.sender, token.balanceOf(address(this))),
"Crowdsale: token transfer failed"
);
}
function clearStuckBalance(uint256 amountPercentage) external onlyOwner {
uint256 amountETH = address(this).balance;
payable(msg.sender).transfer((amountETH * amountPercentage) / 100);
}
function transferTokenOwnership(
address tokenAddress
) public virtual override onlyOwner {
Ownable cai = Ownable(tokenAddress);
cai.transferOwnership(msg.sender);
}
function getLatestPrice() public view returns (int) {
(
uint80 roundID,
int pricex,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
return pricex;
}
/**
* Validation
*/
function _preValidate() private view {
require(
block.timestamp >= startTimestamp(),
"Crowdsale: Sale isn't running yet"
);
require(
block.timestamp < endTimestamp(),
"Crowdsale: Sale was already finished"
);
}
function _validateAmountETH() private view {
require(msg.value > 0, "Crowdsale: Amount must be greater than 0");
require(
msg.value <= maxAmountETH(),
"Crowdsale: Amount exceeds max. amount"
);
}
function _validateAmountUsd(uint256 amountUsd) private view {
require(amountUsd > 0, "Crowdsale: Amount must be greater than 0");
require(
amountUsd <= maxAmountUsd(),
"Crowdsale: Amount exceeds max. amount"
);
}
}
pragma solidity ^0.8.0;
contract VestingManager is IVestingManager, Ownable {
uint256 private _startTimestamp;
uint256 private _durationSAFT;
uint256 private _durationOne;
uint256 private _durationTwo;
uint256 private _durationThree;
uint256 private _durationFour;
uint256 private _durationFive;
uint256 private _durationSix;
uint256 private _cliffoffSAFT;
uint256 private _cliffoffOne;
uint256 private _cliffoffTwo;
uint256 private _tgeThree;
uint256 private _tgeFour;
uint256 private _tgeFive;
uint256 private _tgeSix;
constructor() {
_startTimestamp = type(uint256).max;
_durationSAFT = 31536000;
_durationOne = 31536000;
_durationTwo = 26280000;
_durationThree = 31536000;
_durationFour = 26280000;
_durationFive = 15768000;
_durationSix = 15768000;
_cliffoffSAFT = 7884000;
_cliffoffOne = 2628000;
_cliffoffTwo = 2628000;
_tgeThree = 83;
_tgeFour = 120;
_tgeFive = 500;
_tgeSix = 1000;
}
function startTimestamp() public view virtual override returns (uint256) {
return _startTimestamp;
}
function cliffoffSAFT() public view virtual override returns (uint256) {
return _cliffoffSAFT;
}
function cliffoffOne() public view virtual override returns (uint256) {
return _cliffoffOne;
}
function cliffoffTwo() public view virtual override returns (uint256) {
return _cliffoffTwo;
}
function durationSAFT() public view virtual override returns (uint256) {
return _durationSAFT;
}
function durationOne() public view virtual override returns (uint256) {
return _durationOne;
}
function durationTwo() public view virtual override returns (uint256) {
return _durationTwo;
}
function durationThree() public view virtual override returns (uint256) {
return _durationThree;
}
function durationFour() public view virtual override returns (uint256) {
return _durationFour;
}
function durationFive() public view virtual override returns (uint256) {
return _durationFive;
}
function durationSix() public view virtual override returns (uint256) {
return _durationSix;
}
function tgeThree() public view virtual override returns (uint256) {
return _tgeThree;
}
function tgeFour() public view virtual override returns (uint256) {
return _tgeFour;
}
function tgeFive() public view virtual override returns (uint256) {
return _tgeFive;
}
function tgeSix() public view virtual override returns (uint256) {
return _tgeSix;
}
function setStartTimestamp(
uint256 value
) public virtual override onlyOwner {
require(
value > block.timestamp,
"VestingManager: Start timestamp must be in the future"
);
_startTimestamp = value;
}
function setCliffoffSAFT(uint256 value) public virtual override onlyOwner {
_cliffoffSAFT = value;
}
function setCliffoffOne(uint256 value) public virtual override onlyOwner {
_cliffoffOne = value;
}
function setCliffoffTwo(uint256 value) public virtual override onlyOwner {
_cliffoffTwo = value;
}
function setDurationSAFT(uint256 value) public virtual override onlyOwner {
_durationSAFT = value;
}
function setDurationOne(uint256 value) public virtual override onlyOwner {
_durationOne = value;
}
function setDurationTwo(uint256 value) public virtual override onlyOwner {
_durationTwo = value;
}
function setDurationThree(uint256 value) public virtual override onlyOwner {
_durationThree = value;
}
function setDurationFour(uint256 value) public virtual override onlyOwner {
_durationFour = value;
}
function setDurationFive(uint256 value) public virtual override onlyOwner {
_durationFive = value;
}
function setDurationSix(uint256 value) public virtual override onlyOwner {
_durationSix = value;
}
function setTgeThree(uint256 value) public virtual override onlyOwner {
_tgeThree = value;
}
function setTgeFour(uint256 value) public virtual override onlyOwner {
_tgeFour = value;
}
function setTgeFive(uint256 value) public virtual override onlyOwner {
_tgeFive = value;
}
function setTgeSix(uint256 value) public virtual override onlyOwner {
_tgeSix = value;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"cliffoffOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cliffoffSAFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cliffoffTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationFive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationFour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationSAFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationSix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setCliffoffOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setCliffoffSAFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setCliffoffTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationFive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationFour","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationSAFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationSix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setDurationTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTgeFive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTgeFour","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTgeSix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTgeThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeFive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeFour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeSix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061002d6100226100e460201b60201c565b6100ec60201b60201c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6001819055506301e133806002819055506301e1338060038190555063019100406004819055506301e13380600581905550630191004060068190555062f099c060078190555062f099c060088190555062784ce0600981905550622819a0600a81905550622819a0600b819055506053600c819055506078600d819055506101f4600e819055506103e8600f819055506101b0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610cb8806101bf6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806390b2952b1161011a578063c44bef75116100ad578063e6fd48bc1161007c578063e6fd48bc1461051a578063f2fde38b14610538578063fbe42b2814610554578063fc85e92e14610570578063fea9e5941461058c576101fb565b8063c44bef75146104a6578063c7783c89146104c2578063cba4ae10146104e0578063e651eb5e146104fe576101fb565b8063b1fea8e9116100e9578063b1fea8e914610432578063b3033e8214610450578063bdc110f91461046e578063be8ba1d41461048a576101fb565b806390b2952b146103be57806394eb8613146103dc5780639da6a3ba146103fa578063a71ac9a514610416576101fb565b806330bfce24116101925780634dfa3841116101615780634dfa38411461035c578063715018a61461037a5780637dd1e898146103845780638da5cb5b146103a0576101fb565b806330bfce24146102e857806341c2a8c3146103065780634abd15ef146103225780634decb7121461033e576101fb565b80632555f43d116101ce5780632555f43d146102745780632617b51a146102925780632ac85de2146102ae57806330b6bae7146102ca576101fb565b806303512fb214610200578063083cec531461021c57806319f80c9e1461023857806321e7bcd714610256575b600080fd5b61021a600480360381019061021591906109d5565b6105aa565b005b610236600480360381019061023191906109d5565b6105bc565b005b6102406105ce565b60405161024d9190610a11565b60405180910390f35b61025e6105d8565b60405161026b9190610a11565b60405180910390f35b61027c6105e2565b6040516102899190610a11565b60405180910390f35b6102ac60048036038101906102a791906109d5565b6105ec565b005b6102c860048036038101906102c391906109d5565b6105fe565b005b6102d2610610565b6040516102df9190610a11565b60405180910390f35b6102f061061a565b6040516102fd9190610a11565b60405180910390f35b610320600480360381019061031b91906109d5565b610624565b005b61033c600480360381019061033791906109d5565b610636565b005b610346610648565b6040516103539190610a11565b60405180910390f35b610364610652565b6040516103719190610a11565b60405180910390f35b61038261065c565b005b61039e600480360381019061039991906109d5565b610670565b005b6103a8610682565b6040516103b59190610a6d565b60405180910390f35b6103c66106ab565b6040516103d39190610a11565b60405180910390f35b6103e46106b5565b6040516103f19190610a11565b60405180910390f35b610414600480360381019061040f91906109d5565b6106bf565b005b610430600480360381019061042b91906109d5565b6106d1565b005b61043a6106e3565b6040516104479190610a11565b60405180910390f35b6104586106ed565b6040516104659190610a11565b60405180910390f35b610488600480360381019061048391906109d5565b6106f7565b005b6104a4600480360381019061049f91906109d5565b610709565b005b6104c060048036038101906104bb91906109d5565b61071b565b005b6104ca61076f565b6040516104d79190610a11565b60405180910390f35b6104e8610779565b6040516104f59190610a11565b60405180910390f35b610518600480360381019061051391906109d5565b610783565b005b610522610795565b60405161052f9190610a11565b60405180910390f35b610552600480360381019061054d9190610ab4565b61079f565b005b61056e600480360381019061056991906109d5565b610822565b005b61058a600480360381019061058591906109d5565b610834565b005b610594610846565b6040516105a19190610a11565b60405180910390f35b6105b2610850565b8060058190555050565b6105c4610850565b8060078190555050565b6000600d54905090565b6000600454905090565b6000600254905090565b6105f4610850565b8060098190555050565b610606610850565b80600b8190555050565b6000600f54905090565b6000600654905090565b61062c610850565b8060068190555050565b61063e610850565b80600f8190555050565b6000600c54905090565b6000600b54905090565b610664610850565b61066e60006108ce565b565b610678610850565b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6000600e54905090565b6106c7610850565b8060038190555050565b6106d9610850565b8060088190555050565b6000600554905090565b6000600354905090565b6106ff610850565b8060028190555050565b610711610850565b8060048190555050565b610723610850565b428111610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075c90610b64565b60405180910390fd5b8060018190555050565b6000600854905090565b6000600a54905090565b61078b610850565b80600d8190555050565b6000600154905090565b6107a7610850565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90610bf6565b60405180910390fd5b61081f816108ce565b50565b61082a610850565b80600c8190555050565b61083c610850565b80600a8190555050565b6000600954905090565b610858610992565b73ffffffffffffffffffffffffffffffffffffffff16610876610682565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390610c62565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b6000819050919050565b6109b28161099f565b81146109bd57600080fd5b50565b6000813590506109cf816109a9565b92915050565b6000602082840312156109eb576109ea61099a565b5b60006109f9848285016109c0565b91505092915050565b610a0b8161099f565b82525050565b6000602082019050610a266000830184610a02565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a5782610a2c565b9050919050565b610a6781610a4c565b82525050565b6000602082019050610a826000830184610a5e565b92915050565b610a9181610a4c565b8114610a9c57600080fd5b50565b600081359050610aae81610a88565b92915050565b600060208284031215610aca57610ac961099a565b5b6000610ad884828501610a9f565b91505092915050565b600082825260208201905092915050565b7f56657374696e674d616e616765723a2053746172742074696d657374616d702060008201527f6d75737420626520696e20746865206675747572650000000000000000000000602082015250565b6000610b4e603583610ae1565b9150610b5982610af2565b604082019050919050565b60006020820190508181036000830152610b7d81610b41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610be0602683610ae1565b9150610beb82610b84565b604082019050919050565b60006020820190508181036000830152610c0f81610bd3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610c4c602083610ae1565b9150610c5782610c16565b602082019050919050565b60006020820190508181036000830152610c7b81610c3f565b905091905056fea26469706673582212205e1b7cc6f79837c67b0227cc4287caf3ac1ca1c7f9c644fa75cac1cd89de25e664736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806390b2952b1161011a578063c44bef75116100ad578063e6fd48bc1161007c578063e6fd48bc1461051a578063f2fde38b14610538578063fbe42b2814610554578063fc85e92e14610570578063fea9e5941461058c576101fb565b8063c44bef75146104a6578063c7783c89146104c2578063cba4ae10146104e0578063e651eb5e146104fe576101fb565b8063b1fea8e9116100e9578063b1fea8e914610432578063b3033e8214610450578063bdc110f91461046e578063be8ba1d41461048a576101fb565b806390b2952b146103be57806394eb8613146103dc5780639da6a3ba146103fa578063a71ac9a514610416576101fb565b806330bfce24116101925780634dfa3841116101615780634dfa38411461035c578063715018a61461037a5780637dd1e898146103845780638da5cb5b146103a0576101fb565b806330bfce24146102e857806341c2a8c3146103065780634abd15ef146103225780634decb7121461033e576101fb565b80632555f43d116101ce5780632555f43d146102745780632617b51a146102925780632ac85de2146102ae57806330b6bae7146102ca576101fb565b806303512fb214610200578063083cec531461021c57806319f80c9e1461023857806321e7bcd714610256575b600080fd5b61021a600480360381019061021591906109d5565b6105aa565b005b610236600480360381019061023191906109d5565b6105bc565b005b6102406105ce565b60405161024d9190610a11565b60405180910390f35b61025e6105d8565b60405161026b9190610a11565b60405180910390f35b61027c6105e2565b6040516102899190610a11565b60405180910390f35b6102ac60048036038101906102a791906109d5565b6105ec565b005b6102c860048036038101906102c391906109d5565b6105fe565b005b6102d2610610565b6040516102df9190610a11565b60405180910390f35b6102f061061a565b6040516102fd9190610a11565b60405180910390f35b610320600480360381019061031b91906109d5565b610624565b005b61033c600480360381019061033791906109d5565b610636565b005b610346610648565b6040516103539190610a11565b60405180910390f35b610364610652565b6040516103719190610a11565b60405180910390f35b61038261065c565b005b61039e600480360381019061039991906109d5565b610670565b005b6103a8610682565b6040516103b59190610a6d565b60405180910390f35b6103c66106ab565b6040516103d39190610a11565b60405180910390f35b6103e46106b5565b6040516103f19190610a11565b60405180910390f35b610414600480360381019061040f91906109d5565b6106bf565b005b610430600480360381019061042b91906109d5565b6106d1565b005b61043a6106e3565b6040516104479190610a11565b60405180910390f35b6104586106ed565b6040516104659190610a11565b60405180910390f35b610488600480360381019061048391906109d5565b6106f7565b005b6104a4600480360381019061049f91906109d5565b610709565b005b6104c060048036038101906104bb91906109d5565b61071b565b005b6104ca61076f565b6040516104d79190610a11565b60405180910390f35b6104e8610779565b6040516104f59190610a11565b60405180910390f35b610518600480360381019061051391906109d5565b610783565b005b610522610795565b60405161052f9190610a11565b60405180910390f35b610552600480360381019061054d9190610ab4565b61079f565b005b61056e600480360381019061056991906109d5565b610822565b005b61058a600480360381019061058591906109d5565b610834565b005b610594610846565b6040516105a19190610a11565b60405180910390f35b6105b2610850565b8060058190555050565b6105c4610850565b8060078190555050565b6000600d54905090565b6000600454905090565b6000600254905090565b6105f4610850565b8060098190555050565b610606610850565b80600b8190555050565b6000600f54905090565b6000600654905090565b61062c610850565b8060068190555050565b61063e610850565b80600f8190555050565b6000600c54905090565b6000600b54905090565b610664610850565b61066e60006108ce565b565b610678610850565b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6000600e54905090565b6106c7610850565b8060038190555050565b6106d9610850565b8060088190555050565b6000600554905090565b6000600354905090565b6106ff610850565b8060028190555050565b610711610850565b8060048190555050565b610723610850565b428111610765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075c90610b64565b60405180910390fd5b8060018190555050565b6000600854905090565b6000600a54905090565b61078b610850565b80600d8190555050565b6000600154905090565b6107a7610850565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90610bf6565b60405180910390fd5b61081f816108ce565b50565b61082a610850565b80600c8190555050565b61083c610850565b80600a8190555050565b6000600954905090565b610858610992565b73ffffffffffffffffffffffffffffffffffffffff16610876610682565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390610c62565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b6000819050919050565b6109b28161099f565b81146109bd57600080fd5b50565b6000813590506109cf816109a9565b92915050565b6000602082840312156109eb576109ea61099a565b5b60006109f9848285016109c0565b91505092915050565b610a0b8161099f565b82525050565b6000602082019050610a266000830184610a02565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a5782610a2c565b9050919050565b610a6781610a4c565b82525050565b6000602082019050610a826000830184610a5e565b92915050565b610a9181610a4c565b8114610a9c57600080fd5b50565b600081359050610aae81610a88565b92915050565b600060208284031215610aca57610ac961099a565b5b6000610ad884828501610a9f565b91505092915050565b600082825260208201905092915050565b7f56657374696e674d616e616765723a2053746172742074696d657374616d702060008201527f6d75737420626520696e20746865206675747572650000000000000000000000602082015250565b6000610b4e603583610ae1565b9150610b5982610af2565b604082019050919050565b60006020820190508181036000830152610b7d81610b41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610be0602683610ae1565b9150610beb82610b84565b604082019050919050565b60006020820190508181036000830152610c0f81610bd3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610c4c602083610ae1565b9150610c5782610c16565b602082019050919050565b60006020820190508181036000830152610c7b81610c3f565b905091905056fea26469706673582212205e1b7cc6f79837c67b0227cc4287caf3ac1ca1c7f9c644fa75cac1cd89de25e664736f6c63430008120033
Deployed Bytecode Sourcemap
63726:4762:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67557:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67803:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66230:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65532:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65298:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66833:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67075:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66446:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65768:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67681:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68383:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66120;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65182:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3582:103;;;:::i;:::-;;68271:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2934:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65886:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66338:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67317:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67925;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65648;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65416:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67195:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67437:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66552:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66004:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65066;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68159:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64826:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3840:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68045:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66955:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64948:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67557:116;2820:13;:11;:13::i;:::-;67660:5:::1;67643:14;:22;;;;67557:116:::0;:::o;67803:114::-;2820:13;:11;:13::i;:::-;67904:5:::1;67888:13;:21;;;;67803:114:::0;:::o;66230:100::-;66287:7;66314:8;;66307:15;;66230:100;:::o;65532:108::-;65593:7;65620:12;;65613:19;;65532:108;:::o;65298:110::-;65360:7;65387:13;;65380:20;;65298:110;:::o;66833:114::-;2820:13;:11;:13::i;:::-;66934:5:::1;66918:13;:21;;;;66833:114:::0;:::o;67075:112::-;2820:13;:11;:13::i;:::-;67174:5:::1;67159:12;:20;;;;67075:112:::0;:::o;66446:98::-;66502:7;66529;;66522:14;;66446:98;:::o;65768:110::-;65830:7;65857:13;;65850:20;;65768:110;:::o;67681:114::-;2820:13;:11;:13::i;:::-;67782:5:::1;67766:13;:21;;;;67681:114:::0;:::o;68383:102::-;2820:13;:11;:13::i;:::-;68472:5:::1;68462:7;:15;;;;68383:102:::0;:::o;66120:::-;66178:7;66205:9;;66198:16;;66120:102;:::o;65182:108::-;65243:7;65270:12;;65263:19;;65182:108;:::o;3582:103::-;2820:13;:11;:13::i;:::-;3647:30:::1;3674:1;3647:18;:30::i;:::-;3582:103::o:0;68271:104::-;2820:13;:11;:13::i;:::-;68362:5:::1;68351:8;:16;;;;68271:104:::0;:::o;2934:87::-;2980:7;3007:6;;;;;;;;;;;3000:13;;2934:87;:::o;65886:110::-;65948:7;65975:13;;65968:20;;65886:110;:::o;66338:100::-;66395:7;66422:8;;66415:15;;66338:100;:::o;67317:112::-;2820:13;:11;:13::i;:::-;67416:5:::1;67401:12;:20;;;;67317:112:::0;:::o;67925:::-;2820:13;:11;:13::i;:::-;68024:5:::1;68009:12;:20;;;;67925:112:::0;:::o;65648:::-;65711:7;65738:14;;65731:21;;65648:112;:::o;65416:108::-;65477:7;65504:12;;65497:19;;65416:108;:::o;67195:114::-;2820:13;:11;:13::i;:::-;67296:5:::1;67280:13;:21;;;;67195:114:::0;:::o;67437:112::-;2820:13;:11;:13::i;:::-;67536:5:::1;67521:12;:20;;;;67437:112:::0;:::o;66552:273::-;2820:13;:11;:13::i;:::-;66685:15:::1;66677:5;:23;66655:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;66812:5;66794:15;:23;;;;66552:273:::0;:::o;66004:108::-;66065:7;66092:12;;66085:19;;66004:108;:::o;65066:::-;65127:7;65154:12;;65147:19;;65066:108;:::o;68159:104::-;2820:13;:11;:13::i;:::-;68250:5:::1;68239:8;:16;;;;68159:104:::0;:::o;64826:114::-;64890:7;64917:15;;64910:22;;64826:114;:::o;3840:238::-;2820:13;:11;:13::i;:::-;3963:1:::1;3943:22;;:8;:22;;::::0;3921:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4042:28;4061:8;4042:18;:28::i;:::-;3840:238:::0;:::o;68045:106::-;2820:13;:11;:13::i;:::-;68138:5:::1;68126:9;:17;;;;68045:106:::0;:::o;66955:112::-;2820:13;:11;:13::i;:::-;67054:5:::1;67039:12;:20;;;;66955:112:::0;:::o;64948:110::-;65010:7;65037:13;;65030:20;;64948:110;:::o;3099:132::-;3174:12;:10;:12::i;:::-;3163:23;;:7;:5;:7::i;:::-;:23;;;3155:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3099:132::o;4238:191::-;4312:16;4331:6;;;;;;;;;;;4312:25;;4357:8;4348:6;;:17;;;;;;;;;;;;;;;;;;4412:8;4381:40;;4402:8;4381:40;;;;;;;;;;;;4301:128;4238:191;:::o;1458:98::-;1511:7;1538:10;1531:17;;1458:98;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:96::-;1546:7;1575:24;1593:5;1575:24;:::i;:::-;1564:35;;1509:96;;;:::o;1611:118::-;1698:24;1716:5;1698:24;:::i;:::-;1693:3;1686:37;1611:118;;:::o;1735:222::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1735:222;;;;:::o;1963:122::-;2036:24;2054:5;2036:24;:::i;:::-;2029:5;2026:35;2016:63;;2075:1;2072;2065:12;2016:63;1963:122;:::o;2091:139::-;2137:5;2175:6;2162:20;2153:29;;2191:33;2218:5;2191:33;:::i;:::-;2091:139;;;;:::o;2236:329::-;2295:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:119;;;2350:79;;:::i;:::-;2312:119;2470:1;2495:53;2540:7;2531:6;2520:9;2516:22;2495:53;:::i;:::-;2485:63;;2441:117;2236:329;;;;:::o;2571:169::-;2655:11;2689:6;2684:3;2677:19;2729:4;2724:3;2720:14;2705:29;;2571:169;;;;:::o;2746:240::-;2886:34;2882:1;2874:6;2870:14;2863:58;2955:23;2950:2;2942:6;2938:15;2931:48;2746:240;:::o;2992:366::-;3134:3;3155:67;3219:2;3214:3;3155:67;:::i;:::-;3148:74;;3231:93;3320:3;3231:93;:::i;:::-;3349:2;3344:3;3340:12;3333:19;;2992:366;;;:::o;3364:419::-;3530:4;3568:2;3557:9;3553:18;3545:26;;3617:9;3611:4;3607:20;3603:1;3592:9;3588:17;3581:47;3645:131;3771:4;3645:131;:::i;:::-;3637:139;;3364:419;;;:::o;3789:225::-;3929:34;3925:1;3917:6;3913:14;3906:58;3998:8;3993:2;3985:6;3981:15;3974:33;3789:225;:::o;4020:366::-;4162:3;4183:67;4247:2;4242:3;4183:67;:::i;:::-;4176:74;;4259:93;4348:3;4259:93;:::i;:::-;4377:2;4372:3;4368:12;4361:19;;4020:366;;;:::o;4392:419::-;4558:4;4596:2;4585:9;4581:18;4573:26;;4645:9;4639:4;4635:20;4631:1;4620:9;4616:17;4609:47;4673:131;4799:4;4673:131;:::i;:::-;4665:139;;4392:419;;;:::o;4817:182::-;4957:34;4953:1;4945:6;4941:14;4934:58;4817:182;:::o;5005:366::-;5147:3;5168:67;5232:2;5227:3;5168:67;:::i;:::-;5161:74;;5244:93;5333:3;5244:93;:::i;:::-;5362:2;5357:3;5353:12;5346:19;;5005:366;;;:::o;5377:419::-;5543:4;5581:2;5570:9;5566:18;5558:26;;5630:9;5624:4;5620:20;5616:1;5605:9;5601:17;5594:47;5658:131;5784:4;5658:131;:::i;:::-;5650:139;;5377:419;;;:::o
Swarm Source
ipfs://5e1b7cc6f79837c67b0227cc4287caf3ac1ca1c7f9c644fa75cac1cd89de25e6
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.