More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 343 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 11752085 | 1471 days ago | IN | 0 ETH | 0.00262776 | ||||
Claim | 11752085 | 1471 days ago | IN | 0 ETH | 0.00281771 | ||||
Claim | 11752085 | 1471 days ago | IN | 0 ETH | 0.00308981 | ||||
Claim | 11752085 | 1471 days ago | IN | 0 ETH | 0.00305317 | ||||
Claim | 11752085 | 1471 days ago | IN | 0 ETH | 0.00305317 | ||||
Transfer | 11752085 | 1471 days ago | IN | 0.65 ETH | 0.00224154 | ||||
Transfer | 11752085 | 1471 days ago | IN | 0.6 ETH | 0.0020494 | ||||
Transfer | 11752085 | 1471 days ago | IN | 0.6 ETH | 0.0020494 | ||||
Transfer | 11752085 | 1471 days ago | IN | 0.6 ETH | 0.00198536 | ||||
Transfer | 11752047 | 1471 days ago | IN | 0.6 ETH | 0.00217749 | ||||
Transfer | 11752047 | 1471 days ago | IN | 0.5 ETH | 0.00217749 | ||||
Transfer | 11752047 | 1471 days ago | IN | 0.5 ETH | 0.00217749 | ||||
Transfer | 11752047 | 1471 days ago | IN | 0.5 ETH | 0.00217749 | ||||
Transfer | 11752046 | 1471 days ago | IN | 0.5 ETH | 0.00243367 | ||||
Claim | 11751564 | 1471 days ago | IN | 0 ETH | 0.00804965 | ||||
Claim | 11745019 | 1472 days ago | IN | 0 ETH | 0.00440384 | ||||
Claim | 11743283 | 1472 days ago | IN | 0 ETH | 0.00345137 | ||||
Claim | 11743277 | 1472 days ago | IN | 0 ETH | 0.00345137 | ||||
Claim | 11743248 | 1472 days ago | IN | 0 ETH | 0.00267867 | ||||
Claim | 11742637 | 1472 days ago | IN | 0 ETH | 0.00365742 | ||||
Claim | 11742484 | 1472 days ago | IN | 0 ETH | 0.00329683 | ||||
Claim | 11742258 | 1472 days ago | IN | 0 ETH | 0.00339985 | ||||
Claim | 11741766 | 1472 days ago | IN | 0 ETH | 0.00309078 | ||||
Claim | 11741750 | 1472 days ago | IN | 0 ETH | 0.00288472 | ||||
Claim | 11741642 | 1472 days ago | IN | 0 ETH | 0.00422406 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ExedumSale
Compiler Version
v0.6.4+commit.1dca32f3
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-27 */ // 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: @openzeppelin/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/ExedumSale.sol pragma solidity 0.6.4; contract ExedumSale is ReentrancyGuard, Ownable { using SafeMath for uint256; using Address for address payable; // Participants for posible refunds mapping(address => uint256) participants; mapping(address => uint256) public claimableTokens; // EXED per ETH price uint256 buyPrice; uint256 minimalGoal; uint256 hardCap; ERC20Burnable crowdsaleToken; uint256 tokenDecimals = 18; event SellToken(address recepient, uint tokensSold, uint value); address payable fundingAddress; uint256 startTimestamp; uint256 endTimestamp; bool started; bool stopped; uint256 public totalCollected; uint256 totalSold; bool claimEnabled = false; uint256 claimWaitTime = 2 days; /** 800.000 for Sale Buy price: 500000000000000 wei | 0,0005 eth */ constructor( ERC20Burnable _token ) public { minimalGoal = 100000000000000000000; // 100 eth hardCap = 400000000000000000000; // 400 eth buyPrice = 500000000000000; crowdsaleToken = _token; } 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"); require(participants[msg.sender] <= 20000000000000000000, "Max 20 eth per wallet"); sell(msg.sender, msg.value); } // For users to claim their tokens after a successful tge function claim() external nonReentrant hasntStopped() whenCrowdsaleSuccessful() 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 > (endTimestamp + claimWaitTime); } function sell(address payable _recepient, uint256 _value) internal nonReentrant hasBeenStarted() hasntStopped() 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 in case of a refund participants[_recepient] = participants[_recepient].add(_value); // Update total ETH totalCollected = totalCollected.add(_value); // Update tokens sold totalSold = totalSold.add(tokensSold); } function enableClaim( ) external onlyOwner() { claimEnabled = true; } // Called to withdraw the ETH only if the TGE was successful function withdraw( uint256 _amount ) external nonReentrant onlyOwner() hasntStopped() whenCrowdsaleSuccessful() { require(_amount <= address(this).balance, "Not enough funds"); fundingAddress.sendValue(_amount); } function burnUnsold() external nonReentrant onlyOwner() hasntStopped() whenCrowdsaleSuccessful() { crowdsaleToken.burn(crowdsaleToken.balanceOf(address(this))); } // Called to refund user's ETH if the TGE has failed function refund() external nonReentrant { require(stopped || isFailed(), "Not cancelled or failed"); uint256 amount = participants[msg.sender]; require(amount > 0, "Only once"); participants[msg.sender] = 0; msg.sender.sendValue(amount); } // Cancels the TGE function stop() public onlyOwner() hasntStopped() { if (started) { require(!isFailed()); require(!isSuccessful()); } stopped = true; } // Called to setup start and end time of TGE as well as funding address function start( uint256 _startTimestamp, uint256 _endTimestamp, address payable _fundingAddress ) public onlyOwner() hasntStarted() hasntStopped() { require(_fundingAddress != address(0)); require(_endTimestamp > _startTimestamp); require(crowdsaleToken.balanceOf(address(this)) >= hardCap.div(buyPrice).mul(10 ** tokenDecimals), "Not enough tokens transfered for the sale"); startTimestamp = _startTimestamp; endTimestamp = _endTimestamp; fundingAddress = _fundingAddress; started = true; } function totalTokensNeeded() external view returns (uint256) { return hardCap.div(buyPrice).mul(10 ** tokenDecimals); } function getTime() public view returns(uint256) { return block.timestamp; } function isFailed() public view returns(bool) { return ( started && block.timestamp >= endTimestamp && totalCollected < minimalGoal ); } function isActive() public view returns(bool) { return ( started && totalCollected < hardCap && block.timestamp >= startTimestamp && block.timestamp < endTimestamp ); } function isSuccessful() public view returns(bool) { return ( totalCollected >= hardCap || (block.timestamp >= endTimestamp && totalCollected >= minimalGoal) ); } modifier whenCrowdsaleAlive() { require(isActive()); _; } modifier whenCrowdsaleSuccessful() { require(isSuccessful()); _; } modifier hasntStopped() { require(!stopped); _; } modifier hasntStarted() { require(!started); _; } modifier hasBeenStarted() { require(started); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC20Burnable","name":"_token","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":"burnUnsold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"isFailed","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":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"internalType":"uint256","name":"_endTimestamp","type":"uint256"},{"internalType":"address payable","name":"_fundingAddress","type":"address"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stop","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"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526012600855600f805460ff191690556202a30060105534801561002657600080fd5b506040516117163803806117168339818101604052602081101561004957600080fd5b5051600160009081556100636001600160e01b036100fb16565b600180546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35068056bc75e2d631000006005556815af1d78b58c4000006006556601c6bf52634000600455600780546001600160a01b0319166001600160a01b03929092169190911790556100ff565b3390565b6116088061010e6000396000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063bba8bd2011610064578063bba8bd20146103e1578063e29eb836146103f6578063ec4cd0cf1461040b578063f2fde38b14610420578063f416334014610453576101e4565b8063715018a61461033057806384d24226146103455780638da5cb5b14610378578063a51fe1131461038d578063b52a5851146103cc576101e4565b80632e1a7d4d116100e75780632e1a7d4d146102b25780634e71d92d146102dc578063557ed1ba146102f1578063590e1ae3146103065780636dc7a6271461031b576101e4565b806307da68f5146101e95780631b831ead146101fe57806321df0da71461024357806322f3e2d41461027457806328dae6e31461029d576101e4565b366101e45767016345785d8a0000341015610173576040805162461bcd60e51b815260206004820152600b60248201526a09ad2dc40605c6240cae8d60ab1b604482015290519081900360640190fd5b336000908152600260205260409020546801158e460913d0000010156101d8576040805162461bcd60e51b815260206004820152601560248201527413585e080c8c08195d1a081c195c881dd85b1b195d605a1b604482015290519081900360640190fd5b6101e23334610468565b005b600080fd5b3480156101f557600080fd5b506101e261069b565b34801561020a57600080fd5b506102316004803603602081101561022157600080fd5b50356001600160a01b0316610748565b60408051918252519081900360200190f35b34801561024f57600080fd5b50610258610763565b604080516001600160a01b039092168252519081900360200190f35b34801561028057600080fd5b50610289610772565b604080519115158252519081900360200190f35b3480156102a957600080fd5b506101e26107aa565b3480156102be57600080fd5b506101e2600480360360208110156102d557600080fd5b5035610811565b3480156102e857600080fd5b50610231610946565b3480156102fd57600080fd5b50610231610af9565b34801561031257600080fd5b506101e2610afd565b34801561032757600080fd5b50610289610c20565b34801561033c57600080fd5b506101e2610c3c565b34801561035157600080fd5b506102316004803603602081101561036857600080fd5b50356001600160a01b0316610cde565b34801561038457600080fd5b50610258610cf0565b34801561039957600080fd5b506101e2600480360360608110156103b057600080fd5b50803590602081013590604001356001600160a01b0316610cff565b3480156103d857600080fd5b506101e2610ea6565b3480156103ed57600080fd5b5061023161104b565b34801561040257600080fd5b5061023161106d565b34801561041757600080fd5b50610289611073565b34801561042c57600080fd5b506101e26004803603602081101561044357600080fd5b50356001600160a01b031661109c565b34801561045f57600080fd5b50610289611195565b600260005414156104ae576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c5460ff166104c257600080fd5b600c54610100900460ff16156104d757600080fd5b6104df610772565b6104e857600080fd5b600d546000906104fe908363ffffffff6111be16565b905080600654101561056d5760006105216006548361122190919063ffffffff16565b90506000610535848363ffffffff61122116565b90506105506001600160a01b0386168363ffffffff61126316565b80935061056884600d546111be90919063ffffffff16565b925050505b6000610599600854600a0a61058d6004548661134d90919063ffffffff16565b9063ffffffff61138f16565b6001600160a01b0385166000908152600360205260409020549091506105c5908263ffffffff6111be16565b6001600160a01b03851660008181526003602090815260409182902093909355805191825291810183905280820185905290517fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa9181900360600190a16001600160a01b03841660009081526002602052604090205461064b908463ffffffff6111be16565b6001600160a01b038516600090815260026020526040902055600d54610677908463ffffffff6111be16565b600d55600e5461068d908263ffffffff6111be16565b600e55505060016000555050565b6106a36113e8565b6001546001600160a01b039081169116146106f3576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff161561070857600080fd5b600c5460ff16156107375761071b611195565b1561072557600080fd5b61072d611073565b1561073757600080fd5b600c805461ff001916610100179055565b6001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031690565b600c5460009060ff16801561078a5750600654600d54105b80156107985750600a544210155b80156107a55750600b5442105b905090565b6107b26113e8565b6001546001600160a01b03908116911614610802576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600f805460ff19166001179055565b60026000541415610857576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b60026000556108646113e8565b6001546001600160a01b039081169116146108b4576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff16156108c957600080fd5b6108d1611073565b6108da57600080fd5b47811115610922576040805162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015290519081900360640190fd5b60095461093e906001600160a01b03168263ffffffff61126316565b506001600055565b60006002600054141561098e576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c54610100900460ff16156109a857600080fd5b6109b0611073565b6109b957600080fd5b6109c1610c20565b610a12576040805162461bcd60e51b815260206004820152601960248201527f436c61696d206973206e6f742079657420706f737369626c6500000000000000604482015290519081900360640190fd5b336000818152600360209081526040808320805490849055600754825163a9059cbb60e01b8152600481019690965260248601829052915190946001600160a01b039092169363a9059cbb93604480850194919392918390030190829087803b158015610a7e57600080fd5b505af1158015610a92573d6000803e3d6000fd5b505050506040513d6020811015610aa857600080fd5b5051610aef576040805162461bcd60e51b81526020600482015260116024820152704572726f72207472616e73666572696e6760781b604482015290519081900360640190fd5b9050600160005590565b4290565b60026000541415610b43576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c54610100900460ff1680610b615750610b61611195565b610bb2576040805162461bcd60e51b815260206004820152601760248201527f4e6f742063616e63656c6c6564206f72206661696c6564000000000000000000604482015290519081900360640190fd5b3360009081526002602052604090205480610c00576040805162461bcd60e51b81526020600482015260096024820152684f6e6c79206f6e636560b81b604482015290519081900360640190fd5b3360008181526002602052604081205561093e908263ffffffff61126316565b600f5460009060ff16806107a5575050601054600b5401421190565b610c446113e8565b6001546001600160a01b03908116911614610c94576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b60036020526000908152604090205481565b6001546001600160a01b031690565b610d076113e8565b6001546001600160a01b03908116911614610d57576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c5460ff1615610d6757600080fd5b600c54610100900460ff1615610d7c57600080fd5b6001600160a01b038116610d8f57600080fd5b828211610d9b57600080fd5b610dbb600854600a0a61058d60045460065461134d90919063ffffffff16565b600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d6020811015610e3057600080fd5b50511015610e6f5760405162461bcd60e51b81526004018080602001828103825260298152602001806115aa6029913960400191505060405180910390fd5b600a92909255600b55600980546001600160a01b0319166001600160a01b03909216919091179055600c805460ff19166001179055565b60026000541415610eec576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055610ef96113e8565b6001546001600160a01b03908116911614610f49576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff1615610f5e57600080fd5b610f66611073565b610f6f57600080fd5b600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916342966c689183916370a0823191602480820192602092909190829003018186803b158015610fc257600080fd5b505afa158015610fd6573d6000803e3d6000fd5b505050506040513d6020811015610fec57600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b15801561102c57600080fd5b505af1158015611040573d6000803e3d6000fd5b505060016000555050565b60006107a5600854600a0a61058d60045460065461134d90919063ffffffff16565b600d5481565b6000600654600d541015806107a55750600b5442101580156107a5575050600554600d54101590565b6110a46113e8565b6001546001600160a01b039081169116146110f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b6001600160a01b0381166111395760405162461bcd60e51b81526004018080602001828103825260268152602001806115096026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b600c5460009060ff1680156111ac5750600b544210155b80156107a5575050600554600d541090565b600082820183811015611218576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b600061121883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ec565b804710156112b8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b50509050806113485760405162461bcd60e51b815260040180806020018281038252603a81526020018061152f603a913960400191505060405180910390fd5b505050565b600061121883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611483565b60008261139e5750600061121b565b828202828482816113ab57fe5b04146112185760405162461bcd60e51b81526004018080602001828103825260218152602001806115696021913960400191505060405180910390fd5b3390565b6000818484111561147b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611440578181015183820152602001611428565b50505050905090810190601f16801561146d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836114d25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611440578181015183820152602001611428565b5060008385816114de57fe5b049594505050505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f75676820746f6b656e73207472616e73666572656420666f72207468652073616c65a264697066735822122056c0164a2824fc4aa82ba57a6e7415fc5a6e729ece8ab6a1a1ce4633a5197c3264736f6c634300060400330000000000000000000000009baf5147505b980b2674aab556a51e03b3082efe
Deployed Bytecode
0x6080604052600436106101235760003560e01c8063715018a6116100a0578063bba8bd2011610064578063bba8bd20146103e1578063e29eb836146103f6578063ec4cd0cf1461040b578063f2fde38b14610420578063f416334014610453576101e4565b8063715018a61461033057806384d24226146103455780638da5cb5b14610378578063a51fe1131461038d578063b52a5851146103cc576101e4565b80632e1a7d4d116100e75780632e1a7d4d146102b25780634e71d92d146102dc578063557ed1ba146102f1578063590e1ae3146103065780636dc7a6271461031b576101e4565b806307da68f5146101e95780631b831ead146101fe57806321df0da71461024357806322f3e2d41461027457806328dae6e31461029d576101e4565b366101e45767016345785d8a0000341015610173576040805162461bcd60e51b815260206004820152600b60248201526a09ad2dc40605c6240cae8d60ab1b604482015290519081900360640190fd5b336000908152600260205260409020546801158e460913d0000010156101d8576040805162461bcd60e51b815260206004820152601560248201527413585e080c8c08195d1a081c195c881dd85b1b195d605a1b604482015290519081900360640190fd5b6101e23334610468565b005b600080fd5b3480156101f557600080fd5b506101e261069b565b34801561020a57600080fd5b506102316004803603602081101561022157600080fd5b50356001600160a01b0316610748565b60408051918252519081900360200190f35b34801561024f57600080fd5b50610258610763565b604080516001600160a01b039092168252519081900360200190f35b34801561028057600080fd5b50610289610772565b604080519115158252519081900360200190f35b3480156102a957600080fd5b506101e26107aa565b3480156102be57600080fd5b506101e2600480360360208110156102d557600080fd5b5035610811565b3480156102e857600080fd5b50610231610946565b3480156102fd57600080fd5b50610231610af9565b34801561031257600080fd5b506101e2610afd565b34801561032757600080fd5b50610289610c20565b34801561033c57600080fd5b506101e2610c3c565b34801561035157600080fd5b506102316004803603602081101561036857600080fd5b50356001600160a01b0316610cde565b34801561038457600080fd5b50610258610cf0565b34801561039957600080fd5b506101e2600480360360608110156103b057600080fd5b50803590602081013590604001356001600160a01b0316610cff565b3480156103d857600080fd5b506101e2610ea6565b3480156103ed57600080fd5b5061023161104b565b34801561040257600080fd5b5061023161106d565b34801561041757600080fd5b50610289611073565b34801561042c57600080fd5b506101e26004803603602081101561044357600080fd5b50356001600160a01b031661109c565b34801561045f57600080fd5b50610289611195565b600260005414156104ae576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c5460ff166104c257600080fd5b600c54610100900460ff16156104d757600080fd5b6104df610772565b6104e857600080fd5b600d546000906104fe908363ffffffff6111be16565b905080600654101561056d5760006105216006548361122190919063ffffffff16565b90506000610535848363ffffffff61122116565b90506105506001600160a01b0386168363ffffffff61126316565b80935061056884600d546111be90919063ffffffff16565b925050505b6000610599600854600a0a61058d6004548661134d90919063ffffffff16565b9063ffffffff61138f16565b6001600160a01b0385166000908152600360205260409020549091506105c5908263ffffffff6111be16565b6001600160a01b03851660008181526003602090815260409182902093909355805191825291810183905280820185905290517fa8ff15eb642b39da3ab82bb74a87b76cc3e1aef2b82b70bc2a35458386db29aa9181900360600190a16001600160a01b03841660009081526002602052604090205461064b908463ffffffff6111be16565b6001600160a01b038516600090815260026020526040902055600d54610677908463ffffffff6111be16565b600d55600e5461068d908263ffffffff6111be16565b600e55505060016000555050565b6106a36113e8565b6001546001600160a01b039081169116146106f3576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff161561070857600080fd5b600c5460ff16156107375761071b611195565b1561072557600080fd5b61072d611073565b1561073757600080fd5b600c805461ff001916610100179055565b6001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031690565b600c5460009060ff16801561078a5750600654600d54105b80156107985750600a544210155b80156107a55750600b5442105b905090565b6107b26113e8565b6001546001600160a01b03908116911614610802576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600f805460ff19166001179055565b60026000541415610857576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b60026000556108646113e8565b6001546001600160a01b039081169116146108b4576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff16156108c957600080fd5b6108d1611073565b6108da57600080fd5b47811115610922576040805162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015290519081900360640190fd5b60095461093e906001600160a01b03168263ffffffff61126316565b506001600055565b60006002600054141561098e576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c54610100900460ff16156109a857600080fd5b6109b0611073565b6109b957600080fd5b6109c1610c20565b610a12576040805162461bcd60e51b815260206004820152601960248201527f436c61696d206973206e6f742079657420706f737369626c6500000000000000604482015290519081900360640190fd5b336000818152600360209081526040808320805490849055600754825163a9059cbb60e01b8152600481019690965260248601829052915190946001600160a01b039092169363a9059cbb93604480850194919392918390030190829087803b158015610a7e57600080fd5b505af1158015610a92573d6000803e3d6000fd5b505050506040513d6020811015610aa857600080fd5b5051610aef576040805162461bcd60e51b81526020600482015260116024820152704572726f72207472616e73666572696e6760781b604482015290519081900360640190fd5b9050600160005590565b4290565b60026000541415610b43576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055600c54610100900460ff1680610b615750610b61611195565b610bb2576040805162461bcd60e51b815260206004820152601760248201527f4e6f742063616e63656c6c6564206f72206661696c6564000000000000000000604482015290519081900360640190fd5b3360009081526002602052604090205480610c00576040805162461bcd60e51b81526020600482015260096024820152684f6e6c79206f6e636560b81b604482015290519081900360640190fd5b3360008181526002602052604081205561093e908263ffffffff61126316565b600f5460009060ff16806107a5575050601054600b5401421190565b610c446113e8565b6001546001600160a01b03908116911614610c94576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b60036020526000908152604090205481565b6001546001600160a01b031690565b610d076113e8565b6001546001600160a01b03908116911614610d57576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c5460ff1615610d6757600080fd5b600c54610100900460ff1615610d7c57600080fd5b6001600160a01b038116610d8f57600080fd5b828211610d9b57600080fd5b610dbb600854600a0a61058d60045460065461134d90919063ffffffff16565b600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d6020811015610e3057600080fd5b50511015610e6f5760405162461bcd60e51b81526004018080602001828103825260298152602001806115aa6029913960400191505060405180910390fd5b600a92909255600b55600980546001600160a01b0319166001600160a01b03909216919091179055600c805460ff19166001179055565b60026000541415610eec576040805162461bcd60e51b815260206004820152601f60248201526000805160206114e9833981519152604482015290519081900360640190fd5b6002600055610ef96113e8565b6001546001600160a01b03908116911614610f49576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b600c54610100900460ff1615610f5e57600080fd5b610f66611073565b610f6f57600080fd5b600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916342966c689183916370a0823191602480820192602092909190829003018186803b158015610fc257600080fd5b505afa158015610fd6573d6000803e3d6000fd5b505050506040513d6020811015610fec57600080fd5b5051604080516001600160e01b031960e085901b168152600481019290925251602480830192600092919082900301818387803b15801561102c57600080fd5b505af1158015611040573d6000803e3d6000fd5b505060016000555050565b60006107a5600854600a0a61058d60045460065461134d90919063ffffffff16565b600d5481565b6000600654600d541015806107a55750600b5442101580156107a5575050600554600d54101590565b6110a46113e8565b6001546001600160a01b039081169116146110f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061158a833981519152604482015290519081900360640190fd5b6001600160a01b0381166111395760405162461bcd60e51b81526004018080602001828103825260268152602001806115096026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b600c5460009060ff1680156111ac5750600b544210155b80156107a5575050600554600d541090565b600082820183811015611218576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b600061121883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ec565b804710156112b8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b50509050806113485760405162461bcd60e51b815260040180806020018281038252603a81526020018061152f603a913960400191505060405180910390fd5b505050565b600061121883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611483565b60008261139e5750600061121b565b828202828482816113ab57fe5b04146112185760405162461bcd60e51b81526004018080602001828103825260218152602001806115696021913960400191505060405180910390fd5b3390565b6000818484111561147b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611440578181015183820152602001611428565b50505050905090810190601f16801561146d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836114d25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611440578181015183820152602001611428565b5060008385816114de57fe5b049594505050505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f75676820746f6b656e73207472616e73666572656420666f72207468652073616c65a264697066735822122056c0164a2824fc4aa82ba57a6e7415fc5a6e729ece8ab6a1a1ce4633a5197c3264736f6c63430006040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009baf5147505b980b2674aab556a51e03b3082efe
-----Decoded View---------------
Arg [0] : _token (address): 0x9baf5147505b980B2674aaB556a51E03b3082eFe
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009baf5147505b980b2674aab556a51e03b3082efe
Deployed Bytecode Sourcemap
32713:6615:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34183:18;34170:9;:31;;34162:55;;;;;-1:-1:-1;;;34162:55:0;;;;;;;;;;;;-1:-1:-1;;;34162:55:0;;;;;;;;;;;;;;;34249:10;34236:24;;;;:12;:24;;;;;;34264:20;-1:-1:-1;34236:48:0;34228:82;;;;;-1:-1:-1;;;34228:82:0;;;;;;;;;;;;-1:-1:-1;;;34228:82:0;;;;;;;;;;;;;;;34321:27;34326:10;34338:9;34321:4;:27::i;:::-;32713:6615;;12:1:-1;9;2:12;37260:167:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37260:167:0;;;:::i;33973:143::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33973:143:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33973:143:0;-1:-1:-1;;;;;33973:143:0;;:::i;:::-;;;;;;;;;;;;;;;;33845:120;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33845:120:0;;;:::i;:::-;;;;-1:-1:-1;;;;;33845:120:0;;;;;;;;;;;;;;38520:227;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38520:227:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;36187:103;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36187:103:0;;;:::i;36364:280::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36364:280:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36364:280:0;;:::i;34427:398::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34427:398:0;;;:::i;38219:101::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38219:101:0;;;:::i;36924:308::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36924:308:0;;;:::i;34833:135::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34833:135:0;;;:::i;10915:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10915:148:0;;;:::i;32935:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32935:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32935:50:0;-1:-1:-1;;;;;32935:50:0;;:::i;10273:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10273:79:0;;;:::i;37508:572::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37508:572:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37508:572:0;;;;;;;;;;;-1:-1:-1;;;;;37508:572:0;;:::i;36652:206::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36652:206:0;;;:::i;38086:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38086:127:0;;;:::i;33369:29::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33369:29:0;;;:::i;38753:206::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38753:206: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;-1:-1;11218:244:0;-1:-1:-1;;;;;11218:244:0;;:::i;38326:188::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38326:188:0;;;:::i;34976:1203::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7780:63:0;;;;;;;;;;;;;;;7182:1;7921:7;:18;39303:7:::1;::::0;::::1;;39295:16;;12:1:-1;9::::0;2:12:::1;39295:16:0;39166:7:::2;::::0;::::2;::::0;::::2;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::2;39157:17:0;39010:10:::3;:8;:10::i;:::-;39002:19;;12:1:-1;9::::0;2:12:::3;39002:19:0;35189:14:::4;::::0;35161:25:::4;::::0;35189:26:::4;::::0;35208:6;35189:26:::4;:18;:26;:::i;:::-;35161:54;;35242:17;35232:7;;:27;35228:338;;;35327:14;35344:30;35366:7;;35344:17;:21;;:30;;;;:::i;:::-;35327:47:::0;-1:-1:-1;35389:12:0::4;35404:18;:6:::0;35327:47;35404:18:::4;:10;:18;:::i;:::-;35389:33:::0;-1:-1:-1;35437:28:0::4;-1:-1:-1::0;;;;;35437:20:0;::::4;35458:6:::0;35437:28:::4;:20;:28;:::i;:::-;35489:4;35480:13;;35528:26;35547:6;35528:14;;:18;;:26;;;;:::i;:::-;35508:46;;35228:338;;;35613:18;35634:47;35667:13;;35661:2;:19;35634:22;35647:8;;35635:6;35634:12;;:22;;;;:::i;:::-;:26:::0;:47:::4;:26;:47;:::i;:::-;-1:-1:-1::0;;;;;35777:27:0;::::4;;::::0;;;:15:::4;:27;::::0;;;;;35613:68;;-1:-1:-1;35777:43:0::4;::::0;35613:68;35777:43:::4;:31;:43;:::i;:::-;-1:-1:-1::0;;;;;35747:27:0;::::4;;::::0;;;:15:::4;:27;::::0;;;;;;;;:73;;;;35838:41;;;;;;;::::4;::::0;;;;;;;;;;;::::4;::::0;;;;;;;::::4;-1:-1:-1::0;;;;;35969:24:0;::::4;;::::0;;;:12:::4;:24;::::0;;;;;:36:::4;::::0;35998:6;35969:36:::4;:28;:36;:::i;:::-;-1:-1:-1::0;;;;;35942:24:0;::::4;;::::0;;;:12:::4;:24;::::0;;;;:63;36064:14:::4;::::0;:26:::4;::::0;36083:6;36064:26:::4;:18;:26;:::i;:::-;36047:14;:43:::0;36146:9:::4;::::0;:25:::4;::::0;36160:10;36146:25:::4;:13;:25;:::i;:::-;36134:9;:37:::0;-1:-1:-1;;7138:1:0;8100:7;:22;-1:-1:-1;;34976:1203:0:o;37260:167::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;39166:7:::1;::::0;::::1;::::0;::::1;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::1;39157:17:0;37322:7:::2;::::0;::::2;;37318:83;;;37349:10;:8;:10::i;:::-;37348:11;37340:20;;12:1:-1;9::::0;2:12:::2;37340:20:0;37378:14;:12;:14::i;:::-;37377:15;37369:24;;12:1:-1;9::::0;2:12:::2;37369:24:0;37407:7;:14:::0;;-1:-1:-1;;37407:14:0::2;;;::::0;;37260:167::o;33973:143::-;-1:-1:-1;;;;;34085:23:0;34055:7;34085:23;;;:15;:23;;;;;;;33973:143::o;33845:120::-;33942:14;;-1:-1:-1;;;;;33942:14:0;33845:120;:::o;38520:227::-;38607:7;;38575:4;;38607:7;;:42;;;;;38642:7;;38625:14;;:24;38607:42;:86;;;;;38679:14;;38660:15;:33;;38607:86;:127;;;;;38722:12;;38704:15;:30;38607:127;38591:150;;38520:227;:::o;36187:103::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;36263:12:::1;:19:::0;;-1:-1:-1;;36263:19:0::1;36278:4;36263:19;::::0;;36187:103::o;36364:280::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7780:63:0;;;;;;;;;;;;;;;7182:1;7921:7;:18;10495:12:::1;:10;:12::i;:::-;10485:6;::::0;-1:-1:-1;;;;;10485:6:0;;::::1;:22:::0;::::1;;10477:67;;;::::0;;-1:-1:-1;;;10477:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;::::1;;39166:7:::2;::::0;::::2;::::0;::::2;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::2;39157:17:0;39091:14:::3;:12;:14::i;:::-;39083:23;;12:1:-1;9::::0;2:12:::3;39083:23:0;36550:21:::4;36539:7;:32;;36531:61;;;::::0;;-1:-1:-1;;;36531:61:0;;::::4;;::::0;::::4;::::0;::::4;::::0;;;;-1:-1:-1;;;36531:61:0;;;;;;;;;;;;;::::4;;36603:14;::::0;:33:::4;::::0;-1:-1:-1;;;;;36603:14:0::4;36628:7:::0;36603:33:::4;:24;:33;:::i;:::-;-1:-1:-1::0;7138:1:0;8100:7;:22;36364:280::o;34427:398::-;34544:7;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7780:63:0;;;;;;;;;;;;;;;7182:1;7921:7;:18;39166:7:::1;::::0;::::1;::::0;::::1;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::1;39157:17:0;39091:14:::2;:12;:14::i;:::-;39083:23;;12:1:-1;9::::0;2:12:::2;39083:23:0;34572:10:::3;:8;:10::i;:::-;34564:48;;;::::0;;-1:-1:-1;;;34564:48:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;34656:10;34623:14;34640:27:::0;;;:15:::3;:27;::::0;;;;;;;;;34678:31;;;;34728:14:::3;::::0;:43;;-1:-1:-1;;;34728:43:0;;::::3;::::0;::::3;::::0;;;;;;;;;;;;34640:27;;-1:-1:-1;;;;;34728:14:0;;::::3;::::0;:23:::3;::::0;:43;;;;;34640:27;;34728:43;;;;;;;;;:14;:43;::::3;;2:2:-1::0;::::3;;;27:1;24::::0;17:12:::3;2:2;34728:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::3;77:16;74:1;67:27;5:2;34728:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::3;4:2;-1:-1:::0;34728:43:0;34720:73:::3;;;::::0;;-1:-1:-1;;;34720:73:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;34720:73:0;;;;;;;;;;;;;::::3;;34811:6:::0;-1:-1:-1;7138:1:0;8100:7;:22;34427:398;:::o;38219:101::-;38299:15;38219:101;:::o;36924:308::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7780:63:0;;;;;;;;;;;;;;;7182:1;7921:7;:18;36998:7:::1;::::0;::::1;::::0;::::1;;;::::0;:21:::1;;;37009:10;:8;:10::i;:::-;36990:57;;;::::0;;-1:-1:-1;;;36990:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37088:10;37058:14;37075:24:::0;;;:12:::1;:24;::::0;;;;;37120:10;37112:32:::1;;;::::0;;-1:-1:-1;;;37112:32:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;37112:32:0;;;;;;;;;;;;;::::1;;37168:10;37182:1;37155:24:::0;;;:12:::1;:24;::::0;;;;:28;37196::::1;::::0;37217:6;37196:28:::1;:20;:28;:::i;34833:135::-:0;34896:12;;34874:4;;34896:12;;;:64;;-1:-1:-1;;34946:13:0;;34931:12;;:28;34912:15;:48;;34833:135::o;10915:148::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;11006:6:::1;::::0;10985:40:::1;::::0;11022:1:::1;::::0;-1:-1:-1;;;;;11006:6:0::1;::::0;10985:40:::1;::::0;11022:1;;10985:40:::1;11036:6;:19:::0;;-1:-1:-1;;;;;;11036:19:0::1;::::0;;10915:148::o;32935:50::-;;;;;;;;;;;;;:::o;10273:79::-;10338:6;;-1:-1:-1;;;;;10338:6:0;10273:79;:::o;37508:572::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;39234:7:::1;::::0;::::1;;39233:8;39225:17;;12:1:-1;9::::0;2:12:::1;39225:17:0;39166:7:::2;::::0;::::2;::::0;::::2;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::2;39157:17:0;-1:-1:-1::0;;;;;37711:29:0;::::3;37703:38;;12:1:-1;9::::0;2:12:::3;37703:38:0;37772:15;37756:13;:31;37748:40;;12:1:-1;9::::0;2:12:::3;37748:40:0;37846:46;37878:13;;37872:2;:19;37846:21;37858:8;;37846:7;;:11;;:21;;;;:::i;:46::-;37803:14;::::0;:39:::3;::::0;;-1:-1:-1;;;37803:39:0;;37836:4:::3;37803:39;::::0;::::3;::::0;;;-1:-1:-1;;;;;37803:14:0;;::::3;::::0;:24:::3;::::0;:39;;;;;::::3;::::0;;;;;;;;;:14;:39;::::3;;2:2:-1::0;::::3;;;27:1;24::::0;17:12:::3;2:2;37803:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::3;77:16;74:1;67:27;5:2;37803:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::3;4:2;-1:-1:::0;37803:39:0;:89:::3;;37795:143;;;;-1:-1:-1::0;;;37795:143:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37947:14;:32:::0;;;;37986:12:::3;:28:::0;38021:14:::3;:32:::0;;-1:-1:-1;;;;;;38021:32:0::3;-1:-1:-1::0;;;;;38021:32:0;;::::3;::::0;;;::::3;::::0;;38060:7:::3;:14:::0;;-1:-1:-1;;38060:14:0::3;-1:-1:-1::0;38060:14:0::3;::::0;;37508:572::o;36652:206::-;7182:1;7788:7;;:19;;7780:63;;;;;-1:-1:-1;;;7780:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7780:63:0;;;;;;;;;;;;;;;7182:1;7921:7;:18;10495:12:::1;:10;:12::i;:::-;10485:6;::::0;-1:-1:-1;;;;;10485:6:0;;::::1;:22:::0;::::1;;10477:67;;;::::0;;-1:-1:-1;;;10477:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;::::1;;39166:7:::2;::::0;::::2;::::0;::::2;;;39165:8;39157:17;;12:1:-1;9::::0;2:12:::2;39157:17:0;39091:14:::3;:12;:14::i;:::-;39083:23;;12:1:-1;9::::0;2:12:::3;39083:23:0;36790:14:::4;::::0;36810:39:::4;::::0;;-1:-1:-1;;;36810:39:0;;36843:4:::4;36810:39;::::0;::::4;::::0;;;-1:-1:-1;;;;;36790:14:0;;::::4;::::0;:19:::4;::::0;:14;;36810:24:::4;::::0;:39;;;;;::::4;::::0;;;;;;;;;36790:14;36810:39;::::4;;2:2:-1::0;::::4;;;27:1;24::::0;17:12:::4;2:2;36810:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::4;77:16;74:1;67:27;5:2;36810:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::4;4:2;-1:-1:::0;36810:39:0;36790:60:::4;::::0;;-1:-1:-1;;;;;;36790:60:0::4;::::0;;;;;;::::4;::::0;::::4;::::0;;;;;;;;;;-1:-1:-1;;36790:60:0;;;;;;;-1:-1:-1;36790:60:0;;::::4;;2:2:-1::0;::::4;;;27:1;24::::0;17:12:::4;2:2;36790:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::4;77:16;74:1;67:27;5:2;-1:-1:::0;;7138:1:0;8100:7;:22;-1:-1:-1;;36652:206:0:o;38086:127::-;38138:7;38161:46;38193:13;;38187:2;:19;38161:21;38173:8;;38161:7;;:11;;:21;;;;:::i;33369:29::-;;;;:::o;38753:206::-;38812:4;38862:7;;38844:14;;:25;;:102;;;;38900:12;;38881:15;:31;;:64;;;;-1:-1:-1;;38934:11:0;;38916:14;;:29;;;38753:206::o;11218:244::-;10495:12;:10;:12::i;:::-;10485:6;;-1:-1:-1;;;;;10485:6:0;;;:22;;;10477:67;;;;;-1:-1:-1;;;10477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10477:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11307:22:0;::::1;11299:73;;;;-1:-1:-1::0;;;11299:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11409:6;::::0;11388:38:::1;::::0;-1:-1:-1;;;;;11388:38:0;;::::1;::::0;11409:6:::1;::::0;11388:38:::1;::::0;11409:6:::1;::::0;11388:38:::1;11437:6;:17:::0;;-1:-1:-1;;;;;;11437:17:0::1;-1:-1:-1::0;;;;;11437:17:0;;;::::1;::::0;;;::::1;::::0;;11218:244::o;38326:188::-;38413:7;;38381:4;;38413:7;;:49;;;;;38450:12;;38431:15;:31;;38413:49;:88;;;;-1:-1:-1;;38490:11:0;;38473:14;;:28;;38326:188::o;956:181::-;1014:7;1046:5;;;1070:6;;;;1062:46;;;;;-1:-1:-1;;;1062:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:1;-1:-1:-1;956:181:0;;;;;:::o;1420:136::-;1478:7;1505:43;1509:1;1512;1505:43;;;;;;;;;;;;;;;;;:3;:43::i;16457:397::-;16572:6;16547:21;:31;;16539:73;;;;;-1:-1:-1;;;16539:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16722:35;;16704:12;;-1:-1:-1;;;;;16722:14:0;;;16745:6;;16704:12;16722:35;16704:12;16722:35;16745:6;16722:14;: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;;;;-1:-1:-1;;;16768:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16457:397;;;:::o;3257:132::-;3315:7;3342:39;3346:1;3349;3342:39;;;;;;;;;;;;;;;;;:3;:39::i;2310:471::-;2368:7;2613:6;2609:47;;-1:-1:-1;2643:1:0;2636:8;;2609:47;2680:5;;;2684:1;2680;:5;:1;2704:5;;;;;:10;2696:56;;;;-1:-1:-1;;;2696:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8794:106;8882:10;8794:106;:::o;1859:192::-;1945:7;1981:12;1973:6;;;;1965:29;;;;-1:-1:-1;;;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2017:5:0;;;1859:192::o;3885:278::-;3971:7;4006:12;3999:5;3991:28;;;;-1:-1:-1;;;3991:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3991:28:0;;4030:9;4046:1;4042;:5;;;;;;;3885:278;-1:-1:-1;;;;;3885:278:0:o
Swarm Source
ipfs://56c0164a2824fc4aa82ba57a6e7415fc5a6e729ece8ab6a1a1ce4633a5197c32
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.