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 305 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20917270 | 39 days ago | IN | 0 ETH | 0.00043169 | ||||
Approve | 20655837 | 75 days ago | IN | 0 ETH | 0.00005248 | ||||
Approve | 20437671 | 106 days ago | IN | 0 ETH | 0.00013298 | ||||
Approve | 20323741 | 122 days ago | IN | 0 ETH | 0.00023572 | ||||
Approve | 20142422 | 147 days ago | IN | 0 ETH | 0.00023903 | ||||
Approve | 20103289 | 153 days ago | IN | 0 ETH | 0.00020844 | ||||
Transfer | 20103282 | 153 days ago | IN | 0 ETH | 0.0002519 | ||||
Approve | 20072754 | 157 days ago | IN | 0 ETH | 0.0003585 | ||||
Approve | 20072400 | 157 days ago | IN | 0 ETH | 0.00028681 | ||||
Approve | 20072394 | 157 days ago | IN | 0 ETH | 0.00028946 | ||||
Approve | 20069914 | 157 days ago | IN | 0 ETH | 0.00117467 | ||||
Approve | 20069860 | 157 days ago | IN | 0 ETH | 0.00123935 | ||||
Approve | 20069859 | 157 days ago | IN | 0 ETH | 0.0013018 | ||||
Approve | 20069747 | 157 days ago | IN | 0 ETH | 0.00134096 | ||||
Approve | 20069637 | 157 days ago | IN | 0 ETH | 0.00159121 | ||||
Approve | 20069567 | 157 days ago | IN | 0 ETH | 0.00178685 | ||||
Approve | 20069544 | 157 days ago | IN | 0 ETH | 0.0017342 | ||||
Approve | 20069541 | 157 days ago | IN | 0 ETH | 0.00153136 | ||||
Approve | 20069495 | 157 days ago | IN | 0 ETH | 0.00206689 | ||||
Approve | 20069481 | 157 days ago | IN | 0 ETH | 0.0014992 | ||||
Approve | 20069472 | 157 days ago | IN | 0 ETH | 0.00146802 | ||||
Approve | 20069467 | 157 days ago | IN | 0 ETH | 0.00142686 | ||||
Approve | 20069467 | 157 days ago | IN | 0 ETH | 0.00142686 | ||||
Approve | 20069466 | 157 days ago | IN | 0 ETH | 0.0016541 | ||||
Approve | 20069465 | 157 days ago | IN | 0 ETH | 0.00155432 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GoalChain
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://goalchain.io // Twitter: https://x.com/GoalChain_io // Telegram: https://t.me/GoalChain_io // Docs: https://docs.goalchain.io // SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract GoalChain is Ownable, ERC20 { event EnableTrading(); event DisableMaxWallet(); event SwapBack(uint256 amount); event ExcludedFromFees(address newAddress); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 private constant SELL_TAX = 5; uint256 private constant BUY_TAX = 3; uint256 private constant _totalSupply = 100_000_000 * 10 ** 18; address public immutable pair; address public immutable feeAddress; bool private _trandingEnable = false; bool private limit = true; bool private _swaping = false; uint256 private _maxWallet = _totalSupply / 200; mapping(address => bool) private _isExcludedFromFees; constructor( address _feeAddress ) ERC20("GoalChain", "GC") Ownable(_msgSender()) { feeAddress = _feeAddress; pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } modifier onSwap() { _swaping = true; _; _swaping = false; } function burn(uint256 value) external { _burn(_msgSender(), value); } function enableTrading() external onlyOwner { require(!_trandingEnable, "enabled!"); _trandingEnable = true; emit EnableTrading(); } function disableMaxWallet() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; emit DisableMaxWallet(); } function _update( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._update(from, to, amount); return; } require(_trandingEnable, "Trading is not open"); if (limit && to != pair) { require( balanceOf(to) + amount < _maxWallet, "MaxWalletAmountExceeded" ); } if (to == pair && balanceOf(address(this)) >= amount) { swapBack(amount); } uint256 _fees; if (to == pair) { _fees = (amount * SELL_TAX) / 100; } else if (from == pair) { _fees = (amount * BUY_TAX) / 100; } if (_fees > 0) { super._update(from, address(this), _fees); amount = amount - _fees; } super._update(from, to, amount); } function swapBack(uint256 amount) private onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); if (amount > _totalSupply / 200) { amount = _totalSupply / 200; } _approve(address(this), address(router), amount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, feeAddress, block.timestamp ); emit SwapBack(amount); } function isExcludedFromFees(address wallet) external view returns (bool) { return _isExcludedFromFees[wallet]; } function excludedFromFees(address wallet, bool value) external onlyOwner { _isExcludedFromFees[wallet] = value; emit ExcludedFromFees(wallet); } }
// 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) (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/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); } } } }
// 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); }
// 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; } }
pragma solidity >=0.5.0; 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; }
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); }
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; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"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":[],"name":"DisableMaxWallet","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"ExcludedFromFees","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":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","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":[{"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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromFees","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":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
60e0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506000600660006101000a81548160ff0219169083151502179055506001600660016101000a81548160ff0219169083151502179055506000600660026101000a81548160ff02191690831515021790555060c86a52b7d2dcc80cd2e4000000620000b6919062001210565b600755348015620000c657600080fd5b5060405162003c1838038062003c188339818101604052810190620000ec9190620012b2565b6040518060400160405280600981526020017f476f616c436861696e00000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4743000000000000000000000000000000000000000000000000000000000000815250620001686200057560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001dd5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001d49190620012f5565b60405180910390fd5b620001ee816200057d60201b60201c565b50816004908162000200919062001582565b50806005908162000212919062001582565b5050508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd9190620012b2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d9190620012b2565b6040518363ffffffff1660e01b81526004016200036c92919062001669565b6020604051808303816000875af11580156200038c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b29190620012b2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160086000620003fb6200057560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200052a620005126200057560201b60201c565b6a52b7d2dcc80cd2e40000006200064160201b60201c565b6200056e6200053e6200057560201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006ce60201b60201c565b5062001a5b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006b65760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006ad9190620012f5565b60405180910390fd5b620006ca60008383620006e860201b60201c565b5050565b620006e3838383600162000aa060201b60201c565b505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200078a5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620007ff575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620007fe575060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620008175750600660029054906101000a900460ff165b1562000836576200083083838362000c8060201b60201c565b62000a9b565b600660009054906101000a900460ff1662000888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087f90620016f7565b60405180910390fd5b600660019054906101000a900460ff168015620008d3575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200093e5760075481620008ee8462000eb360201b60201c565b620008fa919062001719565b106200093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093490620017a4565b60405180910390fd5b5b60a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156200098c575080620009893062000eb360201b60201c565b10155b15620009a457620009a38162000efc60201b60201c565b5b600060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a01576064600583620009ed9190620017c6565b620009f9919062001210565b905062000a58565b60a05173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000a5757606460038362000a489190620017c6565b62000a54919062001210565b90505b5b600081111562000a865762000a7584308362000c8060201b60201c565b808262000a83919062001811565b91505b62000a9984848462000c8060201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000b155760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000b0c9190620012f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b8a5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000b819190620012f5565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000c7a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000c7191906200185d565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000cd657806003600082825462000cc9919062001719565b9250508190555062000dae565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000d66578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000d5d939291906200187a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000df9578060036000828254039250508190555062000e47565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ea691906200185d565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600660026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562000f375762000f366200131d565b5b60405190808252806020026020018201604052801562000f665781602001602082028036833780820191505090505b509050308160008151811062000f815762000f80620018b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001009573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200102f9190620012b2565b81600181518110620010465762001045620018b7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e40000006200109a919062001210565b821115620010bf5760c86a52b7d2dcc80cd2e4000000620010bc919062001210565b91505b620010d43060805184620006ce60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008460c051426040518663ffffffff1660e01b81526004016200111c959493929190620019f7565b600060405180830381600087803b1580156200113757600080fd5b505af11580156200114c573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05826040516200118191906200185d565b60405180910390a1506000600660026101000a81548160ff02191690831515021790555050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200121d82620011a8565b91506200122a83620011a8565b9250826200123d576200123c620011b2565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200127a826200124d565b9050919050565b6200128c816200126d565b81146200129857600080fd5b50565b600081519050620012ac8162001281565b92915050565b600060208284031215620012cb57620012ca62001248565b5b6000620012db848285016200129b565b91505092915050565b620012ef816200126d565b82525050565b60006020820190506200130c6000830184620012e4565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200139457607f821691505b602082108103620013aa57620013a96200134c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620014147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620013d5565b620014208683620013d5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620014636200145d6200145784620011a8565b62001438565b620011a8565b9050919050565b6000819050919050565b6200147f8362001442565b620014976200148e826200146a565b848454620013e2565b825550505050565b600090565b620014ae6200149f565b620014bb81848462001474565b505050565b5b81811015620014e357620014d7600082620014a4565b600181019050620014c1565b5050565b601f8211156200153257620014fc81620013b0565b6200150784620013c5565b8101602085101562001517578190505b6200152f6200152685620013c5565b830182620014c0565b50505b505050565b600082821c905092915050565b6000620015576000198460080262001537565b1980831691505092915050565b600062001572838362001544565b9150826002028217905092915050565b6200158d8262001312565b67ffffffffffffffff811115620015a957620015a86200131d565b5b620015b582546200137b565b620015c2828285620014e7565b600060209050601f831160018114620015fa5760008415620015e5578287015190505b620015f1858262001564565b86555062001661565b601f1984166200160a86620013b0565b60005b8281101562001634578489015182556001820191506020850194506020810190506200160d565b8683101562001654578489015162001650601f89168262001544565b8355505b6001600288020188555050505b505050505050565b6000604082019050620016806000830185620012e4565b6200168f6020830184620012e4565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000620016df60138362001696565b9150620016ec82620016a7565b602082019050919050565b600060208201905081810360008301526200171281620016d0565b9050919050565b60006200172682620011a8565b91506200173383620011a8565b92508282019050808211156200174e576200174d620011e1565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565646564000000000000000000600082015250565b60006200178c60178362001696565b9150620017998262001754565b602082019050919050565b60006020820190508181036000830152620017bf816200177d565b9050919050565b6000620017d382620011a8565b9150620017e083620011a8565b9250828202620017f081620011a8565b915082820484148315176200180a5762001809620011e1565b5b5092915050565b60006200181e82620011a8565b91506200182b83620011a8565b9250828203905081811115620018465762001845620011e1565b5b92915050565b6200185781620011a8565b82525050565b60006020820190506200187460008301846200184c565b92915050565b6000606082019050620018916000830186620012e4565b620018a060208301856200184c565b620018af60408301846200184c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000620019116200190b6200190584620018e6565b62001438565b620011a8565b9050919050565b6200192381620018f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001960816200126d565b82525050565b600062001974838362001955565b60208301905092915050565b6000602082019050919050565b60006200199a8262001929565b620019a6818562001934565b9350620019b38362001945565b8060005b83811015620019ea578151620019ce888262001966565b9750620019db8362001980565b925050600181019050620019b7565b5085935050505092915050565b600060a08201905062001a0e60008301886200184c565b62001a1d602083018762001918565b818103604083015262001a3181866200198d565b905062001a426060830185620012e4565b62001a5160808301846200184c565b9695505050505050565b60805160a05160c05161214e62001aca6000396000818161051d015261172e01526000818161076401528181610f5701528181610fae0152818161109201528181611140015281816111b401526112270152600081816115ac015281816116c701526116ee015261214e6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a8aa1b3111610071578063a8aa1b31146102e6578063a9059cbb14610304578063a98a934a14610334578063dd62ed3e1461033e578063f2fde38b1461036e57610121565b806370a0823114610266578063715018a6146102965780638a8c523c146102a05780638da5cb5b146102aa57806395d89b41146102c857610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806341275358146101fc57806342966c681461021a5780634fbee1931461023657610121565b806306fdde0314610126578063095ea7b31461014457806316697fc51461017457806318160ddd14610190575b600080fd5b61012e61038a565b60405161013b9190611886565b60405180910390f35b61015e60048036038101906101599190611941565b61041c565b60405161016b919061199c565b60405180910390f35b61018e600480360381019061018991906119e3565b61043f565b005b6101986104d9565b6040516101a59190611a32565b60405180910390f35b6101c860048036038101906101c39190611a4d565b6104e3565b6040516101d5919061199c565b60405180910390f35b6101e6610512565b6040516101f39190611abc565b60405180910390f35b61020461051b565b6040516102119190611ae6565b60405180910390f35b610234600480360381019061022f9190611b01565b61053f565b005b610250600480360381019061024b9190611b2e565b610553565b60405161025d919061199c565b60405180910390f35b610280600480360381019061027b9190611b2e565b6105a9565b60405161028d9190611a32565b60405180910390f35b61029e6105f2565b005b6102a8610606565b005b6102b26106a7565b6040516102bf9190611ae6565b60405180910390f35b6102d06106d0565b6040516102dd9190611886565b60405180910390f35b6102ee610762565b6040516102fb9190611ae6565b60405180910390f35b61031e60048036038101906103199190611941565b610786565b60405161032b919061199c565b60405180910390f35b61033c6107a9565b005b61035860048036038101906103539190611b5b565b61085b565b6040516103659190611a32565b60405180910390f35b61038860048036038101906103839190611b2e565b6108e2565b005b60606004805461039990611bca565b80601f01602080910402602001604051908101604052809291908181526020018280546103c590611bca565b80156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b5050505050905090565b600080610427610968565b9050610434818585610970565b600191505092915050565b610447610982565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1e743d18ee757088c78546c6b0a43fb84f878ae18ee230eb2ec2c4624e991e39826040516104cd9190611ae6565b60405180910390a15050565b6000600354905090565b6000806104ee610968565b90506104fb858285610a09565b610506858585610a9d565b60019150509392505050565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b61055061054a610968565b82610b91565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105fa610982565b6106046000610c13565b565b61060e610982565b600660009054906101000a900460ff161561065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590611c47565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106df90611bca565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611bca565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610791610968565b905061079e818585610a9d565b600191505092915050565b6107b1610982565b600660019054906101000a900460ff16610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f790611cb3565b60405180910390fd5b6000600660016101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e40000006007819055507f87b9d824278d29a8487bd08543f7f1a702d1cb4dc5f9b761434b5e45d525160360405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ea610982565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361095c5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109539190611ae6565b60405180910390fd5b61096581610c13565b50565b600033905090565b61097d8383836001610cd7565b505050565b61098a610968565b73ffffffffffffffffffffffffffffffffffffffff166109a86106a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109cb610968565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109fe9190611ae6565b60405180910390fd5b565b6000610a15848461085b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a975781811015610a87578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a7e93929190611cd3565b60405180910390fd5b610a9684848484036000610cd7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0f5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b069190611ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b815760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b789190611ae6565b60405180910390fd5b610b8c838383610eae565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c035760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bfa9190611ae6565b60405180910390fd5b610c0f82600083610eae565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d495760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d409190611ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbb5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610db29190611ae6565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610ea8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e9f9190611a32565b60405180910390a35b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f4f5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610ffe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ffd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110155750600660029054906101000a900460ff165b1561102a576110258383836112ca565b6112c5565b600660009054906101000a900460ff16611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611d56565b60405180910390fd5b600660019054906101000a900460ff1680156110e157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561113e57600754816110f3846105a9565b6110fd9190611da5565b1061113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490611e25565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156111a157508061119e306105a9565b10155b156111b0576111af816114f2565b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112255760646005836112149190611e45565b61121e9190611eb6565b9050611295565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112945760646003836112879190611e45565b6112919190611eb6565b90505b5b60008111156112b8576112a98430836112ca565b80826112b59190611ee7565b91505b6112c38484846112ca565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131c5780600360008282546113109190611da5565b925050819055506113f1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113a093929190611cd3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143a5780600360008282540392505081905550611488565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e59190611a32565b60405180910390a3505050565b6001600660026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561152a57611529611f1b565b5b6040519080825280602002602001820160405280156115585781602001602082028036833780820191505090505b50905030816000815181106115705761156f611f4a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611f8e565b8160018151811061164d5761164c611f4a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e400000061169f9190611eb6565b8211156116c15760c86a52b7d2dcc80cd2e40000006116be9190611eb6565b91505b6116ec307f000000000000000000000000000000000000000000000000000000000000000084610970565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b815260040161176e9594939291906120be565b600060405180830381600087803b15801561178857600080fd5b505af115801561179c573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05826040516117cf9190611a32565b60405180910390a1506000600660026101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611830578082015181840152602081019050611815565b60008484015250505050565b6000601f19601f8301169050919050565b6000611858826117f6565b6118628185611801565b9350611872818560208601611812565b61187b8161183c565b840191505092915050565b600060208201905081810360008301526118a0818461184d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118d8826118ad565b9050919050565b6118e8816118cd565b81146118f357600080fd5b50565b600081359050611905816118df565b92915050565b6000819050919050565b61191e8161190b565b811461192957600080fd5b50565b60008135905061193b81611915565b92915050565b60008060408385031215611958576119576118a8565b5b6000611966858286016118f6565b92505060206119778582860161192c565b9150509250929050565b60008115159050919050565b61199681611981565b82525050565b60006020820190506119b1600083018461198d565b92915050565b6119c081611981565b81146119cb57600080fd5b50565b6000813590506119dd816119b7565b92915050565b600080604083850312156119fa576119f96118a8565b5b6000611a08858286016118f6565b9250506020611a19858286016119ce565b9150509250929050565b611a2c8161190b565b82525050565b6000602082019050611a476000830184611a23565b92915050565b600080600060608486031215611a6657611a656118a8565b5b6000611a74868287016118f6565b9350506020611a85868287016118f6565b9250506040611a968682870161192c565b9150509250925092565b600060ff82169050919050565b611ab681611aa0565b82525050565b6000602082019050611ad16000830184611aad565b92915050565b611ae0816118cd565b82525050565b6000602082019050611afb6000830184611ad7565b92915050565b600060208284031215611b1757611b166118a8565b5b6000611b258482850161192c565b91505092915050565b600060208284031215611b4457611b436118a8565b5b6000611b52848285016118f6565b91505092915050565b60008060408385031215611b7257611b716118a8565b5b6000611b80858286016118f6565b9250506020611b91858286016118f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611be257607f821691505b602082108103611bf557611bf4611b9b565b5b50919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611c31600883611801565b9150611c3c82611bfb565b602082019050919050565b60006020820190508181036000830152611c6081611c24565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000611c9d601683611801565b9150611ca882611c67565b602082019050919050565b60006020820190508181036000830152611ccc81611c90565b9050919050565b6000606082019050611ce86000830186611ad7565b611cf56020830185611a23565b611d026040830184611a23565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611d40601383611801565b9150611d4b82611d0a565b602082019050919050565b60006020820190508181036000830152611d6f81611d33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611db08261190b565b9150611dbb8361190b565b9250828201905080821115611dd357611dd2611d76565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565646564000000000000000000600082015250565b6000611e0f601783611801565b9150611e1a82611dd9565b602082019050919050565b60006020820190508181036000830152611e3e81611e02565b9050919050565b6000611e508261190b565b9150611e5b8361190b565b9250828202611e698161190b565b91508282048414831517611e8057611e7f611d76565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ec18261190b565b9150611ecc8361190b565b925082611edc57611edb611e87565b5b828204905092915050565b6000611ef28261190b565b9150611efd8361190b565b9250828203905081811115611f1557611f14611d76565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611f88816118df565b92915050565b600060208284031215611fa457611fa36118a8565b5b6000611fb284828501611f79565b91505092915050565b6000819050919050565b6000819050919050565b6000611fea611fe5611fe084611fbb565b611fc5565b61190b565b9050919050565b611ffa81611fcf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612035816118cd565b82525050565b6000612047838361202c565b60208301905092915050565b6000602082019050919050565b600061206b82612000565b612075818561200b565b93506120808361201c565b8060005b838110156120b1578151612098888261203b565b97506120a383612053565b925050600181019050612084565b5085935050505092915050565b600060a0820190506120d36000830188611a23565b6120e06020830187611ff1565b81810360408301526120f28186612060565b90506121016060830185611ad7565b61210e6080830184611a23565b969550505050505056fea26469706673582212203caf0349764d027f72482cdfabf3186e2ca03ed0b36270e370f5e96bb32f4b5364736f6c63430008170033000000000000000000000000725b5b35779360911a77b7574f30050626b15cb1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a8aa1b3111610071578063a8aa1b31146102e6578063a9059cbb14610304578063a98a934a14610334578063dd62ed3e1461033e578063f2fde38b1461036e57610121565b806370a0823114610266578063715018a6146102965780638a8c523c146102a05780638da5cb5b146102aa57806395d89b41146102c857610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806341275358146101fc57806342966c681461021a5780634fbee1931461023657610121565b806306fdde0314610126578063095ea7b31461014457806316697fc51461017457806318160ddd14610190575b600080fd5b61012e61038a565b60405161013b9190611886565b60405180910390f35b61015e60048036038101906101599190611941565b61041c565b60405161016b919061199c565b60405180910390f35b61018e600480360381019061018991906119e3565b61043f565b005b6101986104d9565b6040516101a59190611a32565b60405180910390f35b6101c860048036038101906101c39190611a4d565b6104e3565b6040516101d5919061199c565b60405180910390f35b6101e6610512565b6040516101f39190611abc565b60405180910390f35b61020461051b565b6040516102119190611ae6565b60405180910390f35b610234600480360381019061022f9190611b01565b61053f565b005b610250600480360381019061024b9190611b2e565b610553565b60405161025d919061199c565b60405180910390f35b610280600480360381019061027b9190611b2e565b6105a9565b60405161028d9190611a32565b60405180910390f35b61029e6105f2565b005b6102a8610606565b005b6102b26106a7565b6040516102bf9190611ae6565b60405180910390f35b6102d06106d0565b6040516102dd9190611886565b60405180910390f35b6102ee610762565b6040516102fb9190611ae6565b60405180910390f35b61031e60048036038101906103199190611941565b610786565b60405161032b919061199c565b60405180910390f35b61033c6107a9565b005b61035860048036038101906103539190611b5b565b61085b565b6040516103659190611a32565b60405180910390f35b61038860048036038101906103839190611b2e565b6108e2565b005b60606004805461039990611bca565b80601f01602080910402602001604051908101604052809291908181526020018280546103c590611bca565b80156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b5050505050905090565b600080610427610968565b9050610434818585610970565b600191505092915050565b610447610982565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1e743d18ee757088c78546c6b0a43fb84f878ae18ee230eb2ec2c4624e991e39826040516104cd9190611ae6565b60405180910390a15050565b6000600354905090565b6000806104ee610968565b90506104fb858285610a09565b610506858585610a9d565b60019150509392505050565b60006012905090565b7f000000000000000000000000725b5b35779360911a77b7574f30050626b15cb181565b61055061054a610968565b82610b91565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105fa610982565b6106046000610c13565b565b61060e610982565b600660009054906101000a900460ff161561065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590611c47565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106df90611bca565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611bca565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b7f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b81565b600080610791610968565b905061079e818585610a9d565b600191505092915050565b6107b1610982565b600660019054906101000a900460ff16610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f790611cb3565b60405180910390fd5b6000600660016101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e40000006007819055507f87b9d824278d29a8487bd08543f7f1a702d1cb4dc5f9b761434b5e45d525160360405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ea610982565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361095c5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109539190611ae6565b60405180910390fd5b61096581610c13565b50565b600033905090565b61097d8383836001610cd7565b505050565b61098a610968565b73ffffffffffffffffffffffffffffffffffffffff166109a86106a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109cb610968565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109fe9190611ae6565b60405180910390fd5b565b6000610a15848461085b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a975781811015610a87578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a7e93929190611cd3565b60405180910390fd5b610a9684848484036000610cd7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0f5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b069190611ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b815760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b789190611ae6565b60405180910390fd5b610b8c838383610eae565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c035760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bfa9190611ae6565b60405180910390fd5b610c0f82600083610eae565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d495760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d409190611ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbb5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610db29190611ae6565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610ea8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e9f9190611a32565b60405180910390a35b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f4f5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610ffe57507f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ffd57507f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110155750600660029054906101000a900460ff165b1561102a576110258383836112ca565b6112c5565b600660009054906101000a900460ff16611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611d56565b60405180910390fd5b600660019054906101000a900460ff1680156110e157507f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561113e57600754816110f3846105a9565b6110fd9190611da5565b1061113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490611e25565b60405180910390fd5b5b7f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156111a157508061119e306105a9565b10155b156111b0576111af816114f2565b5b60007f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112255760646005836112149190611e45565b61121e9190611eb6565b9050611295565b7f000000000000000000000000e71ded2492695bfabf71a50466a8798b36ac625b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112945760646003836112879190611e45565b6112919190611eb6565b90505b5b60008111156112b8576112a98430836112ca565b80826112b59190611ee7565b91505b6112c38484846112ca565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131c5780600360008282546113109190611da5565b925050819055506113f1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113a093929190611cd3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143a5780600360008282540392505081905550611488565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e59190611a32565b60405180910390a3505050565b6001600660026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561152a57611529611f1b565b5b6040519080825280602002602001820160405280156115585781602001602082028036833780820191505090505b50905030816000815181106115705761156f611f4a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611f8e565b8160018151811061164d5761164c611f4a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e400000061169f9190611eb6565b8211156116c15760c86a52b7d2dcc80cd2e40000006116be9190611eb6565b91505b6116ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610970565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f000000000000000000000000725b5b35779360911a77b7574f30050626b15cb1426040518663ffffffff1660e01b815260040161176e9594939291906120be565b600060405180830381600087803b15801561178857600080fd5b505af115801561179c573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05826040516117cf9190611a32565b60405180910390a1506000600660026101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611830578082015181840152602081019050611815565b60008484015250505050565b6000601f19601f8301169050919050565b6000611858826117f6565b6118628185611801565b9350611872818560208601611812565b61187b8161183c565b840191505092915050565b600060208201905081810360008301526118a0818461184d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118d8826118ad565b9050919050565b6118e8816118cd565b81146118f357600080fd5b50565b600081359050611905816118df565b92915050565b6000819050919050565b61191e8161190b565b811461192957600080fd5b50565b60008135905061193b81611915565b92915050565b60008060408385031215611958576119576118a8565b5b6000611966858286016118f6565b92505060206119778582860161192c565b9150509250929050565b60008115159050919050565b61199681611981565b82525050565b60006020820190506119b1600083018461198d565b92915050565b6119c081611981565b81146119cb57600080fd5b50565b6000813590506119dd816119b7565b92915050565b600080604083850312156119fa576119f96118a8565b5b6000611a08858286016118f6565b9250506020611a19858286016119ce565b9150509250929050565b611a2c8161190b565b82525050565b6000602082019050611a476000830184611a23565b92915050565b600080600060608486031215611a6657611a656118a8565b5b6000611a74868287016118f6565b9350506020611a85868287016118f6565b9250506040611a968682870161192c565b9150509250925092565b600060ff82169050919050565b611ab681611aa0565b82525050565b6000602082019050611ad16000830184611aad565b92915050565b611ae0816118cd565b82525050565b6000602082019050611afb6000830184611ad7565b92915050565b600060208284031215611b1757611b166118a8565b5b6000611b258482850161192c565b91505092915050565b600060208284031215611b4457611b436118a8565b5b6000611b52848285016118f6565b91505092915050565b60008060408385031215611b7257611b716118a8565b5b6000611b80858286016118f6565b9250506020611b91858286016118f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611be257607f821691505b602082108103611bf557611bf4611b9b565b5b50919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611c31600883611801565b9150611c3c82611bfb565b602082019050919050565b60006020820190508181036000830152611c6081611c24565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000611c9d601683611801565b9150611ca882611c67565b602082019050919050565b60006020820190508181036000830152611ccc81611c90565b9050919050565b6000606082019050611ce86000830186611ad7565b611cf56020830185611a23565b611d026040830184611a23565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611d40601383611801565b9150611d4b82611d0a565b602082019050919050565b60006020820190508181036000830152611d6f81611d33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611db08261190b565b9150611dbb8361190b565b9250828201905080821115611dd357611dd2611d76565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565646564000000000000000000600082015250565b6000611e0f601783611801565b9150611e1a82611dd9565b602082019050919050565b60006020820190508181036000830152611e3e81611e02565b9050919050565b6000611e508261190b565b9150611e5b8361190b565b9250828202611e698161190b565b91508282048414831517611e8057611e7f611d76565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ec18261190b565b9150611ecc8361190b565b925082611edc57611edb611e87565b5b828204905092915050565b6000611ef28261190b565b9150611efd8361190b565b9250828203905081811115611f1557611f14611d76565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611f88816118df565b92915050565b600060208284031215611fa457611fa36118a8565b5b6000611fb284828501611f79565b91505092915050565b6000819050919050565b6000819050919050565b6000611fea611fe5611fe084611fbb565b611fc5565b61190b565b9050919050565b611ffa81611fcf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612035816118cd565b82525050565b6000612047838361202c565b60208301905092915050565b6000602082019050919050565b600061206b82612000565b612075818561200b565b93506120808361201c565b8060005b838110156120b1578151612098888261203b565b97506120a383612053565b925050600181019050612084565b5085935050505092915050565b600060a0820190506120d36000830188611a23565b6120e06020830187611ff1565b81810360408301526120f28186612060565b90506121016060830185611ad7565b61210e6080830184611a23565b969550505050505056fea26469706673582212203caf0349764d027f72482cdfabf3186e2ca03ed0b36270e370f5e96bb32f4b5364736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000725b5b35779360911a77b7574f30050626b15cb1
-----Decoded View---------------
Arg [0] : _feeAddress (address): 0x725b5b35779360911a77b7574f30050626B15CB1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000725b5b35779360911a77b7574f30050626b15cb1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.