Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 278 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20856019 | 38 days ago | IN | 0 ETH | 0.00032991 | ||||
Approve | 19843832 | 180 days ago | IN | 0 ETH | 0.00022621 | ||||
Transfer | 19822575 | 183 days ago | IN | 0 ETH | 0.00054203 | ||||
Approve | 19801435 | 186 days ago | IN | 0 ETH | 0.0002582 | ||||
Approve | 19622999 | 211 days ago | IN | 0 ETH | 0.00068878 | ||||
Approve | 19521597 | 225 days ago | IN | 0 ETH | 0.00107416 | ||||
Approve | 19500478 | 228 days ago | IN | 0 ETH | 0.00082775 | ||||
Approve | 19498897 | 228 days ago | IN | 0 ETH | 0.00088623 | ||||
Approve | 19498879 | 228 days ago | IN | 0 ETH | 0.00094942 | ||||
Approve | 19444334 | 236 days ago | IN | 0 ETH | 0.00142757 | ||||
Approve | 19419434 | 239 days ago | IN | 0 ETH | 0.00281696 | ||||
Approve | 19419382 | 239 days ago | IN | 0 ETH | 0.00255594 | ||||
Approve | 19402294 | 242 days ago | IN | 0 ETH | 0.00239624 | ||||
Approve | 19399812 | 242 days ago | IN | 0 ETH | 0.00287076 | ||||
Transfer | 19399516 | 242 days ago | IN | 0 ETH | 0.00316597 | ||||
Transfer | 19396120 | 243 days ago | IN | 0 ETH | 0.00215922 | ||||
Approve | 19388313 | 244 days ago | IN | 0 ETH | 0.00268268 | ||||
Approve | 19387369 | 244 days ago | IN | 0 ETH | 0.00235107 | ||||
Approve | 19382232 | 244 days ago | IN | 0 ETH | 0.00237783 | ||||
Approve | 19382232 | 244 days ago | IN | 0 ETH | 0.00237783 | ||||
Approve | 19382232 | 244 days ago | IN | 0 ETH | 0.00237783 | ||||
Approve | 19382232 | 244 days ago | IN | 0 ETH | 0.00237783 | ||||
Approve | 19382186 | 244 days ago | IN | 0 ETH | 0.0024249 | ||||
Approve | 19382186 | 244 days ago | IN | 0 ETH | 0.0024249 | ||||
Approve | 19382186 | 244 days ago | IN | 0 ETH | 0.0024249 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
19500483 | 228 days ago | 0.00242018 ETH | ||||
19500483 | 228 days ago | 0.00242018 ETH | ||||
19402300 | 242 days ago | 0.00294594 ETH | ||||
19402300 | 242 days ago | 0.00294594 ETH | ||||
19382242 | 244 days ago | 0.00339343 ETH | ||||
19382242 | 244 days ago | 0.00339343 ETH | ||||
19382237 | 244 days ago | 0.00339343 ETH | ||||
19382236 | 244 days ago | 0.00339343 ETH | ||||
19382236 | 244 days ago | 0.00339343 ETH | ||||
19379697 | 245 days ago | 0.00528194 ETH | ||||
19379697 | 245 days ago | 0.00528194 ETH | ||||
19376564 | 245 days ago | 0.00737533 ETH | ||||
19376564 | 245 days ago | 0.00737533 ETH | ||||
19375634 | 245 days ago | 0.01401203 ETH | ||||
19375634 | 245 days ago | 0.01401203 ETH | ||||
19375215 | 245 days ago | 0.03044593 ETH | ||||
19375215 | 245 days ago | 0.03044593 ETH | ||||
19374361 | 246 days ago | 0.027366 ETH | ||||
19374361 | 246 days ago | 0.027366 ETH | ||||
19372852 | 246 days ago | 0.03183484 ETH | ||||
19372852 | 246 days ago | 0.03183484 ETH | ||||
19372797 | 246 days ago | 0.05233583 ETH | ||||
19372797 | 246 days ago | 0.05233583 ETH | ||||
19372716 | 246 days ago | 0.14340384 ETH | ||||
19372716 | 246 days ago | 0.14340384 ETH |
Loading...
Loading
Contract Name:
SleepyJoe
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-03 */ // SPDX-License-Identifier: MIT /** *TG: https://t.me/sleepy_portal *WEB: https://sleepy-joe.xyz/ *TWITTER: https://twitter.com/byderncoin */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract SleepyJoe is ERC20, Ownable { using SafeMath for uint256; address public constant deadAddress = address(0xdead); address public uniswapV2Pair; bool public tradingActive = false; IUniswapV2Router02 public uniswapV2Router; address public routerAddress; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; bool public swapEnabled = true; mapping(address => bool) public _isExcludedMaxTransactionAmount; uint256 public maxTransactionAmount; uint256 public maxWallet; bool public limitsInEffect = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Sleepy Joe", "BYDERN") { uint256 totalSupply = 10000000 * 1e18; routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; if (block.chainid == 56) { routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E; } else if (block.chainid == 97) { routerAddress = 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3; } else if (block.chainid == 1 || block.chainid == 4 || block.chainid == 3 || block.chainid == 5 || block.chainid == 31337) { routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; } else if(block.chainid == 11155111){ routerAddress = 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008; } else { revert(); } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( routerAddress ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); automatedMarketMakerPairs[uniswapV2Pair] = true; uint256 _buyMarketingFee = 1; uint256 _buyLiquidityFee = 0; uint256 _sellMarketingFee = 1; uint256 _sellLiquidityFee = 0; swapTokensAtAmount = (totalSupply * 5) / 1000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; buyTotalFees = buyMarketingFee + buyLiquidityFee; sellTotalFees = sellMarketingFee + sellLiquidityFee; marketingWallet = address(0x960a798fBF304982b42DeE12DAeb4d6181653D29); _excludeFromFees(owner(), true); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); limitsInEffect = true; maxTransactionAmount = 200000 * 1e18; maxWallet = 200000 * 1e18; excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); _mint(msg.sender, totalSupply); } receive() external payable {} function wakeUpJoe() public onlyOwner { tradingActive = true; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateMaxTxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxTransactionAmount = newNum * (10 ** 18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function changeBuyFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyMarketingFee + buyLiquidityFee; require(buyTotalFees <= 33); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellMarketingFee + sellLiquidityFee; require(sellTotalFees <= 33); } function _excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludeFromFees(account, excluded); emit ExcludeFromFees(account, excluded); } function addTradingPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address _marketingWallet) external onlyOwner { emit marketingWalletUpdated(_marketingWallet, marketingWallet); marketingWallet = _marketingWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && !swapping && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } uint256 maxTxAmount = maxTransactionAmount; if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value : ethAmount}( address(this), tokenAmount, 0, 0, marketingWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success,) = address(marketingWallet).call{ value : address(this).balance }(""); } function removeStuckTokens() public onlyOwner { bool success; swapTokensForEth(balanceOf(address(this))); (success,) = address(marketingWallet).call{value : address(this).balance}(""); } function forceSend() external onlyOwner { bool success; (success,) = address(marketingWallet).call{value : address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"_excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addTradingPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"changeBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wakeUpJoe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805460ff60a01b19169055600b805460ff199081166001908117909255600f805490911690911790553480156200003b575f80fd5b506040518060400160405280600a815260200169536c65657079204a6f6560b01b81525060405180604001604052806006815260200165212ca222a92760d11b81525081600390816200008f919062000770565b5060046200009e828262000770565b505050620000bb620000b5620004ec60201b60201c565b620004f0565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556a084595161401484a000000466038036200012257600880546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e179055620001f9565b466061036200015757600880546001600160a01b031916739ac64cc6e4415144c455bd8e4837fea55603e5c3179055620001f9565b4660011480620001675750466004145b80620001735750466003145b806200017f5750466005145b806200018c575046617a69145b15620001be57600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055620001f9565b4662aa36a703620001f557600880546001600160a01b03191673c532a74256d3db42d0bf7a0400fefdbad7694008179055620001f9565b5f80fd5b600854600780546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000255573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200027b919062000838565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000838565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000338573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200035e919062000838565b600680546001600160a01b0319166001600160a01b039290921691821790555f908152601960205260408120805460ff191660019081179091559081816103e8620003ab8760056200087b565b620003b791906200089b565b600a556011849055601283905560148290556015819055620003da8385620008bb565b601055601554601454620003ef9190620008bb565b601355600980546001600160a01b03191673960a798fbf304982b42dee12daeb4d6181653d29179055620004376200042f6005546001600160a01b031690565b600162000541565b6200044430600162000541565b6200045361dead600162000541565b600f805460ff19166001179055692a5a058fc295ed000000600d819055600e55620004926200048a6005546001600160a01b031690565b600162000575565b6200049f30600162000575565b620004ae61dead600162000575565b620004bb85600162000575565b600654620004d4906001600160a01b0316600162000575565b620004e03387620005a9565b505050505050620008d1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200054b6200066e565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6200057f6200066e565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620006055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620006189190620008bb565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005fc565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006fa57607f821691505b6020821081036200071957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006cc575f81815260208120601f850160051c81016020861015620007475750805b601f850160051c820191505b81811015620007685782815560010162000753565b505050505050565b81516001600160401b038111156200078c576200078c620006d1565b620007a4816200079d8454620006e5565b846200071f565b602080601f831160018114620007da575f8415620007c25750858301515b5f19600386901b1c1916600185901b17855562000768565b5f85815260208120601f198616915b828110156200080a57888601518255948401946001909101908401620007e9565b50858210156200082857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000849575f80fd5b81516001600160a01b038116811462000860575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000895576200089562000867565b92915050565b5f82620008b657634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000895576200089562000867565b6121cd80620008df5f395ff3fe6080604052600436106102dc575f3560e01c8063715018a611610189578063ab83756d116100d8578063d85ba06311610092578063f11a24d31161006d578063f11a24d31461086a578063f2fde38b1461087f578063f63743421461089e578063f8b45b05146108b3575f80fd5b8063d85ba06314610821578063dd62ed3e14610836578063e2f4560514610855575f80fd5b8063ab83756d14610761578063b62496f514610780578063bbc0c742146107ae578063c0246668146107ce578063c8c8ebe4146107ed578063d257b34f14610802575f80fd5b8063921369131161014357806395d89b411161011e57806395d89b41146106f0578063a457c2d714610704578063a9059cbb14610723578063aacebbe314610742575f80fd5b806392136913146106a8578063924de9b7146106bd57806393718976146106dc575f80fd5b8063715018a614610610578063751039fc146106245780637571336a1461063857806375f0a874146106575780637bce5a04146106765780638da5cb5b1461068b575f80fd5b806327c8f835116102455780634a62bb65116101ff57806369921a40116101da57806369921a401461058f5780636a486a8e146105ae5780636ddd1713146105c357806370a08231146105dc575f80fd5b80634a62bb65146105205780634fbee193146105395780636256d18114610570575f80fd5b806327c8f8351461047f5780632fd2184b14610494578063313ce567146104a85780633268cc56146104c357806339509351146104e257806349bd5a5e14610501575f80fd5b80631694505e116102965780631694505e146103c257806318160ddd146103f95780631a8145bb146104175780631f3fed8f1461042c57806323b872dd1461044157806327a14fc214610460575f80fd5b806302dbd8f8146102e7578063036958a21461030857806306fdde0314610327578063095ea7b31461035157806310d5de531461038057806312b77e8a146103ae575f80fd5b366102e357005b5f80fd5b3480156102f2575f80fd5b50610306610301366004611df3565b6108c8565b005b348015610313575f80fd5b50610306610322366004611df3565b6108f9565b348015610332575f80fd5b5061033b610926565b6040516103489190611e13565b60405180910390f35b34801561035c575f80fd5b5061037061036b366004611e72565b6109b6565b6040519015158152602001610348565b34801561038b575f80fd5b5061037061039a366004611e9c565b600c6020525f908152604090205460ff1681565b3480156103b9575f80fd5b506103066109cf565b3480156103cd575f80fd5b506007546103e1906001600160a01b031681565b6040516001600160a01b039091168152602001610348565b348015610404575f80fd5b506002545b604051908152602001610348565b348015610422575f80fd5b5061040960175481565b348015610437575f80fd5b5061040960165481565b34801561044c575f80fd5b5061037061045b366004611eb7565b610a31565b34801561046b575f80fd5b5061030661047a366004611ef5565b610a54565b34801561048a575f80fd5b506103e161dead81565b34801561049f575f80fd5b50610306610ab3565b3480156104b3575f80fd5b5060405160128152602001610348565b3480156104ce575f80fd5b506008546103e1906001600160a01b031681565b3480156104ed575f80fd5b506103706104fc366004611e72565b610ad0565b34801561050c575f80fd5b506006546103e1906001600160a01b031681565b34801561052b575f80fd5b50600f546103709060ff1681565b348015610544575f80fd5b50610370610553366004611e9c565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561057b575f80fd5b5061030661058a366004611ef5565b610af1565b34801561059a575f80fd5b506103066105a9366004611f1b565b610b50565b3480156105b9575f80fd5b5061040960135481565b3480156105ce575f80fd5b50600b546103709060ff1681565b3480156105e7575f80fd5b506104096105f6366004611e9c565b6001600160a01b03165f9081526020819052604090205490565b34801561061b575f80fd5b50610306610b82565b34801561062f575f80fd5b50610370610b95565b348015610643575f80fd5b50610306610652366004611f1b565b610bae565b348015610662575f80fd5b506009546103e1906001600160a01b031681565b348015610681575f80fd5b5061040960115481565b348015610696575f80fd5b506005546001600160a01b03166103e1565b3480156106b3575f80fd5b5061040960145481565b3480156106c8575f80fd5b506103066106d7366004611f4e565b610be0565b3480156106e7575f80fd5b50610306610bfb565b3480156106fb575f80fd5b5061033b610c34565b34801561070f575f80fd5b5061037061071e366004611e72565b610c43565b34801561072e575f80fd5b5061037061073d366004611e72565b610cc2565b34801561074d575f80fd5b5061030661075c366004611e9c565b610ccf565b34801561076c575f80fd5b5061030661077b366004611f1b565b610d33565b34801561078b575f80fd5b5061037061079a366004611e9c565b60196020525f908152604090205460ff1681565b3480156107b9575f80fd5b5060065461037090600160a01b900460ff1681565b3480156107d9575f80fd5b506103066107e8366004611f1b565b610dc9565b3480156107f8575f80fd5b50610409600d5481565b34801561080d575f80fd5b5061037061081c366004611ef5565b610e24565b34801561082c575f80fd5b5061040960105481565b348015610841575f80fd5b50610409610850366004611f67565b610f54565b348015610860575f80fd5b50610409600a5481565b348015610875575f80fd5b5061040960125481565b34801561088a575f80fd5b50610306610899366004611e9c565b610f7e565b3480156108a9575f80fd5b5061040960155481565b3480156108be575f80fd5b50610409600e5481565b6108d0610ff7565b601482905560158190556108e48183611fb2565b6013819055602110156108f5575f80fd5b5050565b610901610ff7565b601182905560128190556109158183611fb2565b6010819055602110156108f5575f80fd5b60606003805461093590611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461096190611fc5565b80156109ac5780601f10610983576101008083540402835291602001916109ac565b820191905f5260205f20905b81548152906001019060200180831161098f57829003601f168201915b5050505050905090565b5f336109c3818585611051565b60019150505b92915050565b6109d7610ff7565b6009546040515f916001600160a01b03169047905b5f6040518083038185875af1925050503d805f8114610a26576040519150601f19603f3d011682016040523d82523d5f602084013e610a2b565b606091505b50505050565b5f33610a3e858285611174565b610a498585856111e6565b506001949350505050565b610a5c610ff7565b670de0b6b3a76400006103e8610a7160025490565b610a7c906001611ffd565b610a869190612014565b610a909190612014565b811015610a9b575f80fd5b610aad81670de0b6b3a7640000611ffd565b600e5550565b610abb610ff7565b6006805460ff60a01b1916600160a01b179055565b5f336109c3818585610ae28383610f54565b610aec9190611fb2565b611051565b610af9610ff7565b670de0b6b3a76400006103e8610b0e60025490565b610b19906001611ffd565b610b239190612014565b610b2d9190612014565b811015610b38575f80fd5b610b4a81670de0b6b3a7640000611ffd565b600d5550565b610b58610ff7565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b610b8a610ff7565b610b935f611878565b565b5f610b9e610ff7565b50600f805460ff19169055600190565b610bb6610ff7565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b610be8610ff7565b600b805460ff1916911515919091179055565b610c03610ff7565b305f90815260208190526040812054610c1b906118c9565b6009546040516001600160a01b039091169047906109ec565b60606004805461093590611fc5565b5f3381610c508286610f54565b905083811015610cb55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610a498286868403611051565b5f336109c38185856111e6565b610cd7610ff7565b6009546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b610d3b610ff7565b6006546001600160a01b0390811690831603610dbf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cac565b6108f58282611a19565b610dd1610ff7565b610ddb8282610b50565b816001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610e18911515815260200190565b60405180910390a25050565b5f610e2d610ff7565b620186a0610e3a60025490565b610e45906001611ffd565b610e4f9190612014565b821015610ebc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cac565b6064610ec760025490565b610ed2906004611ffd565b610edc9190612014565b821115610f465760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608401610cac565b50600a81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f86610ff7565b6001600160a01b038116610feb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cac565b610ff481611878565b50565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6001600160a01b0383166110b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cac565b6001600160a01b0382166111145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cac565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61117f8484610f54565b90505f198114610a2b57818110156111d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cac565b610a2b8484848403611051565b6001600160a01b03831661120c5760405162461bcd60e51b8152600401610cac90612033565b6001600160a01b0382166112325760405162461bcd60e51b8152600401610cac90612078565b805f036112495761124483835f611a6c565b505050565b600f5460ff16156115b9576005546001600160a01b0384811691161480159061128057506005546001600160a01b03838116911614155b80156112965750600854600160a01b900460ff16155b80156112aa57506001600160a01b03821615155b80156112c157506001600160a01b03821661dead14155b156115b957600654600160a01b900460ff16611359576001600160a01b0383165f9081526018602052604090205460ff168061131457506001600160a01b0382165f9081526018602052604090205460ff165b6113595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cac565b600d546001600160a01b0384165f9081526019602052604090205460ff16801561139b57506001600160a01b0383165f908152600c602052604090205460ff16155b1561147c578082111561140e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cac565b600e546001600160a01b0384165f908152602081905260409020546114339084611fb2565b11156114775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cac565b6115b7565b6001600160a01b0383165f9081526019602052604090205460ff1680156114bb57506001600160a01b0384165f908152600c602052604090205460ff16155b1561152f57808211156114775760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cac565b6001600160a01b0383165f908152600c602052604090205460ff166115b757600e546001600160a01b0384165f908152602081905260409020546115739084611fb2565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cac565b505b305f90815260208190526040902054600a54811080159081906115de5750600b5460ff165b80156115f45750600854600160a01b900460ff16155b801561161857506001600160a01b0385165f9081526019602052604090205460ff16155b801561163c57506001600160a01b0385165f9081526018602052604090205460ff16155b801561166057506001600160a01b0384165f9081526018602052604090205460ff16155b1561168e576008805460ff60a01b1916600160a01b179055611680611b94565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526018602052604090205460ff600160a01b9092048216159116806116da57506001600160a01b0385165f9081526018602052604090205460ff165b156116e257505f5b5f8115611864576001600160a01b0386165f9081526019602052604090205460ff16801561171157505f601354115b1561179d57611736606461173060135488611d1a90919063ffffffff16565b90611d2c565b9050601354601554826117499190611ffd565b6117539190612014565b60175f8282546117639190611fb2565b90915550506013546014546117789083611ffd565b6117829190612014565b60165f8282546117929190611fb2565b909155506118469050565b6001600160a01b0387165f9081526019602052604090205460ff1680156117c557505f601054115b15611846576117e4606461173060105488611d1a90919063ffffffff16565b9050601054601254826117f79190611ffd565b6118019190612014565b60175f8282546118119190611fb2565b90915550506010546011546118269083611ffd565b6118309190612014565b60165f8282546118409190611fb2565b90915550505b801561185757611857873083611a6c565b61186181866120bb565b94505b61186f878787611a6c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106118fc576118fc6120ce565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611953573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197791906120e2565b8160018151811061198a5761198a6120ce565b6001600160a01b0392831660209182029290920101526007546119b09130911684611051565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906119e89085905f908690309042906004016120fd565b5f604051808303815f87803b1580156119ff575f80fd5b505af1158015611a11573d5f803e3d5ffd5b505050505050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a925760405162461bcd60e51b8152600401610cac90612033565b6001600160a01b038216611ab85760405162461bcd60e51b8152600401610cac90612078565b6001600160a01b0383165f9081526020819052604090205481811015611b2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cac565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a2b565b305f9081526020819052604081205490505f601654601754611bb69190611fb2565b90505f821580611bc4575081155b15611bce57505050565b600a54831115611bde57600a5492505b5f60028360175486611bf09190611ffd565b611bfa9190612014565b611c049190612014565b90505f611c118583611d37565b905047611c1d826118c9565b5f611c284783611d37565b90505f611c448761173060165485611d1a90919063ffffffff16565b90505f611c5182846120bb565b5f601781905560165590508515801590611c6a57505f81115b15611cbd57611c798682611d42565b601754604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611d07576040519150601f19603f3d011682016040523d82523d5f602084013e611d0c565b606091505b505050505050505050505050565b5f611d258284611ffd565b9392505050565b5f611d258284612014565b5f611d2582846120bb565b600754611d5a9030906001600160a01b031684611051565b60075460095460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611dc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611dec919061216c565b5050505050565b5f8060408385031215611e04575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611e3e57858101830151858201604001528201611e22565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ff4575f80fd5b5f8060408385031215611e83575f80fd5b8235611e8e81611e5e565b946020939093013593505050565b5f60208284031215611eac575f80fd5b8135611d2581611e5e565b5f805f60608486031215611ec9575f80fd5b8335611ed481611e5e565b92506020840135611ee481611e5e565b929592945050506040919091013590565b5f60208284031215611f05575f80fd5b5035919050565b80358015158114610f4f575f80fd5b5f8060408385031215611f2c575f80fd5b8235611f3781611e5e565b9150611f4560208401611f0c565b90509250929050565b5f60208284031215611f5e575f80fd5b611d2582611f0c565b5f8060408385031215611f78575f80fd5b8235611f8381611e5e565b91506020830135611f9381611e5e565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109c9576109c9611f9e565b600181811c90821680611fd957607f821691505b602082108103611ff757634e487b7160e01b5f52602260045260245ffd5b50919050565b80820281158282048414176109c9576109c9611f9e565b5f8261202e57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109c9576109c9611f9e565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120f2575f80fd5b8151611d2581611e5e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561214b5784516001600160a01b031683529383019391830191600101612126565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561217e575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122063c16ee9995f279205def1ccc4d479bf804dac79d5a9d5a09f06223863c5224a64736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102dc575f3560e01c8063715018a611610189578063ab83756d116100d8578063d85ba06311610092578063f11a24d31161006d578063f11a24d31461086a578063f2fde38b1461087f578063f63743421461089e578063f8b45b05146108b3575f80fd5b8063d85ba06314610821578063dd62ed3e14610836578063e2f4560514610855575f80fd5b8063ab83756d14610761578063b62496f514610780578063bbc0c742146107ae578063c0246668146107ce578063c8c8ebe4146107ed578063d257b34f14610802575f80fd5b8063921369131161014357806395d89b411161011e57806395d89b41146106f0578063a457c2d714610704578063a9059cbb14610723578063aacebbe314610742575f80fd5b806392136913146106a8578063924de9b7146106bd57806393718976146106dc575f80fd5b8063715018a614610610578063751039fc146106245780637571336a1461063857806375f0a874146106575780637bce5a04146106765780638da5cb5b1461068b575f80fd5b806327c8f835116102455780634a62bb65116101ff57806369921a40116101da57806369921a401461058f5780636a486a8e146105ae5780636ddd1713146105c357806370a08231146105dc575f80fd5b80634a62bb65146105205780634fbee193146105395780636256d18114610570575f80fd5b806327c8f8351461047f5780632fd2184b14610494578063313ce567146104a85780633268cc56146104c357806339509351146104e257806349bd5a5e14610501575f80fd5b80631694505e116102965780631694505e146103c257806318160ddd146103f95780631a8145bb146104175780631f3fed8f1461042c57806323b872dd1461044157806327a14fc214610460575f80fd5b806302dbd8f8146102e7578063036958a21461030857806306fdde0314610327578063095ea7b31461035157806310d5de531461038057806312b77e8a146103ae575f80fd5b366102e357005b5f80fd5b3480156102f2575f80fd5b50610306610301366004611df3565b6108c8565b005b348015610313575f80fd5b50610306610322366004611df3565b6108f9565b348015610332575f80fd5b5061033b610926565b6040516103489190611e13565b60405180910390f35b34801561035c575f80fd5b5061037061036b366004611e72565b6109b6565b6040519015158152602001610348565b34801561038b575f80fd5b5061037061039a366004611e9c565b600c6020525f908152604090205460ff1681565b3480156103b9575f80fd5b506103066109cf565b3480156103cd575f80fd5b506007546103e1906001600160a01b031681565b6040516001600160a01b039091168152602001610348565b348015610404575f80fd5b506002545b604051908152602001610348565b348015610422575f80fd5b5061040960175481565b348015610437575f80fd5b5061040960165481565b34801561044c575f80fd5b5061037061045b366004611eb7565b610a31565b34801561046b575f80fd5b5061030661047a366004611ef5565b610a54565b34801561048a575f80fd5b506103e161dead81565b34801561049f575f80fd5b50610306610ab3565b3480156104b3575f80fd5b5060405160128152602001610348565b3480156104ce575f80fd5b506008546103e1906001600160a01b031681565b3480156104ed575f80fd5b506103706104fc366004611e72565b610ad0565b34801561050c575f80fd5b506006546103e1906001600160a01b031681565b34801561052b575f80fd5b50600f546103709060ff1681565b348015610544575f80fd5b50610370610553366004611e9c565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561057b575f80fd5b5061030661058a366004611ef5565b610af1565b34801561059a575f80fd5b506103066105a9366004611f1b565b610b50565b3480156105b9575f80fd5b5061040960135481565b3480156105ce575f80fd5b50600b546103709060ff1681565b3480156105e7575f80fd5b506104096105f6366004611e9c565b6001600160a01b03165f9081526020819052604090205490565b34801561061b575f80fd5b50610306610b82565b34801561062f575f80fd5b50610370610b95565b348015610643575f80fd5b50610306610652366004611f1b565b610bae565b348015610662575f80fd5b506009546103e1906001600160a01b031681565b348015610681575f80fd5b5061040960115481565b348015610696575f80fd5b506005546001600160a01b03166103e1565b3480156106b3575f80fd5b5061040960145481565b3480156106c8575f80fd5b506103066106d7366004611f4e565b610be0565b3480156106e7575f80fd5b50610306610bfb565b3480156106fb575f80fd5b5061033b610c34565b34801561070f575f80fd5b5061037061071e366004611e72565b610c43565b34801561072e575f80fd5b5061037061073d366004611e72565b610cc2565b34801561074d575f80fd5b5061030661075c366004611e9c565b610ccf565b34801561076c575f80fd5b5061030661077b366004611f1b565b610d33565b34801561078b575f80fd5b5061037061079a366004611e9c565b60196020525f908152604090205460ff1681565b3480156107b9575f80fd5b5060065461037090600160a01b900460ff1681565b3480156107d9575f80fd5b506103066107e8366004611f1b565b610dc9565b3480156107f8575f80fd5b50610409600d5481565b34801561080d575f80fd5b5061037061081c366004611ef5565b610e24565b34801561082c575f80fd5b5061040960105481565b348015610841575f80fd5b50610409610850366004611f67565b610f54565b348015610860575f80fd5b50610409600a5481565b348015610875575f80fd5b5061040960125481565b34801561088a575f80fd5b50610306610899366004611e9c565b610f7e565b3480156108a9575f80fd5b5061040960155481565b3480156108be575f80fd5b50610409600e5481565b6108d0610ff7565b601482905560158190556108e48183611fb2565b6013819055602110156108f5575f80fd5b5050565b610901610ff7565b601182905560128190556109158183611fb2565b6010819055602110156108f5575f80fd5b60606003805461093590611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461096190611fc5565b80156109ac5780601f10610983576101008083540402835291602001916109ac565b820191905f5260205f20905b81548152906001019060200180831161098f57829003601f168201915b5050505050905090565b5f336109c3818585611051565b60019150505b92915050565b6109d7610ff7565b6009546040515f916001600160a01b03169047905b5f6040518083038185875af1925050503d805f8114610a26576040519150601f19603f3d011682016040523d82523d5f602084013e610a2b565b606091505b50505050565b5f33610a3e858285611174565b610a498585856111e6565b506001949350505050565b610a5c610ff7565b670de0b6b3a76400006103e8610a7160025490565b610a7c906001611ffd565b610a869190612014565b610a909190612014565b811015610a9b575f80fd5b610aad81670de0b6b3a7640000611ffd565b600e5550565b610abb610ff7565b6006805460ff60a01b1916600160a01b179055565b5f336109c3818585610ae28383610f54565b610aec9190611fb2565b611051565b610af9610ff7565b670de0b6b3a76400006103e8610b0e60025490565b610b19906001611ffd565b610b239190612014565b610b2d9190612014565b811015610b38575f80fd5b610b4a81670de0b6b3a7640000611ffd565b600d5550565b610b58610ff7565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b610b8a610ff7565b610b935f611878565b565b5f610b9e610ff7565b50600f805460ff19169055600190565b610bb6610ff7565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b610be8610ff7565b600b805460ff1916911515919091179055565b610c03610ff7565b305f90815260208190526040812054610c1b906118c9565b6009546040516001600160a01b039091169047906109ec565b60606004805461093590611fc5565b5f3381610c508286610f54565b905083811015610cb55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610a498286868403611051565b5f336109c38185856111e6565b610cd7610ff7565b6009546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b610d3b610ff7565b6006546001600160a01b0390811690831603610dbf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cac565b6108f58282611a19565b610dd1610ff7565b610ddb8282610b50565b816001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610e18911515815260200190565b60405180910390a25050565b5f610e2d610ff7565b620186a0610e3a60025490565b610e45906001611ffd565b610e4f9190612014565b821015610ebc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cac565b6064610ec760025490565b610ed2906004611ffd565b610edc9190612014565b821115610f465760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608401610cac565b50600a81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f86610ff7565b6001600160a01b038116610feb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cac565b610ff481611878565b50565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6001600160a01b0383166110b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cac565b6001600160a01b0382166111145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cac565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61117f8484610f54565b90505f198114610a2b57818110156111d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cac565b610a2b8484848403611051565b6001600160a01b03831661120c5760405162461bcd60e51b8152600401610cac90612033565b6001600160a01b0382166112325760405162461bcd60e51b8152600401610cac90612078565b805f036112495761124483835f611a6c565b505050565b600f5460ff16156115b9576005546001600160a01b0384811691161480159061128057506005546001600160a01b03838116911614155b80156112965750600854600160a01b900460ff16155b80156112aa57506001600160a01b03821615155b80156112c157506001600160a01b03821661dead14155b156115b957600654600160a01b900460ff16611359576001600160a01b0383165f9081526018602052604090205460ff168061131457506001600160a01b0382165f9081526018602052604090205460ff165b6113595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cac565b600d546001600160a01b0384165f9081526019602052604090205460ff16801561139b57506001600160a01b0383165f908152600c602052604090205460ff16155b1561147c578082111561140e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cac565b600e546001600160a01b0384165f908152602081905260409020546114339084611fb2565b11156114775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cac565b6115b7565b6001600160a01b0383165f9081526019602052604090205460ff1680156114bb57506001600160a01b0384165f908152600c602052604090205460ff16155b1561152f57808211156114775760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cac565b6001600160a01b0383165f908152600c602052604090205460ff166115b757600e546001600160a01b0384165f908152602081905260409020546115739084611fb2565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cac565b505b305f90815260208190526040902054600a54811080159081906115de5750600b5460ff165b80156115f45750600854600160a01b900460ff16155b801561161857506001600160a01b0385165f9081526019602052604090205460ff16155b801561163c57506001600160a01b0385165f9081526018602052604090205460ff16155b801561166057506001600160a01b0384165f9081526018602052604090205460ff16155b1561168e576008805460ff60a01b1916600160a01b179055611680611b94565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526018602052604090205460ff600160a01b9092048216159116806116da57506001600160a01b0385165f9081526018602052604090205460ff165b156116e257505f5b5f8115611864576001600160a01b0386165f9081526019602052604090205460ff16801561171157505f601354115b1561179d57611736606461173060135488611d1a90919063ffffffff16565b90611d2c565b9050601354601554826117499190611ffd565b6117539190612014565b60175f8282546117639190611fb2565b90915550506013546014546117789083611ffd565b6117829190612014565b60165f8282546117929190611fb2565b909155506118469050565b6001600160a01b0387165f9081526019602052604090205460ff1680156117c557505f601054115b15611846576117e4606461173060105488611d1a90919063ffffffff16565b9050601054601254826117f79190611ffd565b6118019190612014565b60175f8282546118119190611fb2565b90915550506010546011546118269083611ffd565b6118309190612014565b60165f8282546118409190611fb2565b90915550505b801561185757611857873083611a6c565b61186181866120bb565b94505b61186f878787611a6c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106118fc576118fc6120ce565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611953573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197791906120e2565b8160018151811061198a5761198a6120ce565b6001600160a01b0392831660209182029290920101526007546119b09130911684611051565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906119e89085905f908690309042906004016120fd565b5f604051808303815f87803b1580156119ff575f80fd5b505af1158015611a11573d5f803e3d5ffd5b505050505050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a925760405162461bcd60e51b8152600401610cac90612033565b6001600160a01b038216611ab85760405162461bcd60e51b8152600401610cac90612078565b6001600160a01b0383165f9081526020819052604090205481811015611b2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cac565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a2b565b305f9081526020819052604081205490505f601654601754611bb69190611fb2565b90505f821580611bc4575081155b15611bce57505050565b600a54831115611bde57600a5492505b5f60028360175486611bf09190611ffd565b611bfa9190612014565b611c049190612014565b90505f611c118583611d37565b905047611c1d826118c9565b5f611c284783611d37565b90505f611c448761173060165485611d1a90919063ffffffff16565b90505f611c5182846120bb565b5f601781905560165590508515801590611c6a57505f81115b15611cbd57611c798682611d42565b601754604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611d07576040519150601f19603f3d011682016040523d82523d5f602084013e611d0c565b606091505b505050505050505050505050565b5f611d258284611ffd565b9392505050565b5f611d258284612014565b5f611d2582846120bb565b600754611d5a9030906001600160a01b031684611051565b60075460095460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611dc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611dec919061216c565b5050505050565b5f8060408385031215611e04575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611e3e57858101830151858201604001528201611e22565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ff4575f80fd5b5f8060408385031215611e83575f80fd5b8235611e8e81611e5e565b946020939093013593505050565b5f60208284031215611eac575f80fd5b8135611d2581611e5e565b5f805f60608486031215611ec9575f80fd5b8335611ed481611e5e565b92506020840135611ee481611e5e565b929592945050506040919091013590565b5f60208284031215611f05575f80fd5b5035919050565b80358015158114610f4f575f80fd5b5f8060408385031215611f2c575f80fd5b8235611f3781611e5e565b9150611f4560208401611f0c565b90509250929050565b5f60208284031215611f5e575f80fd5b611d2582611f0c565b5f8060408385031215611f78575f80fd5b8235611f8381611e5e565b91506020830135611f9381611e5e565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109c9576109c9611f9e565b600181811c90821680611fd957607f821691505b602082108103611ff757634e487b7160e01b5f52602260045260245ffd5b50919050565b80820281158282048414176109c9576109c9611f9e565b5f8261202e57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109c9576109c9611f9e565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120f2575f80fd5b8151611d2581611e5e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561214b5784516001600160a01b031683529383019391830191600101612126565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561217e575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122063c16ee9995f279205def1ccc4d479bf804dac79d5a9d5a09f06223863c5224a64736f6c63430008140033
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.