Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 748 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21135584 | 23 days ago | IN | 0 ETH | 0.00071917 | ||||
Approve | 21130118 | 24 days ago | IN | 0 ETH | 0.00068152 | ||||
Approve | 20883527 | 58 days ago | IN | 0 ETH | 0.00014763 | ||||
Approve | 20612140 | 96 days ago | IN | 0 ETH | 0.00015916 | ||||
Approve | 20591322 | 99 days ago | IN | 0 ETH | 0.00010949 | ||||
Approve | 20570740 | 102 days ago | IN | 0 ETH | 0.00021108 | ||||
Approve | 20294067 | 141 days ago | IN | 0 ETH | 0.00011611 | ||||
Approve | 20195539 | 154 days ago | IN | 0 ETH | 0.00011641 | ||||
Approve | 20106086 | 167 days ago | IN | 0 ETH | 0.00027127 | ||||
Approve | 20106084 | 167 days ago | IN | 0 ETH | 0.00021015 | ||||
Approve | 20058737 | 173 days ago | IN | 0 ETH | 0.00018312 | ||||
Approve | 20058691 | 173 days ago | IN | 0 ETH | 0.0002053 | ||||
Approve | 19940858 | 190 days ago | IN | 0 ETH | 0.00073249 | ||||
Approve | 19897486 | 196 days ago | IN | 0 ETH | 0.00016573 | ||||
Approve | 19810743 | 208 days ago | IN | 0 ETH | 0.00013942 | ||||
Approve | 19810735 | 208 days ago | IN | 0 ETH | 0.00024796 | ||||
Approve | 19752319 | 216 days ago | IN | 0 ETH | 0.00025519 | ||||
Approve | 19741032 | 218 days ago | IN | 0 ETH | 0.00027591 | ||||
Transfer | 19724511 | 220 days ago | IN | 0 ETH | 0.00092548 | ||||
Approve | 19674114 | 227 days ago | IN | 0 ETH | 0.00034125 | ||||
Approve | 19674110 | 227 days ago | IN | 0 ETH | 0.00031177 | ||||
Approve | 19629463 | 233 days ago | IN | 0 ETH | 0.0006371 | ||||
Approve | 19629216 | 233 days ago | IN | 0 ETH | 0.00063247 | ||||
Approve | 19569117 | 242 days ago | IN | 0 ETH | 0.0035208 | ||||
Approve | 19381034 | 268 days ago | IN | 0 ETH | 0.00275945 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ARKBToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; /// @title ARK 21Shares Bitcoin ETF Token /// @dev ERC20 Token with trading control and dynamic tax rate for the first 5 minutes after trading opens. /// Tax is distributed to the treasury address. contract ARKBToken is ERC20, Ownable { /// @notice Indicates if trading is open bool public isTradingOpen = false; /// @notice Timestamp when trading was opened uint256 private tradingOpenTime; /// @notice Address of the treasury address public treasuryAddress; /// @notice Address used for marketing purposes address public marketingAddress; /// @notice WETH Address for Uniswap trading address public wethAddress; /// @notice UniswapV2 Router for trading IUniswapV2Router02 public uniswapRouter; /// @notice Uniswap Pair for this token and WETH address public uniswapPair; /// @notice Maximum supply of the token uint256 public constant MAX_SUPPLY = 10_000_000_000 * 10 ** 18; /// @notice Default tax percentage after first 5 minutes of trading uint256 private constant TAX_PERCENTAGE = 1; /// @notice High tax percentage for the first 5 minutes of trading uint256 private constant HIGH_TAX_PERCENTAGE = 99; /// @notice Mapping to keep track of addresses excluded from tax mapping(address => bool) private isExcludedFromFee; /// @notice Mapping to track blacklisted addresses mapping(address => bool) public isBlacklisted; /// @dev Constructor sets initial token distribution and Uniswap pair /// @param _uniswapRouterAddress Address of the UniswapV2 Router /// @param _treasuryAddress Address for the treasury /// @param _marketingAddress Address for marketing /// @param _WETHAddress Address of WETH token constructor( address _uniswapRouterAddress, address _treasuryAddress, address _marketingAddress, address _WETHAddress ) ERC20("ARK 21Shares Bitcoin ETF", "ARKB") { treasuryAddress = _treasuryAddress; marketingAddress = _marketingAddress; wethAddress = _WETHAddress; // 94% to the owner for liquidity uint256 initialSupply = (MAX_SUPPLY * 94) / 100; _mint(msg.sender, initialSupply); // 6% to the marketing address uint256 marketingSupply = MAX_SUPPLY - initialSupply; _mint(marketingAddress, marketingSupply); uniswapRouter = IUniswapV2Router02(_uniswapRouterAddress); uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).createPair( address(this), _WETHAddress ); isExcludedFromFee[owner()] = true; isExcludedFromFee[address(this)] = true; isExcludedFromFee[_uniswapRouterAddress] = true; isExcludedFromFee[treasuryAddress] = true; } /// @dev Overrides the _transfer function to include tax and trading control logic /// @param from Sender address /// @param to Recipient address /// @param value Amount of tokens to transfer function _transfer( address from, address to, uint256 value ) internal virtual override { require(from != address(0), "Cannot transfer from 0 wallet"); if (!isTradingOpen) { require(isExcludedFromFee[from], "Trading not yet open"); } require(!isBlacklisted[from], "Sender is blacklisted"); require(!isBlacklisted[to], "Recipient is blacklisted"); if (isExcludedFromFee[from] || isExcludedFromFee[to]) { super._transfer(from, to, value); } else { uint256 tax = 0; uint256 taxPercentage = (block.timestamp < (tradingOpenTime + 5 minutes)) ? HIGH_TAX_PERCENTAGE : TAX_PERCENTAGE; if (to == uniswapPair || from == uniswapPair) { // Apply tax on buy and sell transactions tax = (value * taxPercentage) / 100; uint256 taxedValue = value - tax; super._transfer(from, treasuryAddress, tax); super._transfer(from, to, taxedValue); } else { super._transfer(from, to, value); } } } /// @dev Allows the owner to open trading function openTrading() external onlyOwner { isTradingOpen = true; tradingOpenTime = block.timestamp; } /// @dev Allows the owner to set a new treasury address /// @param _newTreasuryAddress New treasury address function setTreasuryAddress( address _newTreasuryAddress ) external onlyOwner { treasuryAddress = _newTreasuryAddress; } /// @dev Allows the owner to withdraw all tokens and ETH from the contract /// @param _to Address where the assets are withdrawn to function withdrawAll(address _to) external onlyOwner { uint256 contractBalance = balanceOf(address(this)); transfer(_to, contractBalance); (bool success, ) = payable(_to).call{value: address(this).balance}(""); require(success, "Transfer ETH failed"); } /// @dev Allows the owner to blacklist a specific address /// @param _address Address to be blacklisted /// @param _value True to blacklist, false to remove from blacklist function blacklistAddress( address _address, bool _value ) external onlyOwner { isBlacklisted[_address] = _value; } /// @dev Allows the owner to blacklist multiple addresses /// @param _addresses Array of addresses to be blacklisted /// @param _value True to blacklist, false to remove from blacklist function blacklistAddresses( address[] memory _addresses, bool _value ) external onlyOwner { for (uint i = 0; i < _addresses.length; i++) { isBlacklisted[_addresses[i]] = _value; } } /// @dev Contract must be able to receive ETH receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } 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.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_uniswapRouterAddress","type":"address"},{"internalType":"address","name":"_treasuryAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_WETHAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"blacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTreasuryAddress","type":"address"}],"name":"setTreasuryAddress","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wethAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620035fa380380620035fa833981810160405281019062000052919062000865565b6040518060400160405280601881526020017f41524b20323153686172657320426974636f696e2045544600000000000000008152506040518060400160405280600481526020017f41524b42000000000000000000000000000000000000000000000000000000008152508160039081620000cf919062000b51565b508060049081620000e1919062000b51565b50505062000104620000f86200058c60201b60201c565b6200059460201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006064605e6b204fce5e3e25026110000000620001e6919062000c67565b620001f2919062000ce1565b90506200020633826200065a60201b60201c565b6000816b204fce5e3e2502611000000062000222919062000d19565b905062000258600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200065a60201b60201c565b85600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d919062000d54565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b81526004016200036992919062000d97565b6020604051808303816000875af115801562000389573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003af919062000d54565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c600062000405620007c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050505062000eb0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c39062000e25565b60405180910390fd5b620006e060008383620007f160201b60201c565b8060026000828254620006f4919062000e47565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007a7919062000e93565b60405180910390a3620007c360008383620007f660201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082d8262000800565b9050919050565b6200083f8162000820565b81146200084b57600080fd5b50565b6000815190506200085f8162000834565b92915050565b60008060008060808587031215620008825762000881620007fb565b5b600062000892878288016200084e565b9450506020620008a5878288016200084e565b9350506040620008b8878288016200084e565b9250506060620008cb878288016200084e565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095957607f821691505b6020821081036200096f576200096e62000911565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099a565b620009e586836200099a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a3262000a2c62000a2684620009fd565b62000a07565b620009fd565b9050919050565b6000819050919050565b62000a4e8362000a11565b62000a6662000a5d8262000a39565b848454620009a7565b825550505050565b600090565b62000a7d62000a6e565b62000a8a81848462000a43565b505050565b5b8181101562000ab25762000aa660008262000a73565b60018101905062000a90565b5050565b601f82111562000b015762000acb8162000975565b62000ad6846200098a565b8101602085101562000ae6578190505b62000afe62000af5856200098a565b83018262000a8f565b50505b505050565b600082821c905092915050565b600062000b266000198460080262000b06565b1980831691505092915050565b600062000b41838362000b13565b9150826002028217905092915050565b62000b5c82620008d7565b67ffffffffffffffff81111562000b785762000b77620008e2565b5b62000b84825462000940565b62000b9182828562000ab6565b600060209050601f83116001811462000bc9576000841562000bb4578287015190505b62000bc0858262000b33565b86555062000c30565b601f19841662000bd98662000975565b60005b8281101562000c035784890151825560018201915060208501945060208101905062000bdc565b8683101562000c23578489015162000c1f601f89168262000b13565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c7482620009fd565b915062000c8183620009fd565b925082820262000c9181620009fd565b9150828204841483151762000cab5762000caa62000c38565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cee82620009fd565b915062000cfb83620009fd565b92508262000d0e5762000d0d62000cb2565b5b828204905092915050565b600062000d2682620009fd565b915062000d3383620009fd565b925082820390508181111562000d4e5762000d4d62000c38565b5b92915050565b60006020828403121562000d6d5762000d6c620007fb565b5b600062000d7d848285016200084e565b91505092915050565b62000d918162000820565b82525050565b600060408201905062000dae600083018562000d86565b62000dbd602083018462000d86565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e0d601f8362000dc4565b915062000e1a8262000dd5565b602082019050919050565b6000602082019050818103600083015262000e408162000dfe565b9050919050565b600062000e5482620009fd565b915062000e6183620009fd565b925082820190508082111562000e7c5762000e7b62000c38565b5b92915050565b62000e8d81620009fd565b82525050565b600060208201905062000eaa600083018462000e82565b92915050565b61273a8062000ec06000396000f3fe6080604052600436106101a05760003560e01c8063735de9f7116100ec578063c5f956af1161008a578063dd62ed3e11610064578063dd62ed3e146105c7578063f2fde38b14610604578063fa09e6301461062d578063fe575a8714610656576101a7565b8063c5f956af1461055a578063c816841b14610585578063c9567bf9146105b0576101a7565b806395d89b41116100c657806395d89b411461048a578063a457c2d7146104b5578063a5ece941146104f2578063a9059cbb1461051d576101a7565b8063735de9f71461040b578063829118e2146104365780638da5cb5b1461045f576101a7565b8063395093511161015957806356a060a21161013357806356a060a2146103635780636605bfda1461038e57806370a08231146103b7578063715018a6146103f4576101a7565b806339509351146102d2578063455a43961461030f5780634f0e0ef314610338576101a7565b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461021457806323b872dd1461023f578063313ce5671461027c57806332cb6b0c146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610693565b6040516101ce91906118a7565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611971565b610725565b60405161020b91906119cc565b60405180910390f35b34801561022057600080fd5b50610229610748565b60405161023691906119f6565b60405180910390f35b34801561024b57600080fd5b5061026660048036038101906102619190611a11565b610752565b60405161027391906119cc565b60405180910390f35b34801561028857600080fd5b50610291610781565b60405161029e9190611a80565b60405180910390f35b3480156102b357600080fd5b506102bc61078a565b6040516102c991906119f6565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611971565b61079a565b60405161030691906119cc565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190611ac7565b6107d1565b005b34801561034457600080fd5b5061034d610834565b60405161035a9190611b16565b60405180910390f35b34801561036f57600080fd5b5061037861085a565b60405161038591906119cc565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190611b31565b61086d565b005b3480156103c357600080fd5b506103de60048036038101906103d99190611b31565b6108b9565b6040516103eb91906119f6565b60405180910390f35b34801561040057600080fd5b50610409610901565b005b34801561041757600080fd5b50610420610915565b60405161042d9190611bbd565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611d20565b61093b565b005b34801561046b57600080fd5b506104746109d8565b6040516104819190611b16565b60405180910390f35b34801561049657600080fd5b5061049f610a02565b6040516104ac91906118a7565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190611971565b610a94565b6040516104e991906119cc565b60405180910390f35b3480156104fe57600080fd5b50610507610b0b565b6040516105149190611b16565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611971565b610b31565b60405161055191906119cc565b60405180910390f35b34801561056657600080fd5b5061056f610b54565b60405161057c9190611b16565b60405180910390f35b34801561059157600080fd5b5061059a610b7a565b6040516105a79190611b16565b60405180910390f35b3480156105bc57600080fd5b506105c5610ba0565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190611d7c565b610bcc565b6040516105fb91906119f6565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190611b31565b610c53565b005b34801561063957600080fd5b50610654600480360381019061064f9190611b31565b610cd6565b005b34801561066257600080fd5b5061067d60048036038101906106789190611b31565b610da7565b60405161068a91906119cc565b60405180910390f35b6060600380546106a290611deb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90611deb565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610dc7565b905061073d818585610dcf565b600191505092915050565b6000600254905090565b60008061075d610dc7565b905061076a858285610f98565b610775858585611024565b60019150509392505050565b60006012905090565b6b204fce5e3e2502611000000081565b6000806107a5610dc7565b90506107c68185856107b78589610bcc565b6107c19190611e4b565b610dcf565b600191505092915050565b6107d9611453565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560149054906101000a900460ff1681565b610875611453565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610909611453565b61091360006114d1565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610943611453565b60005b82518110156109d35781600d600085848151811061096757610966611e7f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109cb90611eae565b915050610946565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a1190611deb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90611deb565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b600080610a9f610dc7565b90506000610aad8286610bcc565b905083811015610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990611f68565b60405180910390fd5b610aff8286868403610dcf565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b3c610dc7565b9050610b49818585611024565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ba8611453565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c5b611453565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611ffa565b60405180910390fd5b610cd3816114d1565b50565b610cde611453565b6000610ce9306108b9565b9050610cf58282610b31565b5060008273ffffffffffffffffffffffffffffffffffffffff1647604051610d1c9061204b565b60006040518083038185875af1925050503d8060008114610d59576040519150601f19603f3d011682016040523d82523d6000602084013e610d5e565b606091505b5050905080610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906120ac565b60405180910390fd5b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061213e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906121d0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8b91906119f6565b60405180910390a3505050565b6000610fa48484610bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101e5781811015611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061223c565b60405180910390fd5b61101d8484848403610dcf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906122a8565b60405180910390fd5b600560149054906101000a900460ff1661113457600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612314565b60405180910390fd5b5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612380565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906123ec565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ef5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611304576112ff838383611597565b61144e565b60008061012c6006546113179190611e4b565b4210611324576001611327565b60635b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d25750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561143f57606481846113e5919061240c565b6113ef919061247d565b9150600082846113ff91906124ae565b905061142e86600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611597565b611439868683611597565b5061144b565b61144a858585611597565b5b50505b505050565b61145b610dc7565b73ffffffffffffffffffffffffffffffffffffffff166114796109d8565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061252e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906125c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612652565b60405180910390fd5b61168083838361180d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906126e4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f491906119f6565b60405180910390a3611807848484611812565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611851578082015181840152602081019050611836565b60008484015250505050565b6000601f19601f8301169050919050565b600061187982611817565b6118838185611822565b9350611893818560208601611833565b61189c8161185d565b840191505092915050565b600060208201905081810360008301526118c1818461186e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611908826118dd565b9050919050565b611918816118fd565b811461192357600080fd5b50565b6000813590506119358161190f565b92915050565b6000819050919050565b61194e8161193b565b811461195957600080fd5b50565b60008135905061196b81611945565b92915050565b60008060408385031215611988576119876118d3565b5b600061199685828601611926565b92505060206119a78582860161195c565b9150509250929050565b60008115159050919050565b6119c6816119b1565b82525050565b60006020820190506119e160008301846119bd565b92915050565b6119f08161193b565b82525050565b6000602082019050611a0b60008301846119e7565b92915050565b600080600060608486031215611a2a57611a296118d3565b5b6000611a3886828701611926565b9350506020611a4986828701611926565b9250506040611a5a8682870161195c565b9150509250925092565b600060ff82169050919050565b611a7a81611a64565b82525050565b6000602082019050611a956000830184611a71565b92915050565b611aa4816119b1565b8114611aaf57600080fd5b50565b600081359050611ac181611a9b565b92915050565b60008060408385031215611ade57611add6118d3565b5b6000611aec85828601611926565b9250506020611afd85828601611ab2565b9150509250929050565b611b10816118fd565b82525050565b6000602082019050611b2b6000830184611b07565b92915050565b600060208284031215611b4757611b466118d3565b5b6000611b5584828501611926565b91505092915050565b6000819050919050565b6000611b83611b7e611b79846118dd565b611b5e565b6118dd565b9050919050565b6000611b9582611b68565b9050919050565b6000611ba782611b8a565b9050919050565b611bb781611b9c565b82525050565b6000602082019050611bd26000830184611bae565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c158261185d565b810181811067ffffffffffffffff82111715611c3457611c33611bdd565b5b80604052505050565b6000611c476118c9565b9050611c538282611c0c565b919050565b600067ffffffffffffffff821115611c7357611c72611bdd565b5b602082029050602081019050919050565b600080fd5b6000611c9c611c9784611c58565b611c3d565b90508083825260208201905060208402830185811115611cbf57611cbe611c84565b5b835b81811015611ce85780611cd48882611926565b845260208401935050602081019050611cc1565b5050509392505050565b600082601f830112611d0757611d06611bd8565b5b8135611d17848260208601611c89565b91505092915050565b60008060408385031215611d3757611d366118d3565b5b600083013567ffffffffffffffff811115611d5557611d546118d8565b5b611d6185828601611cf2565b9250506020611d7285828601611ab2565b9150509250929050565b60008060408385031215611d9357611d926118d3565b5b6000611da185828601611926565b9250506020611db285828601611926565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e0357607f821691505b602082108103611e1657611e15611dbc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e568261193b565b9150611e618361193b565b9250828201905080821115611e7957611e78611e1c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611eb98261193b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611eeb57611eea611e1c565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f52602583611822565b9150611f5d82611ef6565b604082019050919050565b60006020820190508181036000830152611f8181611f45565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fe4602683611822565b9150611fef82611f88565b604082019050919050565b6000602082019050818103600083015261201381611fd7565b9050919050565b600081905092915050565b50565b600061203560008361201a565b915061204082612025565b600082019050919050565b600061205682612028565b9150819050919050565b7f5472616e7366657220455448206661696c656400000000000000000000000000600082015250565b6000612096601383611822565b91506120a182612060565b602082019050919050565b600060208201905081810360008301526120c581612089565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612128602483611822565b9150612133826120cc565b604082019050919050565b600060208201905081810360008301526121578161211b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ba602283611822565b91506121c58261215e565b604082019050919050565b600060208201905081810360008301526121e9816121ad565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612226601d83611822565b9150612231826121f0565b602082019050919050565b6000602082019050818103600083015261225581612219565b9050919050565b7f43616e6e6f74207472616e736665722066726f6d20302077616c6c6574000000600082015250565b6000612292601d83611822565b915061229d8261225c565b602082019050919050565b600060208201905081810360008301526122c181612285565b9050919050565b7f54726164696e67206e6f7420796574206f70656e000000000000000000000000600082015250565b60006122fe601483611822565b9150612309826122c8565b602082019050919050565b6000602082019050818103600083015261232d816122f1565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b600061236a601583611822565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b60006123d6601883611822565b91506123e1826123a0565b602082019050919050565b60006020820190508181036000830152612405816123c9565b9050919050565b60006124178261193b565b91506124228361193b565b92508282026124308161193b565b9150828204841483151761244757612446611e1c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124888261193b565b91506124938361193b565b9250826124a3576124a261244e565b5b828204905092915050565b60006124b98261193b565b91506124c48361193b565b92508282039050818111156124dc576124db611e1c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612518602083611822565b9150612523826124e2565b602082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125aa602583611822565b91506125b58261254e565b604082019050919050565b600060208201905081810360008301526125d98161259d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061263c602383611822565b9150612647826125e0565b604082019050919050565b6000602082019050818103600083015261266b8161262f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126ce602683611822565b91506126d982612672565b604082019050919050565b600060208201905081810360008301526126fd816126c1565b905091905056fea264697066735822122094c760ea900b75eea2e7bf519c782482795dc57f758b888fbf5c56cfbb90e06064736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b0ad1369d634148195807c07b970186974992a6f000000000000000000000000b0ad1369d634148195807c07b970186974992a6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101a05760003560e01c8063735de9f7116100ec578063c5f956af1161008a578063dd62ed3e11610064578063dd62ed3e146105c7578063f2fde38b14610604578063fa09e6301461062d578063fe575a8714610656576101a7565b8063c5f956af1461055a578063c816841b14610585578063c9567bf9146105b0576101a7565b806395d89b41116100c657806395d89b411461048a578063a457c2d7146104b5578063a5ece941146104f2578063a9059cbb1461051d576101a7565b8063735de9f71461040b578063829118e2146104365780638da5cb5b1461045f576101a7565b8063395093511161015957806356a060a21161013357806356a060a2146103635780636605bfda1461038e57806370a08231146103b7578063715018a6146103f4576101a7565b806339509351146102d2578063455a43961461030f5780634f0e0ef314610338576101a7565b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461021457806323b872dd1461023f578063313ce5671461027c57806332cb6b0c146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610693565b6040516101ce91906118a7565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611971565b610725565b60405161020b91906119cc565b60405180910390f35b34801561022057600080fd5b50610229610748565b60405161023691906119f6565b60405180910390f35b34801561024b57600080fd5b5061026660048036038101906102619190611a11565b610752565b60405161027391906119cc565b60405180910390f35b34801561028857600080fd5b50610291610781565b60405161029e9190611a80565b60405180910390f35b3480156102b357600080fd5b506102bc61078a565b6040516102c991906119f6565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611971565b61079a565b60405161030691906119cc565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190611ac7565b6107d1565b005b34801561034457600080fd5b5061034d610834565b60405161035a9190611b16565b60405180910390f35b34801561036f57600080fd5b5061037861085a565b60405161038591906119cc565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190611b31565b61086d565b005b3480156103c357600080fd5b506103de60048036038101906103d99190611b31565b6108b9565b6040516103eb91906119f6565b60405180910390f35b34801561040057600080fd5b50610409610901565b005b34801561041757600080fd5b50610420610915565b60405161042d9190611bbd565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611d20565b61093b565b005b34801561046b57600080fd5b506104746109d8565b6040516104819190611b16565b60405180910390f35b34801561049657600080fd5b5061049f610a02565b6040516104ac91906118a7565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190611971565b610a94565b6040516104e991906119cc565b60405180910390f35b3480156104fe57600080fd5b50610507610b0b565b6040516105149190611b16565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611971565b610b31565b60405161055191906119cc565b60405180910390f35b34801561056657600080fd5b5061056f610b54565b60405161057c9190611b16565b60405180910390f35b34801561059157600080fd5b5061059a610b7a565b6040516105a79190611b16565b60405180910390f35b3480156105bc57600080fd5b506105c5610ba0565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190611d7c565b610bcc565b6040516105fb91906119f6565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190611b31565b610c53565b005b34801561063957600080fd5b50610654600480360381019061064f9190611b31565b610cd6565b005b34801561066257600080fd5b5061067d60048036038101906106789190611b31565b610da7565b60405161068a91906119cc565b60405180910390f35b6060600380546106a290611deb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90611deb565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610dc7565b905061073d818585610dcf565b600191505092915050565b6000600254905090565b60008061075d610dc7565b905061076a858285610f98565b610775858585611024565b60019150509392505050565b60006012905090565b6b204fce5e3e2502611000000081565b6000806107a5610dc7565b90506107c68185856107b78589610bcc565b6107c19190611e4b565b610dcf565b600191505092915050565b6107d9611453565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560149054906101000a900460ff1681565b610875611453565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610909611453565b61091360006114d1565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610943611453565b60005b82518110156109d35781600d600085848151811061096757610966611e7f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109cb90611eae565b915050610946565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a1190611deb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90611deb565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b600080610a9f610dc7565b90506000610aad8286610bcc565b905083811015610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990611f68565b60405180910390fd5b610aff8286868403610dcf565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b3c610dc7565b9050610b49818585611024565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ba8611453565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c5b611453565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611ffa565b60405180910390fd5b610cd3816114d1565b50565b610cde611453565b6000610ce9306108b9565b9050610cf58282610b31565b5060008273ffffffffffffffffffffffffffffffffffffffff1647604051610d1c9061204b565b60006040518083038185875af1925050503d8060008114610d59576040519150601f19603f3d011682016040523d82523d6000602084013e610d5e565b606091505b5050905080610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906120ac565b60405180910390fd5b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061213e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906121d0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8b91906119f6565b60405180910390a3505050565b6000610fa48484610bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101e5781811015611010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110079061223c565b60405180910390fd5b61101d8484848403610dcf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906122a8565b60405180910390fd5b600560149054906101000a900460ff1661113457600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612314565b60405180910390fd5b5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612380565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906123ec565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ef5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611304576112ff838383611597565b61144e565b60008061012c6006546113179190611e4b565b4210611324576001611327565b60635b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d25750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561143f57606481846113e5919061240c565b6113ef919061247d565b9150600082846113ff91906124ae565b905061142e86600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611597565b611439868683611597565b5061144b565b61144a858585611597565b5b50505b505050565b61145b610dc7565b73ffffffffffffffffffffffffffffffffffffffff166114796109d8565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061252e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906125c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612652565b60405180910390fd5b61168083838361180d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906126e4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f491906119f6565b60405180910390a3611807848484611812565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611851578082015181840152602081019050611836565b60008484015250505050565b6000601f19601f8301169050919050565b600061187982611817565b6118838185611822565b9350611893818560208601611833565b61189c8161185d565b840191505092915050565b600060208201905081810360008301526118c1818461186e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611908826118dd565b9050919050565b611918816118fd565b811461192357600080fd5b50565b6000813590506119358161190f565b92915050565b6000819050919050565b61194e8161193b565b811461195957600080fd5b50565b60008135905061196b81611945565b92915050565b60008060408385031215611988576119876118d3565b5b600061199685828601611926565b92505060206119a78582860161195c565b9150509250929050565b60008115159050919050565b6119c6816119b1565b82525050565b60006020820190506119e160008301846119bd565b92915050565b6119f08161193b565b82525050565b6000602082019050611a0b60008301846119e7565b92915050565b600080600060608486031215611a2a57611a296118d3565b5b6000611a3886828701611926565b9350506020611a4986828701611926565b9250506040611a5a8682870161195c565b9150509250925092565b600060ff82169050919050565b611a7a81611a64565b82525050565b6000602082019050611a956000830184611a71565b92915050565b611aa4816119b1565b8114611aaf57600080fd5b50565b600081359050611ac181611a9b565b92915050565b60008060408385031215611ade57611add6118d3565b5b6000611aec85828601611926565b9250506020611afd85828601611ab2565b9150509250929050565b611b10816118fd565b82525050565b6000602082019050611b2b6000830184611b07565b92915050565b600060208284031215611b4757611b466118d3565b5b6000611b5584828501611926565b91505092915050565b6000819050919050565b6000611b83611b7e611b79846118dd565b611b5e565b6118dd565b9050919050565b6000611b9582611b68565b9050919050565b6000611ba782611b8a565b9050919050565b611bb781611b9c565b82525050565b6000602082019050611bd26000830184611bae565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c158261185d565b810181811067ffffffffffffffff82111715611c3457611c33611bdd565b5b80604052505050565b6000611c476118c9565b9050611c538282611c0c565b919050565b600067ffffffffffffffff821115611c7357611c72611bdd565b5b602082029050602081019050919050565b600080fd5b6000611c9c611c9784611c58565b611c3d565b90508083825260208201905060208402830185811115611cbf57611cbe611c84565b5b835b81811015611ce85780611cd48882611926565b845260208401935050602081019050611cc1565b5050509392505050565b600082601f830112611d0757611d06611bd8565b5b8135611d17848260208601611c89565b91505092915050565b60008060408385031215611d3757611d366118d3565b5b600083013567ffffffffffffffff811115611d5557611d546118d8565b5b611d6185828601611cf2565b9250506020611d7285828601611ab2565b9150509250929050565b60008060408385031215611d9357611d926118d3565b5b6000611da185828601611926565b9250506020611db285828601611926565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e0357607f821691505b602082108103611e1657611e15611dbc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e568261193b565b9150611e618361193b565b9250828201905080821115611e7957611e78611e1c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611eb98261193b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611eeb57611eea611e1c565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f52602583611822565b9150611f5d82611ef6565b604082019050919050565b60006020820190508181036000830152611f8181611f45565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fe4602683611822565b9150611fef82611f88565b604082019050919050565b6000602082019050818103600083015261201381611fd7565b9050919050565b600081905092915050565b50565b600061203560008361201a565b915061204082612025565b600082019050919050565b600061205682612028565b9150819050919050565b7f5472616e7366657220455448206661696c656400000000000000000000000000600082015250565b6000612096601383611822565b91506120a182612060565b602082019050919050565b600060208201905081810360008301526120c581612089565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612128602483611822565b9150612133826120cc565b604082019050919050565b600060208201905081810360008301526121578161211b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ba602283611822565b91506121c58261215e565b604082019050919050565b600060208201905081810360008301526121e9816121ad565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612226601d83611822565b9150612231826121f0565b602082019050919050565b6000602082019050818103600083015261225581612219565b9050919050565b7f43616e6e6f74207472616e736665722066726f6d20302077616c6c6574000000600082015250565b6000612292601d83611822565b915061229d8261225c565b602082019050919050565b600060208201905081810360008301526122c181612285565b9050919050565b7f54726164696e67206e6f7420796574206f70656e000000000000000000000000600082015250565b60006122fe601483611822565b9150612309826122c8565b602082019050919050565b6000602082019050818103600083015261232d816122f1565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b600061236a601583611822565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b60006123d6601883611822565b91506123e1826123a0565b602082019050919050565b60006020820190508181036000830152612405816123c9565b9050919050565b60006124178261193b565b91506124228361193b565b92508282026124308161193b565b9150828204841483151761244757612446611e1c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124888261193b565b91506124938361193b565b9250826124a3576124a261244e565b5b828204905092915050565b60006124b98261193b565b91506124c48361193b565b92508282039050818111156124dc576124db611e1c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612518602083611822565b9150612523826124e2565b602082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125aa602583611822565b91506125b58261254e565b604082019050919050565b600060208201905081810360008301526125d98161259d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061263c602383611822565b9150612647826125e0565b604082019050919050565b6000602082019050818103600083015261266b8161262f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126ce602683611822565b91506126d982612672565b604082019050919050565b600060208201905081810360008301526126fd816126c1565b905091905056fea264697066735822122094c760ea900b75eea2e7bf519c782482795dc57f758b888fbf5c56cfbb90e06064736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b0ad1369d634148195807c07b970186974992a6f000000000000000000000000b0ad1369d634148195807c07b970186974992a6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _treasuryAddress (address): 0xb0ad1369d634148195807c07B970186974992a6F
Arg [2] : _marketingAddress (address): 0xb0ad1369d634148195807c07B970186974992a6F
Arg [3] : _WETHAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000b0ad1369d634148195807c07b970186974992a6f
Arg [2] : 000000000000000000000000b0ad1369d634148195807c07b970186974992a6f
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
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.