ERC-20
Overview
Max Total Supply
1,000,000,000,000,000,000,000,000,000 EAT
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Balance
383,659,978,369,500,811,300,198 EATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EATTHEREUM
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract EATTHEREUM is ERC20, ERC20Burnable, Ownable { uint256 public stakingRewardRate = 100; // Example reward rate // Ethereum acquisition benchmarks uint256 public ethAcquisitionBenchmark1 = 10000000 * 10 ** 18; // Market Cap $10,000,000 uint256 public ethAcquisitionBenchmark2 = 50000000 * 10 ** 18; // Market Cap $50,000,000 uint256 public ethAcquisitionBenchmark3 = 100000000 * 10 ** 18; // Market Cap $100,000,000 uint256 public ethAcquisitionBenchmark4 = 500000000 * 10 ** 18; // Market Cap $500,000,000 uint256 public ethAcquisitionBenchmark5 = 1000000000 * 10 ** 18; // Market Cap $1,000,000,000 // Corresponding percentages of total supply to convert to ETH uint256 public ethAcquisitionPercentage1 = 1; // 1% of total supply uint256 public ethAcquisitionPercentage2 = 2; // 2% of total supply uint256 public ethAcquisitionPercentage3 = 3; // 3% of total supply uint256 public ethAcquisitionPercentage4 = 5; // 5% of total supply uint256 public ethAcquisitionPercentage5 = 10; // 10% of total supply address public uniswapRouterAddress; address public sushiswapRouterAddress; address public backupRouterAddress; mapping(address => uint256) public stakingBalance; mapping(address => uint256) public stakingTimestamp; mapping(address => bool) public hasStaked; IUniswapV2Router02 public uniswapRouter; IUniswapV2Router02 public sushiswapRouter; IUniswapV2Router02 public backupRouter; // Developer vesting details struct VestingSchedule { uint256 totalAmount; uint256 releasedAmount; uint256 releaseTime; } mapping(address => VestingSchedule) public vestingSchedules; event TokensReleased(address beneficiary, uint256 amount); constructor( uint256 initialSupply, address _uniswapRouterAddress, address _sushiswapRouterAddress, address _backupRouterAddress, address owner, address developer, uint256 developerAmount, uint256 releaseTime ) ERC20("EAT-THEREUM", "EAT") Ownable(owner) { _mint(msg.sender, initialSupply); uniswapRouter = IUniswapV2Router02(_uniswapRouterAddress); sushiswapRouter = IUniswapV2Router02(_sushiswapRouterAddress); backupRouter = IUniswapV2Router02(_backupRouterAddress); // Initialize vesting schedule for the developer vestingSchedules[developer] = VestingSchedule({ totalAmount: developerAmount, releasedAmount: 0, releaseTime: releaseTime }); } function releaseTokens(address beneficiary) public { VestingSchedule storage schedule = vestingSchedules[beneficiary]; require(block.timestamp >= schedule.releaseTime, "Tokens are not yet vested"); require(schedule.releasedAmount < schedule.totalAmount, "All tokens have been released"); uint256 unreleased = schedule.totalAmount - schedule.releasedAmount; schedule.releasedAmount = schedule.totalAmount; _mint(beneficiary, unreleased); emit TokensReleased(beneficiary, unreleased); } function stake(uint256 _amount) public { require(_amount > 0, "Amount must be greater than 0"); transfer(address(this), _amount); stakingBalance[msg.sender] += _amount; stakingTimestamp[msg.sender] = block.timestamp; hasStaked[msg.sender] = true; } function withdrawStaked() public { uint256 balance = stakingBalance[msg.sender]; require(balance > 0, "No staked balance"); uint256 reward = calculateReward(msg.sender); _mint(msg.sender, reward); stakingBalance[msg.sender] = 0; stakingTimestamp[msg.sender] = 0; hasStaked[msg.sender] = false; transfer(msg.sender, balance); } function calculateReward(address _staker) public view returns (uint256) { uint256 stakedTime = block.timestamp - stakingTimestamp[_staker]; uint256 reward = (stakingBalance[_staker] * stakingRewardRate * stakedTime) / (100 * 365 days); return reward; } function burnTokens(uint256 _amount) public onlyOwner { _burn(address(this), _amount); } function acquireETH() public onlyOwner { uint256 balance = balanceOf(address(this)); if (balance >= ethAcquisitionBenchmark1) { executeAcquisition(ethAcquisitionPercentage1); } else if (balance >= ethAcquisitionBenchmark2) { executeAcquisition(ethAcquisitionPercentage2); } else if (balance >= ethAcquisitionBenchmark3) { executeAcquisition(ethAcquisitionPercentage3); } else if (balance >= ethAcquisitionBenchmark4) { executeAcquisition(ethAcquisitionPercentage4); } else if (balance >= ethAcquisitionBenchmark5) { executeAcquisition(ethAcquisitionPercentage5); } else { revert("Not enough tokens to acquire ETH at any benchmark"); } } function executeAcquisition(uint256 percentage) internal { uint256 ethAmount = (totalSupply() * percentage) / 100; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), ethAmount); try uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( ethAmount, 0, path, address(this), block.timestamp ) { // Swap successful } catch { // Fallback to SushiSwap try sushiswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( ethAmount, 0, path, address(this), block.timestamp ) { // Swap successful } catch { // Fallback to Backup backupRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( ethAmount, 0, path, address(this), block.timestamp ); } } } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
pragma solidity >=0.6.2; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswapRouterAddress","type":"address"},{"internalType":"address","name":"_sushiswapRouterAddress","type":"address"},{"internalType":"address","name":"_backupRouterAddress","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"developer","type":"address"},{"internalType":"uint256","name":"developerAmount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensReleased","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"},{"inputs":[],"name":"acquireETH","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"backupRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"backupRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionBenchmark1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionBenchmark2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionBenchmark3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionBenchmark4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionBenchmark5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionPercentage1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionPercentage2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionPercentage3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionPercentage4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethAcquisitionPercentage5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasStaked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"releaseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushiswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushiswapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingSchedules","outputs":[{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"releasedAmount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStaked","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260646006556a084595161401484a0000006007556a295be96e640669720000006008556a52b7d2dcc80cd2e40000006009556b019d971e4fe8401e74000000600a556b033b2e3c9fd0803ce8000000600b556001600c556002600d556003600e556005600f55600a60105534801561007a575f80fd5b506040516132c83803806132c8833981810160405281019061009c91906106f1565b836040518060400160405280600b81526020017f4541542d5448455245554d0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4541540000000000000000000000000000000000000000000000000000000000815250816003908161011891906109d3565b50806004908161012891906109d3565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361019b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101929190610ab1565b60405180910390fd5b6101aa816102ff60201b60201c565b506101bb33896103c260201b60201c565b8660175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460195f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052808381526020015f815260200182815250601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015560208201518160010155604082015181600201559050505050505050505050610b87565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610432575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016104299190610ab1565b60405180910390fd5b6104435f838361044760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610497578060025f82825461048b9190610af7565b92505081905550610565565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610520578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161051793929190610b39565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105ac578060025f82825403925050819055506105f6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106539190610b6e565b60405180910390a3505050565b5f80fd5b5f819050919050565b61067681610664565b8114610680575f80fd5b50565b5f815190506106918161066d565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106c082610697565b9050919050565b6106d0816106b6565b81146106da575f80fd5b50565b5f815190506106eb816106c7565b92915050565b5f805f805f805f80610100898b03121561070e5761070d610660565b5b5f61071b8b828c01610683565b985050602061072c8b828c016106dd565b975050604061073d8b828c016106dd565b965050606061074e8b828c016106dd565b955050608061075f8b828c016106dd565b94505060a06107708b828c016106dd565b93505060c06107818b828c01610683565b92505060e06107928b828c01610683565b9150509295985092959890939650565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061081d57607f821691505b6020821081036108305761082f6107d9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610857565b61089c8683610857565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6108d76108d26108cd84610664565b6108b4565b610664565b9050919050565b5f819050919050565b6108f0836108bd565b6109046108fc826108de565b848454610863565b825550505050565b5f90565b61091861090c565b6109238184846108e7565b505050565b5b818110156109465761093b5f82610910565b600181019050610929565b5050565b601f82111561098b5761095c81610836565b61096584610848565b81016020851015610974578190505b61098861098085610848565b830182610928565b50505b505050565b5f82821c905092915050565b5f6109ab5f1984600802610990565b1980831691505092915050565b5f6109c3838361099c565b9150826002028217905092915050565b6109dc826107a2565b67ffffffffffffffff8111156109f5576109f46107ac565b5b6109ff8254610806565b610a0a82828561094a565b5f60209050601f831160018114610a3b575f8415610a29578287015190505b610a3385826109b8565b865550610a9a565b601f198416610a4986610836565b5f5b82811015610a7057848901518255600182019150602085019450602081019050610a4b565b86831015610a8d5784890151610a89601f89168261099c565b8355505b6001600288020188555050505b505050505050565b610aab816106b6565b82525050565b5f602082019050610ac45f830184610aa2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b0182610664565b9150610b0c83610664565b9250828201905080821115610b2457610b23610aca565b5b92915050565b610b3381610664565b82525050565b5f606082019050610b4c5f830186610aa2565b610b596020830185610b2a565b610b666040830184610b2a565b949350505050565b5f602082019050610b815f830184610b2a565b92915050565b61273480610b945f395ff3fe608060405234801561000f575f80fd5b5060043610610251575f3560e01c8063715018a611610144578063a9059cbb116100c1578063d82e396211610085578063d82e3962146106a7578063dd62ed3e146106d7578063e76861be14610707578063e9240c2d14610725578063f2fde38b14610743578063fdb20ccb1461075f57610251565b8063a9059cbb146105ed578063ad2dd5f81461061d578063b046e5211461063b578063b87bbebd14610659578063c93c8f341461067757610251565b80638da5cb5b116101085780638da5cb5b1461055b5780638f0794fe1461057957806395d89b41146105a957806397612868146105c7578063a694fc3a146105d157610251565b8063715018a6146104f1578063735de9f7146104fb57806379cc67901461051957806387b0be48146105355780638c56e6e61461055157610251565b8063274f042b116101d257806345bc78ab1161019657806345bc78ab146104395780634f3fc2df146104695780635836eb04146104875780636d1b229d146104a557806370a08231146104c157610251565b8063274f042b146103a55780632d51d2c4146103c3578063313ce567146103e157806337222340146103ff57806342966c681461041d57610251565b806319d0a9a21161021957806319d0a9a2146102fd5780631af1f7e21461031b57806320ca3c7f14610339578063223c37a91461035757806323b872dd1461037557610251565b806306fdde0314610255578063095ea7b3146102735780631365c998146102a357806318160ddd146102c157806319b4193c146102df575b5f80fd5b61025d610791565b60405161026a9190611dd2565b60405180910390f35b61028d60048036038101906102889190611e83565b610821565b60405161029a9190611edb565b60405180910390f35b6102ab610843565b6040516102b89190611f03565b60405180910390f35b6102c9610849565b6040516102d69190611f03565b60405180910390f35b6102e7610852565b6040516102f49190611f03565b60405180910390f35b610305610858565b6040516103129190611f2b565b60405180910390f35b61032361087d565b6040516103309190611f2b565b60405180910390f35b6103416108a2565b60405161034e9190611f2b565b60405180910390f35b61035f6108c7565b60405161036c9190611f03565b60405180910390f35b61038f600480360381019061038a9190611f44565b6108cd565b60405161039c9190611edb565b60405180910390f35b6103ad6108fb565b6040516103ba9190611f03565b60405180910390f35b6103cb610901565b6040516103d89190611f03565b60405180910390f35b6103e9610907565b6040516103f69190611faf565b60405180910390f35b61040761090f565b6040516104149190612023565b60405180910390f35b6104376004803603810190610432919061203c565b610934565b005b610453600480360381019061044e9190612067565b610948565b6040516104609190611f03565b60405180910390f35b61047161095d565b60405161047e9190611f03565b60405180910390f35b61048f610963565b60405161049c9190611f03565b60405180910390f35b6104bf60048036038101906104ba919061203c565b610969565b005b6104db60048036038101906104d69190612067565b61097e565b6040516104e89190611f03565b60405180910390f35b6104f96109c3565b005b6105036109d6565b6040516105109190612023565b60405180910390f35b610533600480360381019061052e9190611e83565b6109fb565b005b61054f600480360381019061054a9190612067565b610a1b565b005b610559610b55565b005b610563610cd5565b6040516105709190611f2b565b60405180910390f35b610593600480360381019061058e9190612067565b610cfd565b6040516105a09190611f03565b60405180910390f35b6105b1610d12565b6040516105be9190611dd2565b60405180910390f35b6105cf610da2565b005b6105eb60048036038101906105e6919061203c565b610e75565b005b61060760048036038101906106029190611e83565b610faf565b6040516106149190611edb565b60405180910390f35b610625610fd1565b6040516106329190611f03565b60405180910390f35b610643610fd7565b6040516106509190611f03565b60405180910390f35b610661610fdd565b60405161066e9190611f03565b60405180910390f35b610691600480360381019061068c9190612067565b610fe3565b60405161069e9190611edb565b60405180910390f35b6106c160048036038101906106bc9190612067565b611000565b6040516106ce9190611f03565b60405180910390f35b6106f160048036038101906106ec9190612092565b6110bf565b6040516106fe9190611f03565b60405180910390f35b61070f611141565b60405161071c9190611f03565b60405180910390f35b61072d611147565b60405161073a9190612023565b60405180910390f35b61075d60048036038101906107589190612067565b61116c565b005b61077960048036038101906107749190612067565b6111f0565b604051610788939291906120d0565b60405180910390f35b6060600380546107a090612132565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90612132565b80156108175780601f106107ee57610100808354040283529160200191610817565b820191905f5260205f20905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b5f8061082b611216565b905061083881858561121d565b600191505092915050565b600c5481565b5f600254905090565b600e5481565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b5f806108d7611216565b90506108e485828561122f565b6108ef8585856112c1565b60019150509392505050565b600b5481565b60105481565b5f6012905090565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094561093f611216565b826113b1565b50565b6014602052805f5260405f205f915090505481565b60065481565b60095481565b610971611430565b61097b30826113b1565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109cb611430565b6109d45f6114b7565b565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0d82610a07611216565b8361122f565b610a1782826113b1565b5050565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090508060020154421015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906121ac565b60405180910390fd5b805f0154816001015410610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612214565b60405180910390fd5b5f8160010154825f0154610aff919061225f565b9050815f01548260010181905550610b17838261157a565b7fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df931798382604051610b48929190612292565b60405180910390a1505050565b5f60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f8111610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90612303565b60405180910390fd5b5f610be233611000565b9050610bee338261157a565b5f60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610cd03383610faf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6015602052805f5260405f205f915090505481565b606060048054610d2190612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90612132565b8015610d985780601f10610d6f57610100808354040283529160200191610d98565b820191905f5260205f20905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b610daa611430565b5f610db43061097e565b90506007548110610dcf57610dca600c546115f9565b610e72565b6008548110610de857610de3600d546115f9565b610e71565b6009548110610e0157610dfc600e546115f9565b610e70565b600a548110610e1a57610e15600f546115f9565b610e6f565b600b548110610e3357610e2e6010546115f9565b610e6e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612391565b60405180910390fd5b5b5b5b5b50565b5f8111610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906123f9565b60405180910390fd5b610ec13082610faf565b508060145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f0e9190612417565b925050819055504260155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600160165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f80610fb9611216565b9050610fc68185856112c1565b600191505092915050565b600d5481565b600a5481565b600f5481565b6016602052805f5260405f205f915054906101000a900460ff1681565b5f8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20544261104b919061225f565b90505f63bbf81e008260065460145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461109f919061244a565b6110a9919061244a565b6110b391906124b8565b90508092505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611174611430565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111db9190611f2b565b60405180910390fd5b6111ed816114b7565b50565b601a602052805f5260405f205f91509050805f0154908060010154908060020154905083565b5f33905090565b61122a838383600161197a565b505050565b5f61123a84846110bf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112bb57818110156112ac578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112a3939291906124e8565b60405180910390fd5b6112ba84848484035f61197a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611331575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113289190611f2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113989190611f2b565b60405180910390fd5b6113ac838383611b49565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611421575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114189190611f2b565b60405180910390fd5b61142c825f83611b49565b5050565b611438611216565b73ffffffffffffffffffffffffffffffffffffffff16611456610cd5565b73ffffffffffffffffffffffffffffffffffffffff16146114b557611479611216565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114ac9190611f2b565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ea575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115e19190611f2b565b60405180910390fd5b6115f55f8383611b49565b5050565b5f606482611605610849565b61160f919061244a565b61161991906124b8565b90505f600267ffffffffffffffff8111156116375761163661251d565b5b6040519080825280602002602001820160405280156116655781602001602082028036833780820191505090505b50905030815f8151811061167c5761167b61254a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611720573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611744919061258b565b816001815181106117585761175761254a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506117be3060175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461121d565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016118209594939291906126a6565b5f604051808303815f87803b158015611837575f80fd5b505af1925050508015611848575060015b6119745760185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016118ae9594939291906126a6565b5f604051808303815f87803b1580156118c5575f80fd5b505af19250505080156118d6575060015b61196e5760195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161193c9594939291906126a6565b5f604051808303815f87803b158015611953575f80fd5b505af1158015611965573d5f803e3d5ffd5b5050505061196f565b5b611975565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ea575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119e19190611f2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a519190611f2b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611b43578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b3a9190611f03565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b99578060025f828254611b8d9190612417565b92505081905550611c67565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c22578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611c19939291906124e8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cae578060025f8282540392505081905550611cf8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d559190611f03565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611da482611d62565b611dae8185611d6c565b9350611dbe818560208601611d7c565b611dc781611d8a565b840191505092915050565b5f6020820190508181035f830152611dea8184611d9a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e1f82611df6565b9050919050565b611e2f81611e15565b8114611e39575f80fd5b50565b5f81359050611e4a81611e26565b92915050565b5f819050919050565b611e6281611e50565b8114611e6c575f80fd5b50565b5f81359050611e7d81611e59565b92915050565b5f8060408385031215611e9957611e98611df2565b5b5f611ea685828601611e3c565b9250506020611eb785828601611e6f565b9150509250929050565b5f8115159050919050565b611ed581611ec1565b82525050565b5f602082019050611eee5f830184611ecc565b92915050565b611efd81611e50565b82525050565b5f602082019050611f165f830184611ef4565b92915050565b611f2581611e15565b82525050565b5f602082019050611f3e5f830184611f1c565b92915050565b5f805f60608486031215611f5b57611f5a611df2565b5b5f611f6886828701611e3c565b9350506020611f7986828701611e3c565b9250506040611f8a86828701611e6f565b9150509250925092565b5f60ff82169050919050565b611fa981611f94565b82525050565b5f602082019050611fc25f830184611fa0565b92915050565b5f819050919050565b5f611feb611fe6611fe184611df6565b611fc8565b611df6565b9050919050565b5f611ffc82611fd1565b9050919050565b5f61200d82611ff2565b9050919050565b61201d81612003565b82525050565b5f6020820190506120365f830184612014565b92915050565b5f6020828403121561205157612050611df2565b5b5f61205e84828501611e6f565b91505092915050565b5f6020828403121561207c5761207b611df2565b5b5f61208984828501611e3c565b91505092915050565b5f80604083850312156120a8576120a7611df2565b5b5f6120b585828601611e3c565b92505060206120c685828601611e3c565b9150509250929050565b5f6060820190506120e35f830186611ef4565b6120f06020830185611ef4565b6120fd6040830184611ef4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061214957607f821691505b60208210810361215c5761215b612105565b5b50919050565b7f546f6b656e7320617265206e6f742079657420766573746564000000000000005f82015250565b5f612196601983611d6c565b91506121a182612162565b602082019050919050565b5f6020820190508181035f8301526121c38161218a565b9050919050565b7f416c6c20746f6b656e732068617665206265656e2072656c65617365640000005f82015250565b5f6121fe601d83611d6c565b9150612209826121ca565b602082019050919050565b5f6020820190508181035f83015261222b816121f2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61226982611e50565b915061227483611e50565b925082820390508181111561228c5761228b612232565b5b92915050565b5f6040820190506122a55f830185611f1c565b6122b26020830184611ef4565b9392505050565b7f4e6f207374616b65642062616c616e63650000000000000000000000000000005f82015250565b5f6122ed601183611d6c565b91506122f8826122b9565b602082019050919050565b5f6020820190508181035f83015261231a816122e1565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f2061637175697265204554485f8201527f20617420616e792062656e63686d61726b000000000000000000000000000000602082015250565b5f61237b603183611d6c565b915061238682612321565b604082019050919050565b5f6020820190508181035f8301526123a88161236f565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6123e3601d83611d6c565b91506123ee826123af565b602082019050919050565b5f6020820190508181035f830152612410816123d7565b9050919050565b5f61242182611e50565b915061242c83611e50565b925082820190508082111561244457612443612232565b5b92915050565b5f61245482611e50565b915061245f83611e50565b925082820261246d81611e50565b9150828204841483151761248457612483612232565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124c282611e50565b91506124cd83611e50565b9250826124dd576124dc61248b565b5b828204905092915050565b5f6060820190506124fb5f830186611f1c565b6125086020830185611ef4565b6125156040830184611ef4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061258581611e26565b92915050565b5f602082840312156125a05761259f611df2565b5b5f6125ad84828501612577565b91505092915050565b5f819050919050565b5f6125d96125d46125cf846125b6565b611fc8565b611e50565b9050919050565b6125e9816125bf565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61262181611e15565b82525050565b5f6126328383612618565b60208301905092915050565b5f602082019050919050565b5f612654826125ef565b61265e81856125f9565b935061266983612609565b805f5b838110156126995781516126808882612627565b975061268b8361263e565b92505060018101905061266c565b5085935050505092915050565b5f60a0820190506126b95f830188611ef4565b6126c660208301876125e0565b81810360408301526126d8818661264a565b90506126e76060830185611f1c565b6126f46080830184611ef4565b969550505050505056fea26469706673582212200df2c4537bb66d758897a68aac2aff593eaf9fca4800243b586f935c441126bf64736f6c634300081a00330000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e0000000000000000000000008a473f612f3b4084d99888a5204004bb9abc417400000000000000000000000056e6a6bdcea6666beb932a2933895c628d85aef5000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000685acb80
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610251575f3560e01c8063715018a611610144578063a9059cbb116100c1578063d82e396211610085578063d82e3962146106a7578063dd62ed3e146106d7578063e76861be14610707578063e9240c2d14610725578063f2fde38b14610743578063fdb20ccb1461075f57610251565b8063a9059cbb146105ed578063ad2dd5f81461061d578063b046e5211461063b578063b87bbebd14610659578063c93c8f341461067757610251565b80638da5cb5b116101085780638da5cb5b1461055b5780638f0794fe1461057957806395d89b41146105a957806397612868146105c7578063a694fc3a146105d157610251565b8063715018a6146104f1578063735de9f7146104fb57806379cc67901461051957806387b0be48146105355780638c56e6e61461055157610251565b8063274f042b116101d257806345bc78ab1161019657806345bc78ab146104395780634f3fc2df146104695780635836eb04146104875780636d1b229d146104a557806370a08231146104c157610251565b8063274f042b146103a55780632d51d2c4146103c3578063313ce567146103e157806337222340146103ff57806342966c681461041d57610251565b806319d0a9a21161021957806319d0a9a2146102fd5780631af1f7e21461031b57806320ca3c7f14610339578063223c37a91461035757806323b872dd1461037557610251565b806306fdde0314610255578063095ea7b3146102735780631365c998146102a357806318160ddd146102c157806319b4193c146102df575b5f80fd5b61025d610791565b60405161026a9190611dd2565b60405180910390f35b61028d60048036038101906102889190611e83565b610821565b60405161029a9190611edb565b60405180910390f35b6102ab610843565b6040516102b89190611f03565b60405180910390f35b6102c9610849565b6040516102d69190611f03565b60405180910390f35b6102e7610852565b6040516102f49190611f03565b60405180910390f35b610305610858565b6040516103129190611f2b565b60405180910390f35b61032361087d565b6040516103309190611f2b565b60405180910390f35b6103416108a2565b60405161034e9190611f2b565b60405180910390f35b61035f6108c7565b60405161036c9190611f03565b60405180910390f35b61038f600480360381019061038a9190611f44565b6108cd565b60405161039c9190611edb565b60405180910390f35b6103ad6108fb565b6040516103ba9190611f03565b60405180910390f35b6103cb610901565b6040516103d89190611f03565b60405180910390f35b6103e9610907565b6040516103f69190611faf565b60405180910390f35b61040761090f565b6040516104149190612023565b60405180910390f35b6104376004803603810190610432919061203c565b610934565b005b610453600480360381019061044e9190612067565b610948565b6040516104609190611f03565b60405180910390f35b61047161095d565b60405161047e9190611f03565b60405180910390f35b61048f610963565b60405161049c9190611f03565b60405180910390f35b6104bf60048036038101906104ba919061203c565b610969565b005b6104db60048036038101906104d69190612067565b61097e565b6040516104e89190611f03565b60405180910390f35b6104f96109c3565b005b6105036109d6565b6040516105109190612023565b60405180910390f35b610533600480360381019061052e9190611e83565b6109fb565b005b61054f600480360381019061054a9190612067565b610a1b565b005b610559610b55565b005b610563610cd5565b6040516105709190611f2b565b60405180910390f35b610593600480360381019061058e9190612067565b610cfd565b6040516105a09190611f03565b60405180910390f35b6105b1610d12565b6040516105be9190611dd2565b60405180910390f35b6105cf610da2565b005b6105eb60048036038101906105e6919061203c565b610e75565b005b61060760048036038101906106029190611e83565b610faf565b6040516106149190611edb565b60405180910390f35b610625610fd1565b6040516106329190611f03565b60405180910390f35b610643610fd7565b6040516106509190611f03565b60405180910390f35b610661610fdd565b60405161066e9190611f03565b60405180910390f35b610691600480360381019061068c9190612067565b610fe3565b60405161069e9190611edb565b60405180910390f35b6106c160048036038101906106bc9190612067565b611000565b6040516106ce9190611f03565b60405180910390f35b6106f160048036038101906106ec9190612092565b6110bf565b6040516106fe9190611f03565b60405180910390f35b61070f611141565b60405161071c9190611f03565b60405180910390f35b61072d611147565b60405161073a9190612023565b60405180910390f35b61075d60048036038101906107589190612067565b61116c565b005b61077960048036038101906107749190612067565b6111f0565b604051610788939291906120d0565b60405180910390f35b6060600380546107a090612132565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90612132565b80156108175780601f106107ee57610100808354040283529160200191610817565b820191905f5260205f20905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b5f8061082b611216565b905061083881858561121d565b600191505092915050565b600c5481565b5f600254905090565b600e5481565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b5f806108d7611216565b90506108e485828561122f565b6108ef8585856112c1565b60019150509392505050565b600b5481565b60105481565b5f6012905090565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094561093f611216565b826113b1565b50565b6014602052805f5260405f205f915090505481565b60065481565b60095481565b610971611430565b61097b30826113b1565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109cb611430565b6109d45f6114b7565b565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0d82610a07611216565b8361122f565b610a1782826113b1565b5050565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090508060020154421015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906121ac565b60405180910390fd5b805f0154816001015410610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612214565b60405180910390fd5b5f8160010154825f0154610aff919061225f565b9050815f01548260010181905550610b17838261157a565b7fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df931798382604051610b48929190612292565b60405180910390a1505050565b5f60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f8111610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90612303565b60405180910390fd5b5f610be233611000565b9050610bee338261157a565b5f60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610cd03383610faf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6015602052805f5260405f205f915090505481565b606060048054610d2190612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90612132565b8015610d985780601f10610d6f57610100808354040283529160200191610d98565b820191905f5260205f20905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b610daa611430565b5f610db43061097e565b90506007548110610dcf57610dca600c546115f9565b610e72565b6008548110610de857610de3600d546115f9565b610e71565b6009548110610e0157610dfc600e546115f9565b610e70565b600a548110610e1a57610e15600f546115f9565b610e6f565b600b548110610e3357610e2e6010546115f9565b610e6e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612391565b60405180910390fd5b5b5b5b5b50565b5f8111610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906123f9565b60405180910390fd5b610ec13082610faf565b508060145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f0e9190612417565b925050819055504260155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600160165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f80610fb9611216565b9050610fc68185856112c1565b600191505092915050565b600d5481565b600a5481565b600f5481565b6016602052805f5260405f205f915054906101000a900460ff1681565b5f8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20544261104b919061225f565b90505f63bbf81e008260065460145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461109f919061244a565b6110a9919061244a565b6110b391906124b8565b90508092505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611174611430565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111db9190611f2b565b60405180910390fd5b6111ed816114b7565b50565b601a602052805f5260405f205f91509050805f0154908060010154908060020154905083565b5f33905090565b61122a838383600161197a565b505050565b5f61123a84846110bf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112bb57818110156112ac578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112a3939291906124e8565b60405180910390fd5b6112ba84848484035f61197a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611331575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113289190611f2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113989190611f2b565b60405180910390fd5b6113ac838383611b49565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611421575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114189190611f2b565b60405180910390fd5b61142c825f83611b49565b5050565b611438611216565b73ffffffffffffffffffffffffffffffffffffffff16611456610cd5565b73ffffffffffffffffffffffffffffffffffffffff16146114b557611479611216565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114ac9190611f2b565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ea575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115e19190611f2b565b60405180910390fd5b6115f55f8383611b49565b5050565b5f606482611605610849565b61160f919061244a565b61161991906124b8565b90505f600267ffffffffffffffff8111156116375761163661251d565b5b6040519080825280602002602001820160405280156116655781602001602082028036833780820191505090505b50905030815f8151811061167c5761167b61254a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611720573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611744919061258b565b816001815181106117585761175761254a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506117be3060175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461121d565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016118209594939291906126a6565b5f604051808303815f87803b158015611837575f80fd5b505af1925050508015611848575060015b6119745760185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016118ae9594939291906126a6565b5f604051808303815f87803b1580156118c5575f80fd5b505af19250505080156118d6575060015b61196e5760195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161193c9594939291906126a6565b5f604051808303815f87803b158015611953575f80fd5b505af1158015611965573d5f803e3d5ffd5b5050505061196f565b5b611975565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ea575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119e19190611f2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a519190611f2b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611b43578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b3a9190611f03565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b99578060025f828254611b8d9190612417565b92505081905550611c67565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c22578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611c19939291906124e8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cae578060025f8282540392505081905550611cf8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d559190611f03565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611da482611d62565b611dae8185611d6c565b9350611dbe818560208601611d7c565b611dc781611d8a565b840191505092915050565b5f6020820190508181035f830152611dea8184611d9a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e1f82611df6565b9050919050565b611e2f81611e15565b8114611e39575f80fd5b50565b5f81359050611e4a81611e26565b92915050565b5f819050919050565b611e6281611e50565b8114611e6c575f80fd5b50565b5f81359050611e7d81611e59565b92915050565b5f8060408385031215611e9957611e98611df2565b5b5f611ea685828601611e3c565b9250506020611eb785828601611e6f565b9150509250929050565b5f8115159050919050565b611ed581611ec1565b82525050565b5f602082019050611eee5f830184611ecc565b92915050565b611efd81611e50565b82525050565b5f602082019050611f165f830184611ef4565b92915050565b611f2581611e15565b82525050565b5f602082019050611f3e5f830184611f1c565b92915050565b5f805f60608486031215611f5b57611f5a611df2565b5b5f611f6886828701611e3c565b9350506020611f7986828701611e3c565b9250506040611f8a86828701611e6f565b9150509250925092565b5f60ff82169050919050565b611fa981611f94565b82525050565b5f602082019050611fc25f830184611fa0565b92915050565b5f819050919050565b5f611feb611fe6611fe184611df6565b611fc8565b611df6565b9050919050565b5f611ffc82611fd1565b9050919050565b5f61200d82611ff2565b9050919050565b61201d81612003565b82525050565b5f6020820190506120365f830184612014565b92915050565b5f6020828403121561205157612050611df2565b5b5f61205e84828501611e6f565b91505092915050565b5f6020828403121561207c5761207b611df2565b5b5f61208984828501611e3c565b91505092915050565b5f80604083850312156120a8576120a7611df2565b5b5f6120b585828601611e3c565b92505060206120c685828601611e3c565b9150509250929050565b5f6060820190506120e35f830186611ef4565b6120f06020830185611ef4565b6120fd6040830184611ef4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061214957607f821691505b60208210810361215c5761215b612105565b5b50919050565b7f546f6b656e7320617265206e6f742079657420766573746564000000000000005f82015250565b5f612196601983611d6c565b91506121a182612162565b602082019050919050565b5f6020820190508181035f8301526121c38161218a565b9050919050565b7f416c6c20746f6b656e732068617665206265656e2072656c65617365640000005f82015250565b5f6121fe601d83611d6c565b9150612209826121ca565b602082019050919050565b5f6020820190508181035f83015261222b816121f2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61226982611e50565b915061227483611e50565b925082820390508181111561228c5761228b612232565b5b92915050565b5f6040820190506122a55f830185611f1c565b6122b26020830184611ef4565b9392505050565b7f4e6f207374616b65642062616c616e63650000000000000000000000000000005f82015250565b5f6122ed601183611d6c565b91506122f8826122b9565b602082019050919050565b5f6020820190508181035f83015261231a816122e1565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f2061637175697265204554485f8201527f20617420616e792062656e63686d61726b000000000000000000000000000000602082015250565b5f61237b603183611d6c565b915061238682612321565b604082019050919050565b5f6020820190508181035f8301526123a88161236f565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6123e3601d83611d6c565b91506123ee826123af565b602082019050919050565b5f6020820190508181035f830152612410816123d7565b9050919050565b5f61242182611e50565b915061242c83611e50565b925082820190508082111561244457612443612232565b5b92915050565b5f61245482611e50565b915061245f83611e50565b925082820261246d81611e50565b9150828204841483151761248457612483612232565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124c282611e50565b91506124cd83611e50565b9250826124dd576124dc61248b565b5b828204905092915050565b5f6060820190506124fb5f830186611f1c565b6125086020830185611ef4565b6125156040830184611ef4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061258581611e26565b92915050565b5f602082840312156125a05761259f611df2565b5b5f6125ad84828501612577565b91505092915050565b5f819050919050565b5f6125d96125d46125cf846125b6565b611fc8565b611e50565b9050919050565b6125e9816125bf565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61262181611e15565b82525050565b5f6126328383612618565b60208301905092915050565b5f602082019050919050565b5f612654826125ef565b61265e81856125f9565b935061266983612609565b805f5b838110156126995781516126808882612627565b975061268b8361263e565b92505060018101905061266c565b5085935050505092915050565b5f60a0820190506126b95f830188611ef4565b6126c660208301876125e0565b81810360408301526126d8818661264a565b90506126e76060830185611f1c565b6126f46080830184611ef4565b969550505050505056fea26469706673582212200df2c4537bb66d758897a68aac2aff593eaf9fca4800243b586f935c441126bf64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e0000000000000000000000008a473f612f3b4084d99888a5204004bb9abc417400000000000000000000000056e6a6bdcea6666beb932a2933895c628d85aef5000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000685acb80
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000000000000000000000
Arg [1] : _uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _sushiswapRouterAddress (address): 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
Arg [3] : _backupRouterAddress (address): 0x10ED43C718714eb63d5aA57B78B54704E256024E
Arg [4] : owner (address): 0x8a473F612F3b4084D99888A5204004BB9AbC4174
Arg [5] : developer (address): 0x56E6a6bDCea6666bEB932a2933895c628d85aeF5
Arg [6] : developerAmount (uint256): 200000000000000000000000000
Arg [7] : releaseTime (uint256): 1750780800
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f
Arg [3] : 00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e
Arg [4] : 0000000000000000000000008a473f612f3b4084d99888a5204004bb9abc4174
Arg [5] : 00000000000000000000000056e6a6bdcea6666beb932a2933895c628d85aef5
Arg [6] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [7] : 00000000000000000000000000000000000000000000000000000000685acb80
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.