Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 275 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 11986627 | 1393 days ago | IN | 0.958 ETH | 0.0194091 | ||||
Transfer | 11986627 | 1393 days ago | IN | 0.95 ETH | 0.00970455 | ||||
Transfer | 11986627 | 1393 days ago | IN | 0.959 ETH | 0.00970455 | ||||
Claim | 11954012 | 1398 days ago | IN | 0 ETH | 0.00536362 | ||||
Claim | 11930311 | 1402 days ago | IN | 0 ETH | 0.0048696 | ||||
Claim | 11924999 | 1403 days ago | IN | 0 ETH | 0.00470853 | ||||
Claim | 11924016 | 1403 days ago | IN | 0 ETH | 0.00522743 | ||||
Claim | 11920545 | 1403 days ago | IN | 0 ETH | 0.00853685 | ||||
Claim | 11920538 | 1403 days ago | IN | 0 ETH | 0.00853685 | ||||
Claim | 11918347 | 1404 days ago | IN | 0 ETH | 0.00603845 | ||||
Claim | 11918320 | 1404 days ago | IN | 0 ETH | 0.0060745 | ||||
Transfer | 11918311 | 1404 days ago | IN | 1 ETH | 0.00820314 | ||||
Transfer | 11905995 | 1406 days ago | IN | 5 ETH | 0.0125947 | ||||
Claim | 11905515 | 1406 days ago | IN | 0 ETH | 0.00372 | ||||
Claim | 11905489 | 1406 days ago | IN | 0 ETH | 0.003936 | ||||
Claim | 11904747 | 1406 days ago | IN | 0 ETH | 0.00544152 | ||||
Claim | 11904079 | 1406 days ago | IN | 0 ETH | 0.00403588 | ||||
Claim | 11903637 | 1406 days ago | IN | 0 ETH | 0.00541807 | ||||
Claim | 11903511 | 1406 days ago | IN | 0 ETH | 0.00484652 | ||||
Claim | 11903476 | 1406 days ago | IN | 0 ETH | 0.00350314 | ||||
Claim | 11903440 | 1406 days ago | IN | 0 ETH | 0.00380526 | ||||
Transfer | 11903342 | 1406 days ago | IN | 0.3 ETH | 0.00621091 | ||||
Transfer | 11903248 | 1406 days ago | IN | 2 ETH | 0.00988242 | ||||
Transfer | 11903232 | 1406 days ago | IN | 3.7 ETH | 0.00876667 | ||||
Return Unsold | 11903228 | 1406 days ago | IN | 0 ETH | 0.00714714 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
11986627 | 1393 days ago | 0.958 ETH | ||||
11986627 | 1393 days ago | 0.95 ETH | ||||
11986627 | 1393 days ago | 0.959 ETH | ||||
11918311 | 1404 days ago | 1 ETH | ||||
11906203 | 1406 days ago | 0.0475 ETH | ||||
11906203 | 1406 days ago | 13.9 ETH | ||||
11906107 | 1406 days ago | 0.0475 ETH | ||||
11906107 | 1406 days ago | 13.9 ETH | ||||
11905995 | 1406 days ago | 5 ETH | ||||
11903342 | 1406 days ago | 0.3 ETH | ||||
11903248 | 1406 days ago | 2 ETH | ||||
11903232 | 1406 days ago | 3.7 ETH | ||||
11903211 | 1406 days ago | 2 ETH | ||||
11903125 | 1406 days ago | 6 ETH | ||||
11903076 | 1406 days ago | 10 ETH | ||||
11903031 | 1406 days ago | 2 ETH | ||||
11903018 | 1406 days ago | 3 ETH | ||||
11902992 | 1406 days ago | 5 ETH | ||||
11902940 | 1406 days ago | 5 ETH | ||||
11902890 | 1406 days ago | 4 ETH | ||||
11902845 | 1406 days ago | 2.1 ETH | ||||
11902764 | 1406 days ago | 1 ETH | ||||
11902759 | 1406 days ago | 1.2 ETH | ||||
11902720 | 1406 days ago | 0.8 ETH | ||||
11902603 | 1406 days ago | 2 ETH |
Loading...
Loading
Contract Name:
AlohaPrivateSale
Compiler Version
v0.6.4+commit.1dca32f3
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-19 */ // File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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]. */ 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 () internal { _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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/AlohaPrivateSale.sol pragma solidity 0.6.4; contract AlohaPrivateSale is ReentrancyGuard, Ownable { using SafeMath for uint256; using Address for address payable; mapping(address => uint256) participants; mapping(address => uint256) public claimableTokens; // ALOHA per ETH price uint256 buyPrice; uint256 minimalGoal; uint256 hardCap; IERC20 crowdsaleToken; uint256 tokenDecimals = 18; event SellToken(address recepient, uint tokensSold, uint value); address payable fundingAddress; uint256 public totalCollected; uint256 totalSold; bool claimEnabled = false; uint256 claimWaitTime = 60 days; uint256 start; /** 10.000.000 for Presale Buy price: 40000000000000 wei | 0,00004 eth */ constructor( IERC20 _token, address payable _fundingAddress ) public { minimalGoal = 300000000000000000000; hardCap = 400000000000000000000; buyPrice = 40000000000000; crowdsaleToken = _token; fundingAddress = _fundingAddress; start = getTime(); } function getToken() external view returns(address) { return address(crowdsaleToken); } function getClaimableTokens(address wallet) external view returns(uint256) { return claimableTokens[wallet]; } receive() external payable { require(msg.value >= 100000000000000000, "Min 0.1 eth"); sell(msg.sender, msg.value); } // For users to claim their tokens after a successful tge function claim() external nonReentrant returns (uint256) { require(canClaim(), "Claim is not yet possible"); uint256 amount = claimableTokens[msg.sender]; claimableTokens[msg.sender] = 0; require(crowdsaleToken.transfer(msg.sender, amount), "Error transfering"); return amount; } function canClaim() public view returns (bool) { return claimEnabled || block.timestamp > (start + claimWaitTime); } function sell(address payable _recepient, uint256 _value) internal nonReentrant whenCrowdsaleAlive() { uint256 newTotalCollected = totalCollected.add(_value); if (hardCap < newTotalCollected) { // Refund anything above the hard cap uint256 refund = newTotalCollected.sub(hardCap); uint256 diff = _value.sub(refund); _recepient.sendValue(refund); _value = diff; newTotalCollected = totalCollected.add(_value); } // Token amount per price uint256 tokensSold = (_value).div(buyPrice).mul(10 ** tokenDecimals); // Set how much tokens the user can claim claimableTokens[_recepient] = claimableTokens[_recepient].add(tokensSold); emit SellToken(_recepient, tokensSold, _value); // Save participants participants[_recepient] = participants[_recepient].add(_value); fundingAddress.sendValue(_value); // Update total ETH totalCollected = totalCollected.add(_value); // Update tokens sold totalSold = totalSold.add(tokensSold); } function totalTokensNeeded() external view returns (uint256) { return hardCap.div(buyPrice).mul(10 ** tokenDecimals); } function enableClaim() external onlyOwner() { claimEnabled = true; } function returnUnsold() external nonReentrant onlyOwner() { crowdsaleToken.transfer(fundingAddress, crowdsaleToken.balanceOf(address(this))); } function getTime() public view returns(uint256) { return block.timestamp; } function isActive() public view returns(bool) { return ( totalCollected < hardCap ); } function isSuccessful() public view returns(bool) { return ( totalCollected >= hardCap || totalCollected >= minimalGoal ); } modifier whenCrowdsaleAlive() { require(isActive()); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_fundingAddress","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recepient","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensSold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SellToken","type":"event"},{"inputs":[],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getClaimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSuccessful","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnUnsold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensNeeded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260126008556000600c60006101000a81548160ff021916908315150217905550624f1a00600d5534801561003757600080fd5b50604051611b71380380611b718339818101604052604081101561005a57600080fd5b8101908080519060200190929190805190602001909291905050506001600081905550600061008d6101f660201b60201c565b905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350681043561a88293000006005819055506815af1d78b58c40000060068190555065246139ca800060048190555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101e96101fe60201b60201c565b600e819055505050610206565b600033905090565b600042905090565b61195c806102156000396000f3fe6080604052600436106100ec5760003560e01c8063715018a61161008a578063bba8bd2011610059578063bba8bd20146103f1578063e29eb8361461041c578063ec4cd0cf14610447578063f2fde38b146104765761017b565b8063715018a61461030757806384d242261461031e5780638da5cb5b14610383578063b2ea088d146103da5761017b565b806328dae6e3116100c657806328dae6e31461026b5780634e71d92d14610282578063557ed1ba146102ad5780636dc7a627146102d85761017b565b80631b831ead1461018057806321df0da7146101e557806322f3e2d41461023c5761017b565b3661017b5767016345785d8a000034101561016f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4d696e20302e312065746800000000000000000000000000000000000000000081525060200191505060405180910390fd5b61017933346104c7565b005b600080fd5b34801561018c57600080fd5b506101cf600480360360208110156101a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061084e565b6040518082815260200191505060405180910390f35b3480156101f157600080fd5b506101fa610897565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561024857600080fd5b506102516108c1565b604051808215151515815260200191505060405180910390f35b34801561027757600080fd5b506102806108cf565b005b34801561028e57600080fd5b506102976109b6565b6040518082815260200191505060405180910390f35b3480156102b957600080fd5b506102c2610ca1565b6040518082815260200191505060405180910390f35b3480156102e457600080fd5b506102ed610ca9565b604051808215151515815260200191505060405180910390f35b34801561031357600080fd5b5061031c610cd0565b005b34801561032a57600080fd5b5061036d6004803603602081101561034157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e5b565b6040518082815260200191505060405180910390f35b34801561038f57600080fd5b50610398610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e657600080fd5b506103ef610e9d565b005b3480156103fd57600080fd5b506104066111d2565b6040518082815260200191505060405180910390f35b34801561042857600080fd5b50610431611207565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c61120d565b604051808215151515815260200191505060405180910390f35b34801561048257600080fd5b506104c56004803603602081101561049957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122b565b005b60026000541415610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506105506108c1565b61055957600080fd5b600061057082600a5461143b90919063ffffffff16565b90508060065410156105f2576000610593600654836114c390919063ffffffff16565b905060006105aa82856114c390919063ffffffff16565b90506105d5828673ffffffffffffffffffffffffffffffffffffffff1661150d90919063ffffffff16565b8093506105ed84600a5461143b90919063ffffffff16565b925050505b6000610620600854600a0a6106126004548661164790919063ffffffff16565b61169190919063ffffffff16565b905061067481600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143b90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa848285604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a161077c83600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143b90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061080a83600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661150d90919063ffffffff16565b61081f83600a5461143b90919063ffffffff16565b600a8190555061083a81600b5461143b90919063ffffffff16565b600b81905550505060016000819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600654600a5410905090565b6108d7611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600060026000541415610a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610a41610ca9565b610ab3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f436c61696d206973206e6f742079657420706f737369626c650000000000000081525060200191505060405180910390fd5b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610be557600080fd5b505af1158015610bf9573d6000803e3d6000fd5b505050506040513d6020811015610c0f57600080fd5b8101908080519060200190929190505050610c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4572726f72207472616e73666572696e6700000000000000000000000000000081525060200191505060405180910390fd5b80915050600160008190555090565b600042905090565b6000600c60009054906101000a900460ff1680610ccb5750600d54600e540142115b905090565b610cd8611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60036020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026000541415610f16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610f26611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110e857600080fd5b505afa1580156110fc573d6000803e3d6000fd5b505050506040513d602081101561111257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561118c57600080fd5b505af11580156111a0573d6000803e3d6000fd5b505050506040513d60208110156111b657600080fd5b8101908080519060200190929190505050506001600081905550565b6000611202600854600a0a6111f460045460065461164790919063ffffffff16565b61169190919063ffffffff16565b905090565b600a5481565b6000600654600a541015806112265750600554600a5410155b905090565b611233611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118a66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156114b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061150583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061171f565b905092915050565b80471015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d80600081146115e3576040519150601f19603f3d011682016040523d82523d6000602084013e6115e8565b606091505b5050905080611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806118cc603a913960400191505060405180910390fd5b505050565b600061168983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506117df565b905092915050565b6000808314156116a45760009050611711565b60008284029050828482816116b557fe5b041461170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806119066021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b60008383111582906117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611791578082015181840152602081019050611776565b50505050905090810190601f1680156117be5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611850578082015181840152602081019050611835565b50505050905090810190601f16801561187d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161189757fe5b04905080915050939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220590816bbe9c7899b78f841337ee2d85f86b7b4ec2143aa3cb3fff24c993b9e6d64736f6c63430006040033000000000000000000000000455f7ef6d8bcfc35f9337e85aee1b0600a59fabe000000000000000000000000bb1e6d010e05484b3214085b67eca5849455d826
Deployed Bytecode
0x6080604052600436106100ec5760003560e01c8063715018a61161008a578063bba8bd2011610059578063bba8bd20146103f1578063e29eb8361461041c578063ec4cd0cf14610447578063f2fde38b146104765761017b565b8063715018a61461030757806384d242261461031e5780638da5cb5b14610383578063b2ea088d146103da5761017b565b806328dae6e3116100c657806328dae6e31461026b5780634e71d92d14610282578063557ed1ba146102ad5780636dc7a627146102d85761017b565b80631b831ead1461018057806321df0da7146101e557806322f3e2d41461023c5761017b565b3661017b5767016345785d8a000034101561016f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4d696e20302e312065746800000000000000000000000000000000000000000081525060200191505060405180910390fd5b61017933346104c7565b005b600080fd5b34801561018c57600080fd5b506101cf600480360360208110156101a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061084e565b6040518082815260200191505060405180910390f35b3480156101f157600080fd5b506101fa610897565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561024857600080fd5b506102516108c1565b604051808215151515815260200191505060405180910390f35b34801561027757600080fd5b506102806108cf565b005b34801561028e57600080fd5b506102976109b6565b6040518082815260200191505060405180910390f35b3480156102b957600080fd5b506102c2610ca1565b6040518082815260200191505060405180910390f35b3480156102e457600080fd5b506102ed610ca9565b604051808215151515815260200191505060405180910390f35b34801561031357600080fd5b5061031c610cd0565b005b34801561032a57600080fd5b5061036d6004803603602081101561034157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e5b565b6040518082815260200191505060405180910390f35b34801561038f57600080fd5b50610398610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e657600080fd5b506103ef610e9d565b005b3480156103fd57600080fd5b506104066111d2565b6040518082815260200191505060405180910390f35b34801561042857600080fd5b50610431611207565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c61120d565b604051808215151515815260200191505060405180910390f35b34801561048257600080fd5b506104c56004803603602081101561049957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122b565b005b60026000541415610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506105506108c1565b61055957600080fd5b600061057082600a5461143b90919063ffffffff16565b90508060065410156105f2576000610593600654836114c390919063ffffffff16565b905060006105aa82856114c390919063ffffffff16565b90506105d5828673ffffffffffffffffffffffffffffffffffffffff1661150d90919063ffffffff16565b8093506105ed84600a5461143b90919063ffffffff16565b925050505b6000610620600854600a0a6106126004548661164790919063ffffffff16565b61169190919063ffffffff16565b905061067481600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143b90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa848285604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a161077c83600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143b90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061080a83600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661150d90919063ffffffff16565b61081f83600a5461143b90919063ffffffff16565b600a8190555061083a81600b5461143b90919063ffffffff16565b600b81905550505060016000819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600654600a5410905090565b6108d7611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600060026000541415610a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610a41610ca9565b610ab3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f436c61696d206973206e6f742079657420706f737369626c650000000000000081525060200191505060405180910390fd5b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610be557600080fd5b505af1158015610bf9573d6000803e3d6000fd5b505050506040513d6020811015610c0f57600080fd5b8101908080519060200190929190505050610c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4572726f72207472616e73666572696e6700000000000000000000000000000081525060200191505060405180910390fd5b80915050600160008190555090565b600042905090565b6000600c60009054906101000a900460ff1680610ccb5750600d54600e540142115b905090565b610cd8611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60036020528060005260406000206000915090505481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026000541415610f16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610f26611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110e857600080fd5b505afa1580156110fc573d6000803e3d6000fd5b505050506040513d602081101561111257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561118c57600080fd5b505af11580156111a0573d6000803e3d6000fd5b505050506040513d60208110156111b657600080fd5b8101908080519060200190929190505050506001600081905550565b6000611202600854600a0a6111f460045460065461164790919063ffffffff16565b61169190919063ffffffff16565b905090565b600a5481565b6000600654600a541015806112265750600554600a5410155b905090565b611233611717565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118a66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156114b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061150583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061171f565b905092915050565b80471015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d80600081146115e3576040519150601f19603f3d011682016040523d82523d6000602084013e6115e8565b606091505b5050905080611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806118cc603a913960400191505060405180910390fd5b505050565b600061168983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506117df565b905092915050565b6000808314156116a45760009050611711565b60008284029050828482816116b557fe5b041461170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806119066021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b60008383111582906117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611791578082015181840152602081019050611776565b50505050905090810190601f1680156117be5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611850578082015181840152602081019050611835565b50505050905090810190601f16801561187d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161189757fe5b04905080915050939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220590816bbe9c7899b78f841337ee2d85f86b7b4ec2143aa3cb3fff24c993b9e6d64736f6c63430006040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000455f7ef6d8bcfc35f9337e85aee1b0600a59fabe000000000000000000000000bb1e6d010e05484b3214085b67eca5849455d826
-----Decoded View---------------
Arg [0] : _token (address): 0x455F7Ef6D8BCfc35f9337e85aEe1B0600a59FabE
Arg [1] : _fundingAddress (address): 0xbb1e6D010e05484B3214085b67EcA5849455D826
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000455f7ef6d8bcfc35f9337e85aee1b0600a59fabe
Arg [1] : 000000000000000000000000bb1e6d010e05484b3214085b67eca5849455d826
Deployed Bytecode Sourcemap
20460:4154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21905:18;21892:9;:31;;21884:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21950:27;21955:10;21967:9;21950:4;:27::i;:::-;20460:4154;;12:1:-1;9;2:12;21695:143:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21695:143:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21695:143:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21567:120;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21567:120:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24241:124;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24241:124:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23860:93;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23860:93:0;;;:::i;:::-;;22056:343;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22056:343:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24134:101;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24134:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22407:128;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22407:128:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10915:148;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10915:148:0;;;:::i;:::-;;20647:50;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20647:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20647:50:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10273:79;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10273:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23959:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23959:169:0;;;:::i;:::-;;23727:127;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23727:127:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20981:29;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20981:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24371:162;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24371:162:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11218:244;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11218:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;11218:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22543:1178;7182:1;7788:7;;:19;;7780:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:1;7921:7;:18;;;;24584:10:::1;:8;:10::i;:::-;24576:19;;12:1:-1;9::::0;2:12:::1;24576:19:0;22678:25:::2;22706:26;22725:6;22706:14;;:18;;:26;;;;:::i;:::-;22678:54;;22759:17;22749:7;;:27;22745:338;;;22844:14;22861:30;22883:7;;22861:17;:21;;:30;;;;:::i;:::-;22844:47;;22906:12;22921:18;22932:6;22921;:10;;:18;;;;:::i;:::-;22906:33;;22954:28;22975:6;22954:10;:20;;;;:28;;;;:::i;:::-;23006:4;22997:13;;23045:26;23064:6;23045:14;;:18;;:26;;;;:::i;:::-;23025:46;;22745:338;;;23130:18;23151:47;23184:13;;23178:2;:19;23151:22;23164:8;;23152:6;23151:12;;:22;;;;:::i;:::-;:26;;:47;;;;:::i;:::-;23130:68;;23294:43;23326:10;23294:15;:27;23310:10;23294:27;;;;;;;;;;;;;;;;:31;;:43;;;;:::i;:::-;23264:15;:27;23280:10;23264:27;;;;;;;;;;;;;;;:73;;;;23355:41;23365:10;23377;23389:6;23355:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23466:36;23495:6;23466:12;:24;23479:10;23466:24;;;;;;;;;;;;;;;;:28;;:36;;;;:::i;:::-;23439:12;:24;23452:10;23439:24;;;;;;;;;;;;;;;:63;;;;23515:32;23540:6;23515:14;;;;;;;;;;;:24;;;;:32;;;;:::i;:::-;23606:26;23625:6;23606:14;;:18;;:26;;;;:::i;:::-;23589:14;:43;;;;23688:25;23702:10;23688:9;;:13;;:25;;;;:::i;:::-;23676:9;:37;;;;24602:1;;7138::::0;8100:7;:22;;;;22543:1178;;:::o;21695:143::-;21777:7;21807:15;:23;21823:6;21807:23;;;;;;;;;;;;;;;;21800:30;;21695:143;;;:::o;21567:120::-;21624:7;21664:14;;;;;;;;;;;21649:30;;21567:120;:::o;24241:124::-;24296:4;24345:7;;24328:14;;:24;24312:47;;24241:124;:::o;23860:93::-;10495:12;:10;:12::i;:::-;10485:22;;:6;;;;;;;;;;;:22;;;10477:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23943:4:::1;23928:12;;:19;;;;;;;;;;;;;;;;;;23860:93::o:0;22056:343::-;22118:7;7182:1;7788:7;;:19;;7780:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:1;7921:7;:18;;;;22146:10:::1;:8;:10::i;:::-;22138:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22197:14;22214:15;:27;22230:10;22214:27;;;;;;;;;;;;;;;;22197:44;;22282:1;22252:15;:27;22268:10;22252:27;;;;;;;;;;;;;;;:31;;;;22302:14;;;;;;;;;;;:23;;;22326:10;22338:6;22302:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;22302:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;22302:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;22302:43:0;;;;;;;;;;;;;;;;22294:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22385:6;22378:13;;;7138:1:::0;8100:7;:22;;;;22056:343;:::o;24134:101::-;24188:7;24214:15;24207:22;;24134:101;:::o;22407:128::-;22448:4;22470:12;;;;;;;;;;;:57;;;;22513:13;;22505:5;;:21;22486:15;:41;22470:57;22463:64;;22407:128;:::o;10915:148::-;10495:12;:10;:12::i;:::-;10485:22;;:6;;;;;;;;;;;:22;;;10477:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11022:1:::1;10985:40;;11006:6;;;;;;;;;;;10985:40;;;;;;;;;;;;11053:1;11036:6;;:19;;;;;;;;;;;;;;;;;;10915:148::o:0;20647:50::-;;;;;;;;;;;;;;;;;:::o;10273:79::-;10311:7;10338:6;;;;;;;;;;;10331:13;;10273:79;:::o;23959:169::-;7182:1;7788:7;;:19;;7780:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7182:1;7921:7;:18;;;;10495:12:::1;:10;:12::i;:::-;10485:22;;:6;;;;;;;;;;;:22;;;10477:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;24042:14:::2;;;;;;;;;;;:23;;;24066:14;;;;;;;;;;;24082;;;;;;;;;;;:24;;;24115:4;24082:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;24082:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;24082:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;24082:39:0;;;;;;;;;;;;;;;;24042:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;24042:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;24042:80:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;24042:80:0;;;;;;;;;;;;;;;;;7138:1:::0;8100:7;:22;;;;23959:169::o;23727:127::-;23779:7;23802:46;23834:13;;23828:2;:19;23802:21;23814:8;;23802:7;;:11;;:21;;;;:::i;:::-;:25;;:46;;;;:::i;:::-;23795:53;;23727:127;:::o;20981:29::-;;;;:::o;24371:162::-;24430:4;24480:7;;24462:14;;:25;;:58;;;;24509:11;;24491:14;;:29;;24462:58;24446:81;;24371:162;:::o;11218:244::-;10495:12;:10;:12::i;:::-;10485:22;;:6;;;;;;;;;;;:22;;;10477:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11327:1:::1;11307:22;;:8;:22;;;;11299:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11417:8;11388:38;;11409:6;;;;;;;;;;;11388:38;;;;;;;;;;;;11446:8;11437:6;;:17;;;;;;;;;;;;;;;;;;11218:244:::0;:::o;956:181::-;1014:7;1034:9;1050:1;1046;:5;1034:17;;1075:1;1070;:6;;1062:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:1;1121:8;;;956:181;;;;:::o;1420:136::-;1478:7;1505:43;1509:1;1512;1505:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1498:50;;1420:136;;;;:::o;16457:397::-;16572:6;16547:21;:31;;16539:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16704:12;16722:9;:14;;16745:6;16722:35;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;16703:54:0;;;16776:7;16768:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16457:397;;;:::o;3257:132::-;3315:7;3342:39;3346:1;3349;3342:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3335:46;;3257:132;;;;:::o;2310:471::-;2368:7;2618:1;2613;:6;2609:47;;;2643:1;2636:8;;;;2609:47;2668:9;2684:1;2680;:5;2668:17;;2713:1;2708;2704;:5;;;;;;:10;2696:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2772:1;2765:8;;;2310:471;;;;;:::o;8794:106::-;8847:15;8882:10;8875:17;;8794:106;:::o;1859:192::-;1945:7;1978:1;1973;:6;;1981:12;1965:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005:9;2021:1;2017;:5;2005:17;;2042:1;2035:8;;;1859:192;;;;;:::o;3885:278::-;3971:7;4003:1;3999;:5;4006:12;3991:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3991:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4030:9;4046:1;4042;:5;;;;;;4030:17;;4154:1;4147:8;;;3885:278;;;;;:::o
Swarm Source
ipfs://590816bbe9c7899b78f841337ee2d85f86b7b4ec2143aa3cb3fff24c993b9e6d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.999809 | 1,000 | $999.81 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.