Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 AIPEPE
Holders
78
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
81,630.510422791998827401 AIPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AIPEPE
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Meet AI Pepe - your meme-tastic, AI-driven chat buddy! Dive into the world of tech with a twist of humor. Twitter - https://twitter.com/AIPEPECOIN0101 Website - https://aipepechatbot.xyz Telegram: https://t.me/AIPEPE0101 */ pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } 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; } contract AIPEPE is Ownable, ERC20 { event SwapBack(uint256 amount); event UpdateSwapTokenAt(uint256 amount); event OpenTrading(); event DisableLimits(); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 100_000_000 * 10 ** 18; uint256 TAX = 5; uint256 private _startBlock; uint256 private _reduceTaxAt = 10; uint256 private _initialTax = 32; uint256 private _maxAmount = (_totalSupply * 10) / 1_000; // max wallet: 1% uint256 private _maxWallet = _maxAmount; bool private _tradingEnable; bool private _swaping = false; mapping(address => bool) private _isExcludedFromFees; address public pair; address public marketingWallet; address public teamWallet; bool public limit = true; uint256 public swapTokenAt = (_totalSupply * 3) / 1000; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor(address _marketing, address _team) ERC20("AIPEPE", "AIPEPE") { marketingWallet = _marketing; teamWallet = _team; pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[_marketing] = true; _isExcludedFromFees[_team] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } function setSwapTokenAt(uint256 value) external onlyOwner { require(value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50"); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function openTrading() external onlyOwner { _tradingEnable = true; _startBlock = block.number; emit OpenTrading(); } function getIsExcludedFromFees(address _address) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees(address _address, bool _value) external onlyOwner { _isExcludedFromFees[_address] = _value; } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function _transfer(address from, address to, uint256 amount) internal override { if (_isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping) { super._transfer(from, to, amount); return; } require(_tradingEnable, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) revert("Max TX Amount"); if (to != pair && balanceOf(to) + amount > _maxWallet) revert("Max wallet exceeded"); } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _totalFees = (amount * ((block.number > _startBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) swapBack(); } if (from == pair) _totalFees = (amount * ((block.number > _startBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = balance / 2; uint256 teamAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call{value: marketingAmount}(""); require(sent, "Failed to send Ether to marketing wallet"); (sent, ) = payable(teamWallet).call{value: teamAmount}(""); require(sent, "Failed to send Ether to team wallet"); } emit SwapBack(swapTokenAt); } 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 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.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 (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; } }
{ "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":"_marketing","type":"address"},{"internalType":"address","name":"_team","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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","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":"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":[],"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":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e40000006006556005600755600a6009556020600a556103e8600a6006546200007d919062000a51565b62000089919062000ac8565b600b55600b54600c555f600d60016101000a81548160ff0219169083151502179055506001601160146101000a81548160ff0219169083151502179055506103e86003600654620000db919062000a51565b620000e7919062000ac8565b601255348015620000f6575f80fd5b5060405162003ce438038062003ce483398181016040528101906200011c919062000b64565b6040518060400160405280600681526020017f41495045504500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4149504550450000000000000000000000000000000000000000000000000000815250620001a86200019c6200061860201b60201c565b6200061f60201b60201c565b8160049081620001b9919062000e04565b508060059081620001cb919062000e04565b5050508160105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000ee8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000328573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200034e919062000ee8565b6040518363ffffffff1660e01b81526004016200036d92919062000f29565b6020604051808303815f875af11580156200038a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003b0919062000ee8565b600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e5f620004046200061860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005cc620005bd6200061860201b60201c565b600654620006e060201b60201c565b62000610620005e06200061860201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200084660201b60201c565b505062001160565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007489062000fb2565b60405180910390fd5b620007645f838362000a1160201b60201c565b8060035f82825462000777919062000fd2565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200082791906200101d565b60405180910390a3620008425f838362000a1660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ae90620010ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000928576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091f9062001140565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a0491906200101d565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a5d8262000a1b565b915062000a6a8362000a1b565b925082820262000a7a8162000a1b565b9150828204841483151762000a945762000a9362000a24565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ad48262000a1b565b915062000ae18362000a1b565b92508262000af45762000af362000a9b565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000b2e8262000b03565b9050919050565b62000b408162000b22565b811462000b4b575f80fd5b50565b5f8151905062000b5e8162000b35565b92915050565b5f806040838503121562000b7d5762000b7c62000aff565b5b5f62000b8c8582860162000b4e565b925050602062000b9f8582860162000b4e565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000c2557607f821691505b60208210810362000c3b5762000c3a62000be0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c9f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c62565b62000cab868362000c62565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000cec62000ce662000ce08462000a1b565b62000cc3565b62000a1b565b9050919050565b5f819050919050565b62000d078362000ccc565b62000d1f62000d168262000cf3565b84845462000c6e565b825550505050565b5f90565b62000d3562000d27565b62000d4281848462000cfc565b505050565b5b8181101562000d695762000d5d5f8262000d2b565b60018101905062000d48565b5050565b601f82111562000db85762000d828162000c41565b62000d8d8462000c53565b8101602085101562000d9d578190505b62000db562000dac8562000c53565b83018262000d47565b50505b505050565b5f82821c905092915050565b5f62000dda5f198460080262000dbd565b1980831691505092915050565b5f62000df4838362000dc9565b9150826002028217905092915050565b62000e0f8262000ba9565b67ffffffffffffffff81111562000e2b5762000e2a62000bb3565b5b62000e37825462000c0d565b62000e4482828562000d6d565b5f60209050601f83116001811462000e7a575f841562000e65578287015190505b62000e71858262000de7565b86555062000ee0565b601f19841662000e8a8662000c41565b5f5b8281101562000eb35784890151825560018201915060208501945060208101905062000e8c565b8683101562000ed3578489015162000ecf601f89168262000dc9565b8355505b6001600288020188555050505b505050505050565b5f6020828403121562000f005762000eff62000aff565b5b5f62000f0f8482850162000b4e565b91505092915050565b62000f238162000b22565b82525050565b5f60408201905062000f3e5f83018562000f18565b62000f4d602083018462000f18565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f9a601f8362000f54565b915062000fa78262000f64565b602082019050919050565b5f6020820190508181035f83015262000fcb8162000f8c565b9050919050565b5f62000fde8262000a1b565b915062000feb8362000a1b565b925082820190508082111562001006576200100562000a24565b5b92915050565b620010178162000a1b565b82525050565b5f602082019050620010325f8301846200100c565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200109460248362000f54565b9150620010a18262001038565b604082019050919050565b5f6020820190508181035f830152620010c58162001086565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200112860228362000f54565b91506200113582620010cc565b604082019050919050565b5f6020820190508181035f83015262001159816200111a565b9050919050565b608051612b5d620011875f395f818161082c0152818161090b01526109340152612b5d5ff3fe608060405260043610610169575f3560e01c806375f0a874116100d0578063a4d66daf11610089578063c9567bf911610063578063c9567bf914610538578063dd62ed3e1461054e578063f2fde38b1461058a578063f928364c146105b257610170565b8063a4d66daf146104a8578063a8aa1b31146104d2578063a9059cbb146104fc57610170565b806375f0a8741461038a5780637b16cea0146103b4578063864b3167146103f05780638da5cb5b1461041857806395d89b4114610442578063a457c2d71461046c57610170565b80633950935111610122578063395093511461029257806359927044146102ce5780636ac5eeee146102f857806370a082311461030e578063715018a61461034a57806373bc5a361461036057610170565b806306fdde0314610174578063095ea7b31461019e57806316697fc5146101da57806318160ddd1461020257806323b872dd1461022c578063313ce5671461026857610170565b3661017057005b5f80fd5b34801561017f575f80fd5b506101886105c8565b6040516101959190611c80565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf9190611d31565b610658565b6040516101d19190611d89565b60405180910390f35b3480156101e5575f80fd5b5061020060048036038101906101fb9190611dcc565b61067a565b005b34801561020d575f80fd5b506102166106da565b6040516102239190611e19565b60405180910390f35b348015610237575f80fd5b50610252600480360381019061024d9190611e32565b6106e3565b60405161025f9190611d89565b60405180910390f35b348015610273575f80fd5b5061027c610711565b6040516102899190611e9d565b60405180910390f35b34801561029d575f80fd5b506102b860048036038101906102b39190611d31565b610719565b6040516102c59190611d89565b60405180910390f35b3480156102d9575f80fd5b506102e261074f565b6040516102ef9190611ec5565b60405180910390f35b348015610303575f80fd5b5061030c610774565b005b348015610319575f80fd5b50610334600480360381019061032f9190611ede565b610bdb565b6040516103419190611e19565b60405180910390f35b348015610355575f80fd5b5061035e610c21565b005b34801561036b575f80fd5b50610374610c34565b6040516103819190611e19565b60405180910390f35b348015610395575f80fd5b5061039e610c3a565b6040516103ab9190611ec5565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d59190611ede565b610c5f565b6040516103e79190611d89565b60405180910390f35b3480156103fb575f80fd5b5061041660048036038101906104119190611f09565b610cb1565b005b348015610423575f80fd5b5061042c610d4b565b6040516104399190611ec5565b60405180910390f35b34801561044d575f80fd5b50610456610d72565b6040516104639190611c80565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d9190611d31565b610e02565b60405161049f9190611d89565b60405180910390f35b3480156104b3575f80fd5b506104bc610e77565b6040516104c99190611d89565b60405180910390f35b3480156104dd575f80fd5b506104e6610e8a565b6040516104f39190611ec5565b60405180910390f35b348015610507575f80fd5b50610522600480360381019061051d9190611d31565b610eaf565b60405161052f9190611d89565b60405180910390f35b348015610543575f80fd5b5061054c610ed1565b005b348015610559575f80fd5b50610574600480360381019061056f9190611f34565b610f28565b6040516105819190611e19565b60405180910390f35b348015610595575f80fd5b506105b060048036038101906105ab9190611ede565b610faa565b005b3480156105bd575f80fd5b506105c661102c565b005b6060600480546105d790611f9f565b80601f016020809104026020016040519081016040528092919081815260200182805461060390611f9f565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f806106626110dd565b905061066f8185856110e4565b600191505092915050565b6106826112a7565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806106ed6110dd565b90506106fa858285611325565b6107058585856113b0565b60019150509392505050565b5f6012905090565b5f806107236110dd565b90506107448185856107358589610f28565b61073f9190611ffc565b6110e4565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001600d60016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156107ab576107aa61202f565b5b6040519080825280602002602001820160405280156107d95781602001602082028036833780820191505090505b50905030815f815181106107f0576107ef61205c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610893573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b7919061209d565b816001815181106108cb576108ca61205c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610932307f00000000000000000000000000000000000000000000000000000000000000006012546110e4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476012545f8430426040518663ffffffff1660e01b81526004016109959594939291906121c1565b5f604051808303815f87803b1580156109ac575f80fd5b505af11580156109be573d5f803e3d5ffd5b505050505f4790505f811115610b84575f6002826109dc9190612246565b90505f81836109eb9190612276565b90505f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610a33906122d6565b5f6040518083038185875af1925050503d805f8114610a6d576040519150601f19603f3d011682016040523d82523d5f602084013e610a72565b606091505b5050905080610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad9061235a565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610afb906122d6565b5f6040518083038185875af1925050503d805f8114610b35576040519150601f19603f3d011682016040523d82523d5f602084013e610b3a565b606091505b50508091505080610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906123e8565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601254604051610bb59190611e19565b60405180910390a150505f600d60016101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c296112a7565b610c325f6118bc565b565b60125481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610cb96112a7565b6032600654610cc89190612246565b811115610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612476565b60405180910390fd5b806012819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610d409190611e19565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d8190611f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad90611f9f565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b5050505050905090565b5f80610e0c6110dd565b90505f610e198286610f28565b905083811015610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612504565b60405180910390fd5b610e6b82868684036110e4565b60019250505092915050565b601160149054906101000a900460ff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610eb96110dd565b9050610ec68185856113b0565b600191505092915050565b610ed96112a7565b6001600d5f6101000a81548160ff021916908315150217905550436008819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fb26112a7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612592565b60405180910390fd5b611029816118bc565b50565b6110346112a7565b601160149054906101000a900460ff16611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906125fa565b60405180910390fd5b5f601160146101000a81548160ff021916908315150217905550600654600c81905550600654600b819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990612688565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790612716565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129a9190611e19565b60405180910390a3505050565b6112af6110dd565b73ffffffffffffffffffffffffffffffffffffffff166112cd610d4b565b73ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a9061277e565b60405180910390fd5b565b5f6113308484610f28565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113aa578181101561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906127e6565b60405180910390fd5b6113a984848484036110e4565b5b50505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061144b5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806114fc5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fb5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115135750600d60019054906101000a900460ff165b156115285761152383838361197d565b6118b7565b600d5f9054906101000a900460ff16611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061284e565b60405180910390fd5b601160149054906101000a900460ff161561173157600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116325750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561163f5750600b5481115b1561167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906128b6565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116f05750600c54816116e484610bdb565b6116ee9190611ffc565b115b15611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061291e565b60405180910390fd5b5b5f606460075483611742919061293c565b61174c9190612246565b9050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f85760646009546008546117b49190611ffc565b43116117c257600a546117c6565b6007545b836117d1919061293c565b6117db9190612246565b90506012546117e930610bdb565b106117f7576117f6610774565b5b5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361188857606460095460085461185e9190611ffc565b431161186c57600a54611870565b6007545b8361187b919061293c565b6118859190612246565b90505b5f8111156118aa5761189b84308361197d565b80826118a79190612276565b91505b6118b584848461197d565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906129ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090612a7b565b60405180910390fd5b611a64838383611bec565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90612b09565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd39190611e19565b60405180910390a3611be6848484611bf1565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2d578082015181840152602081019050611c12565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5282611bf6565b611c5c8185611c00565b9350611c6c818560208601611c10565b611c7581611c38565b840191505092915050565b5f6020820190508181035f830152611c988184611c48565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ccd82611ca4565b9050919050565b611cdd81611cc3565b8114611ce7575f80fd5b50565b5f81359050611cf881611cd4565b92915050565b5f819050919050565b611d1081611cfe565b8114611d1a575f80fd5b50565b5f81359050611d2b81611d07565b92915050565b5f8060408385031215611d4757611d46611ca0565b5b5f611d5485828601611cea565b9250506020611d6585828601611d1d565b9150509250929050565b5f8115159050919050565b611d8381611d6f565b82525050565b5f602082019050611d9c5f830184611d7a565b92915050565b611dab81611d6f565b8114611db5575f80fd5b50565b5f81359050611dc681611da2565b92915050565b5f8060408385031215611de257611de1611ca0565b5b5f611def85828601611cea565b9250506020611e0085828601611db8565b9150509250929050565b611e1381611cfe565b82525050565b5f602082019050611e2c5f830184611e0a565b92915050565b5f805f60608486031215611e4957611e48611ca0565b5b5f611e5686828701611cea565b9350506020611e6786828701611cea565b9250506040611e7886828701611d1d565b9150509250925092565b5f60ff82169050919050565b611e9781611e82565b82525050565b5f602082019050611eb05f830184611e8e565b92915050565b611ebf81611cc3565b82525050565b5f602082019050611ed85f830184611eb6565b92915050565b5f60208284031215611ef357611ef2611ca0565b5b5f611f0084828501611cea565b91505092915050565b5f60208284031215611f1e57611f1d611ca0565b5b5f611f2b84828501611d1d565b91505092915050565b5f8060408385031215611f4a57611f49611ca0565b5b5f611f5785828601611cea565b9250506020611f6885828601611cea565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fb657607f821691505b602082108103611fc957611fc8611f72565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61200682611cfe565b915061201183611cfe565b925082820190508082111561202957612028611fcf565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061209781611cd4565b92915050565b5f602082840312156120b2576120b1611ca0565b5b5f6120bf84828501612089565b91505092915050565b5f819050919050565b5f819050919050565b5f6120f46120ef6120ea846120c8565b6120d1565b611cfe565b9050919050565b612104816120da565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61213c81611cc3565b82525050565b5f61214d8383612133565b60208301905092915050565b5f602082019050919050565b5f61216f8261210a565b6121798185612114565b935061218483612124565b805f5b838110156121b457815161219b8882612142565b97506121a683612159565b925050600181019050612187565b5085935050505092915050565b5f60a0820190506121d45f830188611e0a565b6121e160208301876120fb565b81810360408301526121f38186612165565b90506122026060830185611eb6565b61220f6080830184611e0a565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61225082611cfe565b915061225b83611cfe565b92508261226b5761226a612219565b5b828204905092915050565b5f61228082611cfe565b915061228b83611cfe565b92508282039050818111156122a3576122a2611fcf565b5b92915050565b5f81905092915050565b50565b5f6122c15f836122a9565b91506122cc826122b3565b5f82019050919050565b5f6122e0826122b6565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612344602883611c00565b915061234f826122ea565b604082019050919050565b5f6020820190508181035f83015261237181612338565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f207465616d2077616c5f8201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b5f6123d2602383611c00565b91506123dd82612378565b604082019050919050565b5f6020820190508181035f8301526123ff816123c6565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612460602f83611c00565b915061246b82612406565b604082019050919050565b5f6020820190508181035f83015261248d81612454565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6124ee602583611c00565b91506124f982612494565b604082019050919050565b5f6020820190508181035f83015261251b816124e2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61257c602683611c00565b915061258782612522565b604082019050919050565b5f6020820190508181035f8301526125a981612570565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6125e4601683611c00565b91506125ef826125b0565b602082019050919050565b5f6020820190508181035f830152612611816125d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612672602483611c00565b915061267d82612618565b604082019050919050565b5f6020820190508181035f83015261269f81612666565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612700602283611c00565b915061270b826126a6565b604082019050919050565b5f6020820190508181035f83015261272d816126f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612768602083611c00565b915061277382612734565b602082019050919050565b5f6020820190508181035f8301526127958161275c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6127d0601d83611c00565b91506127db8261279c565b602082019050919050565b5f6020820190508181035f8301526127fd816127c4565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612838601383611c00565b915061284382612804565b602082019050919050565b5f6020820190508181035f8301526128658161282c565b9050919050565b7f4d617820545820416d6f756e74000000000000000000000000000000000000005f82015250565b5f6128a0600d83611c00565b91506128ab8261286c565b602082019050919050565b5f6020820190508181035f8301526128cd81612894565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f612908601383611c00565b9150612913826128d4565b602082019050919050565b5f6020820190508181035f830152612935816128fc565b9050919050565b5f61294682611cfe565b915061295183611cfe565b925082820261295f81611cfe565b9150828204841483151761297657612975611fcf565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6129d7602583611c00565b91506129e28261297d565b604082019050919050565b5f6020820190508181035f830152612a04816129cb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612a65602383611c00565b9150612a7082612a0b565b604082019050919050565b5f6020820190508181035f830152612a9281612a59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612af3602683611c00565b9150612afe82612a99565b604082019050919050565b5f6020820190508181035f830152612b2081612ae7565b905091905056fea264697066735822122018a13e5f13acd069817e43f8f8c7b2a636befb54cac2f09bdff7b49121d387fb64736f6c63430008170033000000000000000000000000d48adcc9d5d2b9e084f0dfd79703f09dcc9769890000000000000000000000005cd7f9cae78440baf379fe0d961d948860052a30
Deployed Bytecode
0x608060405260043610610169575f3560e01c806375f0a874116100d0578063a4d66daf11610089578063c9567bf911610063578063c9567bf914610538578063dd62ed3e1461054e578063f2fde38b1461058a578063f928364c146105b257610170565b8063a4d66daf146104a8578063a8aa1b31146104d2578063a9059cbb146104fc57610170565b806375f0a8741461038a5780637b16cea0146103b4578063864b3167146103f05780638da5cb5b1461041857806395d89b4114610442578063a457c2d71461046c57610170565b80633950935111610122578063395093511461029257806359927044146102ce5780636ac5eeee146102f857806370a082311461030e578063715018a61461034a57806373bc5a361461036057610170565b806306fdde0314610174578063095ea7b31461019e57806316697fc5146101da57806318160ddd1461020257806323b872dd1461022c578063313ce5671461026857610170565b3661017057005b5f80fd5b34801561017f575f80fd5b506101886105c8565b6040516101959190611c80565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf9190611d31565b610658565b6040516101d19190611d89565b60405180910390f35b3480156101e5575f80fd5b5061020060048036038101906101fb9190611dcc565b61067a565b005b34801561020d575f80fd5b506102166106da565b6040516102239190611e19565b60405180910390f35b348015610237575f80fd5b50610252600480360381019061024d9190611e32565b6106e3565b60405161025f9190611d89565b60405180910390f35b348015610273575f80fd5b5061027c610711565b6040516102899190611e9d565b60405180910390f35b34801561029d575f80fd5b506102b860048036038101906102b39190611d31565b610719565b6040516102c59190611d89565b60405180910390f35b3480156102d9575f80fd5b506102e261074f565b6040516102ef9190611ec5565b60405180910390f35b348015610303575f80fd5b5061030c610774565b005b348015610319575f80fd5b50610334600480360381019061032f9190611ede565b610bdb565b6040516103419190611e19565b60405180910390f35b348015610355575f80fd5b5061035e610c21565b005b34801561036b575f80fd5b50610374610c34565b6040516103819190611e19565b60405180910390f35b348015610395575f80fd5b5061039e610c3a565b6040516103ab9190611ec5565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d59190611ede565b610c5f565b6040516103e79190611d89565b60405180910390f35b3480156103fb575f80fd5b5061041660048036038101906104119190611f09565b610cb1565b005b348015610423575f80fd5b5061042c610d4b565b6040516104399190611ec5565b60405180910390f35b34801561044d575f80fd5b50610456610d72565b6040516104639190611c80565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d9190611d31565b610e02565b60405161049f9190611d89565b60405180910390f35b3480156104b3575f80fd5b506104bc610e77565b6040516104c99190611d89565b60405180910390f35b3480156104dd575f80fd5b506104e6610e8a565b6040516104f39190611ec5565b60405180910390f35b348015610507575f80fd5b50610522600480360381019061051d9190611d31565b610eaf565b60405161052f9190611d89565b60405180910390f35b348015610543575f80fd5b5061054c610ed1565b005b348015610559575f80fd5b50610574600480360381019061056f9190611f34565b610f28565b6040516105819190611e19565b60405180910390f35b348015610595575f80fd5b506105b060048036038101906105ab9190611ede565b610faa565b005b3480156105bd575f80fd5b506105c661102c565b005b6060600480546105d790611f9f565b80601f016020809104026020016040519081016040528092919081815260200182805461060390611f9f565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f806106626110dd565b905061066f8185856110e4565b600191505092915050565b6106826112a7565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806106ed6110dd565b90506106fa858285611325565b6107058585856113b0565b60019150509392505050565b5f6012905090565b5f806107236110dd565b90506107448185856107358589610f28565b61073f9190611ffc565b6110e4565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001600d60016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156107ab576107aa61202f565b5b6040519080825280602002602001820160405280156107d95781602001602082028036833780820191505090505b50905030815f815181106107f0576107ef61205c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610893573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b7919061209d565b816001815181106108cb576108ca61205c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610932307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6012546110e4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476012545f8430426040518663ffffffff1660e01b81526004016109959594939291906121c1565b5f604051808303815f87803b1580156109ac575f80fd5b505af11580156109be573d5f803e3d5ffd5b505050505f4790505f811115610b84575f6002826109dc9190612246565b90505f81836109eb9190612276565b90505f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610a33906122d6565b5f6040518083038185875af1925050503d805f8114610a6d576040519150601f19603f3d011682016040523d82523d5f602084013e610a72565b606091505b5050905080610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad9061235a565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610afb906122d6565b5f6040518083038185875af1925050503d805f8114610b35576040519150601f19603f3d011682016040523d82523d5f602084013e610b3a565b606091505b50508091505080610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906123e8565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601254604051610bb59190611e19565b60405180910390a150505f600d60016101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c296112a7565b610c325f6118bc565b565b60125481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610cb96112a7565b6032600654610cc89190612246565b811115610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612476565b60405180910390fd5b806012819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610d409190611e19565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d8190611f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad90611f9f565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b5050505050905090565b5f80610e0c6110dd565b90505f610e198286610f28565b905083811015610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612504565b60405180910390fd5b610e6b82868684036110e4565b60019250505092915050565b601160149054906101000a900460ff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610eb96110dd565b9050610ec68185856113b0565b600191505092915050565b610ed96112a7565b6001600d5f6101000a81548160ff021916908315150217905550436008819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fb26112a7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612592565b60405180910390fd5b611029816118bc565b50565b6110346112a7565b601160149054906101000a900460ff16611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906125fa565b60405180910390fd5b5f601160146101000a81548160ff021916908315150217905550600654600c81905550600654600b819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990612688565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790612716565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129a9190611e19565b60405180910390a3505050565b6112af6110dd565b73ffffffffffffffffffffffffffffffffffffffff166112cd610d4b565b73ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a9061277e565b60405180910390fd5b565b5f6113308484610f28565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113aa578181101561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906127e6565b60405180910390fd5b6113a984848484036110e4565b5b50505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061144b5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806114fc5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fb5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115135750600d60019054906101000a900460ff165b156115285761152383838361197d565b6118b7565b600d5f9054906101000a900460ff16611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061284e565b60405180910390fd5b601160149054906101000a900460ff161561173157600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116325750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561163f5750600b5481115b1561167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906128b6565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116f05750600c54816116e484610bdb565b6116ee9190611ffc565b115b15611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061291e565b60405180910390fd5b5b5f606460075483611742919061293c565b61174c9190612246565b9050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f85760646009546008546117b49190611ffc565b43116117c257600a546117c6565b6007545b836117d1919061293c565b6117db9190612246565b90506012546117e930610bdb565b106117f7576117f6610774565b5b5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361188857606460095460085461185e9190611ffc565b431161186c57600a54611870565b6007545b8361187b919061293c565b6118859190612246565b90505b5f8111156118aa5761189b84308361197d565b80826118a79190612276565b91505b6118b584848461197d565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906129ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090612a7b565b60405180910390fd5b611a64838383611bec565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90612b09565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd39190611e19565b60405180910390a3611be6848484611bf1565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2d578082015181840152602081019050611c12565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5282611bf6565b611c5c8185611c00565b9350611c6c818560208601611c10565b611c7581611c38565b840191505092915050565b5f6020820190508181035f830152611c988184611c48565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ccd82611ca4565b9050919050565b611cdd81611cc3565b8114611ce7575f80fd5b50565b5f81359050611cf881611cd4565b92915050565b5f819050919050565b611d1081611cfe565b8114611d1a575f80fd5b50565b5f81359050611d2b81611d07565b92915050565b5f8060408385031215611d4757611d46611ca0565b5b5f611d5485828601611cea565b9250506020611d6585828601611d1d565b9150509250929050565b5f8115159050919050565b611d8381611d6f565b82525050565b5f602082019050611d9c5f830184611d7a565b92915050565b611dab81611d6f565b8114611db5575f80fd5b50565b5f81359050611dc681611da2565b92915050565b5f8060408385031215611de257611de1611ca0565b5b5f611def85828601611cea565b9250506020611e0085828601611db8565b9150509250929050565b611e1381611cfe565b82525050565b5f602082019050611e2c5f830184611e0a565b92915050565b5f805f60608486031215611e4957611e48611ca0565b5b5f611e5686828701611cea565b9350506020611e6786828701611cea565b9250506040611e7886828701611d1d565b9150509250925092565b5f60ff82169050919050565b611e9781611e82565b82525050565b5f602082019050611eb05f830184611e8e565b92915050565b611ebf81611cc3565b82525050565b5f602082019050611ed85f830184611eb6565b92915050565b5f60208284031215611ef357611ef2611ca0565b5b5f611f0084828501611cea565b91505092915050565b5f60208284031215611f1e57611f1d611ca0565b5b5f611f2b84828501611d1d565b91505092915050565b5f8060408385031215611f4a57611f49611ca0565b5b5f611f5785828601611cea565b9250506020611f6885828601611cea565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fb657607f821691505b602082108103611fc957611fc8611f72565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61200682611cfe565b915061201183611cfe565b925082820190508082111561202957612028611fcf565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061209781611cd4565b92915050565b5f602082840312156120b2576120b1611ca0565b5b5f6120bf84828501612089565b91505092915050565b5f819050919050565b5f819050919050565b5f6120f46120ef6120ea846120c8565b6120d1565b611cfe565b9050919050565b612104816120da565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61213c81611cc3565b82525050565b5f61214d8383612133565b60208301905092915050565b5f602082019050919050565b5f61216f8261210a565b6121798185612114565b935061218483612124565b805f5b838110156121b457815161219b8882612142565b97506121a683612159565b925050600181019050612187565b5085935050505092915050565b5f60a0820190506121d45f830188611e0a565b6121e160208301876120fb565b81810360408301526121f38186612165565b90506122026060830185611eb6565b61220f6080830184611e0a565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61225082611cfe565b915061225b83611cfe565b92508261226b5761226a612219565b5b828204905092915050565b5f61228082611cfe565b915061228b83611cfe565b92508282039050818111156122a3576122a2611fcf565b5b92915050565b5f81905092915050565b50565b5f6122c15f836122a9565b91506122cc826122b3565b5f82019050919050565b5f6122e0826122b6565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612344602883611c00565b915061234f826122ea565b604082019050919050565b5f6020820190508181035f83015261237181612338565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f207465616d2077616c5f8201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b5f6123d2602383611c00565b91506123dd82612378565b604082019050919050565b5f6020820190508181035f8301526123ff816123c6565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612460602f83611c00565b915061246b82612406565b604082019050919050565b5f6020820190508181035f83015261248d81612454565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6124ee602583611c00565b91506124f982612494565b604082019050919050565b5f6020820190508181035f83015261251b816124e2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61257c602683611c00565b915061258782612522565b604082019050919050565b5f6020820190508181035f8301526125a981612570565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6125e4601683611c00565b91506125ef826125b0565b602082019050919050565b5f6020820190508181035f830152612611816125d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612672602483611c00565b915061267d82612618565b604082019050919050565b5f6020820190508181035f83015261269f81612666565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612700602283611c00565b915061270b826126a6565b604082019050919050565b5f6020820190508181035f83015261272d816126f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612768602083611c00565b915061277382612734565b602082019050919050565b5f6020820190508181035f8301526127958161275c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6127d0601d83611c00565b91506127db8261279c565b602082019050919050565b5f6020820190508181035f8301526127fd816127c4565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612838601383611c00565b915061284382612804565b602082019050919050565b5f6020820190508181035f8301526128658161282c565b9050919050565b7f4d617820545820416d6f756e74000000000000000000000000000000000000005f82015250565b5f6128a0600d83611c00565b91506128ab8261286c565b602082019050919050565b5f6020820190508181035f8301526128cd81612894565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f612908601383611c00565b9150612913826128d4565b602082019050919050565b5f6020820190508181035f830152612935816128fc565b9050919050565b5f61294682611cfe565b915061295183611cfe565b925082820261295f81611cfe565b9150828204841483151761297657612975611fcf565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6129d7602583611c00565b91506129e28261297d565b604082019050919050565b5f6020820190508181035f830152612a04816129cb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612a65602383611c00565b9150612a7082612a0b565b604082019050919050565b5f6020820190508181035f830152612a9281612a59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612af3602683611c00565b9150612afe82612a99565b604082019050919050565b5f6020820190508181035f830152612b2081612ae7565b905091905056fea264697066735822122018a13e5f13acd069817e43f8f8c7b2a636befb54cac2f09bdff7b49121d387fb64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d48adcc9d5d2b9e084f0dfd79703f09dcc9769890000000000000000000000005cd7f9cae78440baf379fe0d961d948860052a30
-----Decoded View---------------
Arg [0] : _marketing (address): 0xD48ADcc9d5D2b9e084F0dfd79703F09dCC976989
Arg [1] : _team (address): 0x5cD7f9CAe78440baf379fE0D961D948860052a30
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d48adcc9d5d2b9e084f0dfd79703f09dcc976989
Arg [1] : 0000000000000000000000005cd7f9cae78440baf379fe0d961d948860052a30
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.