Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 ADAM
Holders
64
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ADAM
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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 ADAM is Ownable, ERC20 { event OpenTrading(); event SwapBack(uint256 amount); event DisableLimits(); event UpdateSwapTokenAt(uint256 amount); event TaxReduced(); error NotAuthorized(); error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public pair; uint256 TAX = 0; uint256 private _initialTax = 20; bool private _taxReduced = false; uint256 _totalSupply = 1_000_000_000 * 10 ** 18; uint256 private _maxAmount = (_totalSupply * 20) / 1000; // 2.0% uint256 private _maxWallet = _maxAmount; bool private _tradingEnabled; address public taxWallet; bool public limit = true; uint256 public swapTokenAt = (_totalSupply * 2) / 1_000; // .2% mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor() ERC20("Adam Back", "ADAM") { taxWallet = _msgSender(); _isExcludedFromFees[taxWallet] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[_msgSender()] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); } receive() external payable {} function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function openTrading() external onlyOwner { require(pair != address(0), "Pair not created yet"); _tradingEnabled = true; emit OpenTrading(); } 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 reduceTax() external onlyOwner { require(!_taxReduced, "Tax already reduced"); _taxReduced = true; emit TaxReduced(); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } 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(_tradingEnabled, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _totalFees = (amount * (_taxReduced ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _totalFees = (amount * (_taxReduced ? 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) { (bool sent, ) = payable(taxWallet).call {value: balance}(""); require(sent, "Fail to send eth to team wallet"); } emit SwapBack(swapTokenAt); } }
// 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"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":[],"name":"TaxReduced","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":"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":"reduceTax","outputs":[],"stateMutability":"nonpayable","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":"taxWallet","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
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff16815250600060075560146008556000600960006101000a81548160ff0219169083151502179055506b033b2e3c9fd0803ce8000000600a556103e86014600a5462000094919062000a09565b620000a0919062000a83565b600b55600b54600c556001600d60156101000a81548160ff0219169083151502179055506103e86002600a54620000d8919062000a09565b620000e4919062000a83565b600e556000601060006101000a81548160ff0219169083151502179055503480156200010f57600080fd5b506040518060400160405280600981526020017f4164616d204261636b00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4144414d000000000000000000000000000000000000000000000000000000008152506200019c62000190620005bb60201b60201c565b620005c360201b60201c565b8160049081620001ad919062000d2b565b508060059081620001bf919062000d2b565b505050620001d2620005bb60201b60201c565b600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600062000354620005bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003c8620003b9620005bb60201b60201c565b600a546200068760201b60201c565b6200040c620003dc620005bb60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007f560201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200045a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000480919062000e7c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000510919062000e7c565b6040518363ffffffff1660e01b81526004016200052f92919062000ebf565b6020604051808303816000875af11580156200054f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000575919062000e7c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062001108565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f09062000f4d565b60405180910390fd5b6200070d60008383620009c660201b60201c565b806003600082825462000721919062000f6f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007d5919062000fbb565b60405180910390a3620007f160008383620009cb60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000867576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085e906200104e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d090620010e6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620009b9919062000fbb565b60405180910390a3505050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a1682620009d0565b915062000a2383620009d0565b925082820262000a3381620009d0565b9150828204841483151762000a4d5762000a4c620009da565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000a9082620009d0565b915062000a9d83620009d0565b92508262000ab05762000aaf62000a54565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b3d57607f821691505b60208210810362000b535762000b5262000af5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bbd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b7e565b62000bc9868362000b7e565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c0c62000c0662000c0084620009d0565b62000be1565b620009d0565b9050919050565b6000819050919050565b62000c288362000beb565b62000c4062000c378262000c13565b84845462000b8b565b825550505050565b600090565b62000c5762000c48565b62000c6481848462000c1d565b505050565b5b8181101562000c8c5762000c8060008262000c4d565b60018101905062000c6a565b5050565b601f82111562000cdb5762000ca58162000b59565b62000cb08462000b6e565b8101602085101562000cc0578190505b62000cd862000ccf8562000b6e565b83018262000c69565b50505b505050565b600082821c905092915050565b600062000d006000198460080262000ce0565b1980831691505092915050565b600062000d1b838362000ced565b9150826002028217905092915050565b62000d368262000abb565b67ffffffffffffffff81111562000d525762000d5162000ac6565b5b62000d5e825462000b24565b62000d6b82828562000c90565b600060209050601f83116001811462000da3576000841562000d8e578287015190505b62000d9a858262000d0d565b86555062000e0a565b601f19841662000db38662000b59565b60005b8281101562000ddd5784890151825560018201915060208501945060208101905062000db6565b8683101562000dfd578489015162000df9601f89168262000ced565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e448262000e17565b9050919050565b62000e568162000e37565b811462000e6257600080fd5b50565b60008151905062000e768162000e4b565b92915050565b60006020828403121562000e955762000e9462000e12565b5b600062000ea58482850162000e65565b91505092915050565b62000eb98162000e37565b82525050565b600060408201905062000ed6600083018562000eae565b62000ee5602083018462000eae565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f35601f8362000eec565b915062000f428262000efd565b602082019050919050565b6000602082019050818103600083015262000f688162000f26565b9050919050565b600062000f7c82620009d0565b915062000f8983620009d0565b925082820190508082111562000fa45762000fa3620009da565b5b92915050565b62000fb581620009d0565b82525050565b600060208201905062000fd2600083018462000faa565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200103660248362000eec565b9150620010438262000fd8565b604082019050919050565b60006020820190508181036000830152620010698162001027565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620010ce60228362000eec565b9150620010db8262001070565b604082019050919050565b600060208201905081810360008301526200110181620010bf565b9050919050565b608051612b9762001132600039600081816108e1015281816109c201526109eb0152612b976000f3fe60806040526004361061016a5760003560e01c806373bc5a36116100d1578063a4d66daf1161008a578063c9567bf911610064578063c9567bf91461053b578063dd62ed3e14610552578063f2fde38b1461058f578063f928364c146105b857610171565b8063a4d66daf146104a8578063a8aa1b31146104d3578063a9059cbb146104fe57610171565b806373bc5a36146103845780637b16cea0146103af578063864b3167146103ec5780638da5cb5b1461041557806395d89b4114610440578063a457c2d71461046b57610171565b8063313ce56711610123578063313ce5671461029a57806339509351146102c557806341fb0d21146103025780636ac5eeee1461031957806370a0823114610330578063715018a61461036d57610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd146102325780632dc0562d1461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105cf565b6040516101989190611cec565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611da7565b610661565b6040516101d59190611e02565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190611e49565b610684565b005b34801561021357600080fd5b5061021c6106e7565b6040516102299190611e98565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190611eb3565b6106f1565b6040516102669190611e02565b60405180910390f35b34801561027b57600080fd5b50610284610720565b6040516102919190611f15565b60405180910390f35b3480156102a657600080fd5b506102af610746565b6040516102bc9190611f4c565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190611da7565b61074f565b6040516102f99190611e02565b60405180910390f35b34801561030e57600080fd5b50610317610786565b005b34801561032557600080fd5b5061032e610827565b005b34801561033c57600080fd5b5061035760048036038101906103529190611f67565b610bb5565b6040516103649190611e98565b60405180910390f35b34801561037957600080fd5b50610382610bfe565b005b34801561039057600080fd5b50610399610c12565b6040516103a69190611e98565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190611f67565b610c18565b6040516103e39190611e02565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190611f94565b610c6e565b005b34801561042157600080fd5b5061042a610d08565b6040516104379190611f15565b60405180910390f35b34801561044c57600080fd5b50610455610d31565b6040516104629190611cec565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190611da7565b610dc3565b60405161049f9190611e02565b60405180910390f35b3480156104b457600080fd5b506104bd610e3a565b6040516104ca9190611e02565b60405180910390f35b3480156104df57600080fd5b506104e8610e4d565b6040516104f59190611f15565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190611da7565b610e73565b6040516105329190611e02565b60405180910390f35b34801561054757600080fd5b50610550610e96565b005b34801561055e57600080fd5b5061057960048036038101906105749190611fc1565b610f78565b6040516105869190611e98565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190611f67565b610fff565b005b3480156105c457600080fd5b506105cd611082565b005b6060600480546105de90612030565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90612030565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b60008061066c611134565b905061067981858561113c565b600191505092915050565b61068c611305565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806106fc611134565b9050610709858285611383565b61071485858561140f565b60019150509392505050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061075a611134565b905061077b81858561076c8589610f78565b6107769190612090565b61113c565b600191505092915050565b61078e611305565b600960009054906101000a900460ff16156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590612110565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507fd6ca02926c317c2f12e122f306c0ce80c6bff5a0ae1d47de49d9414690a220e460405160405180910390a1565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561085f5761085e612130565b5b60405190808252806020026020018201604052801561088d5781602001602082028036833780820191505090505b50905030816000815181106108a5576108a461215f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096e91906121a3565b816001815181106109825761098161215f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506109e9307f0000000000000000000000000000000000000000000000000000000000000000600e5461113c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947600e5460008430426040518663ffffffff1660e01b8152600401610a4d9594939291906122d3565b600060405180830381600087803b158015610a6757600080fd5b505af1158015610a7b573d6000803e3d6000fd5b5050505060004790506000811115610b5d576000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ad59061235e565b60006040518083038185875af1925050503d8060008114610b12576040519150601f19603f3d011682016040523d82523d6000602084013e610b17565b606091505b5050905080610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906123bf565b60405180910390fd5b505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600e54604051610b8e9190611e98565b60405180910390a150506000601060006101000a81548160ff021916908315150217905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c06611305565b610c106000611915565b565b600e5481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c76611305565b6032600a54610c85919061240e565b811115610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906124b1565b60405180910390fd5b80600e819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610cfd9190611e98565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d4090612030565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6c90612030565b8015610db95780601f10610d8e57610100808354040283529160200191610db9565b820191906000526020600020905b815481529060010190602001808311610d9c57829003601f168201915b5050505050905090565b600080610dce611134565b90506000610ddc8286610f78565b905083811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612543565b60405180910390fd5b610e2e828686840361113c565b60019250505092915050565b600d60159054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e7e611134565b9050610e8b81858561140f565b600191505092915050565b610e9e611305565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906125af565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611007611305565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90612641565b60405180910390fd5b61107f81611915565b50565b61108a611305565b600d60159054906101000a900460ff166110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d0906126ad565b60405180910390fd5b6000600d60156101000a81548160ff021916908315150217905550600a54600c81905550600a54600b819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a29061273f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611211906127d1565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f89190611e98565b60405180910390a3505050565b61130d611134565b73ffffffffffffffffffffffffffffffffffffffff1661132b610d08565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061283d565b60405180910390fd5b565b600061138f8484610f78565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140957818110156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906128a9565b60405180910390fd5b611408848484840361113c565b5b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114b05750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806115635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115625750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061157a5750601060009054906101000a900460ff165b1561158f5761158a8383836119d9565b611910565b600d60009054906101000a900460ff166115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590612915565b60405180910390fd5b600d60159054906101000a900460ff161561178a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061169c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116a95750600b5481115b156116e0576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117525750600c548161174684610bb5565b6117509190612090565b115b15611789576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600060646007548361179c9190612935565b6117a6919061240e565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611851576064600960009054906101000a900460ff1661181b5760085461181f565b6007545b8361182a9190612935565b611834919061240e565b9050600e5461184230610bb5565b106118505761184f610827565b5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118e0576064600960009054906101000a900460ff166118c4576008546118c8565b6007545b836118d39190612935565b6118dd919061240e565b90505b6000811115611903576118f48430836119d9565b80826119009190612977565b91505b61190e8484846119d9565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90612aaf565b60405180910390fd5b611ac2838383611c52565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612b41565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c399190611e98565b60405180910390a3611c4c848484611c57565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c96578082015181840152602081019050611c7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cbe82611c5c565b611cc88185611c67565b9350611cd8818560208601611c78565b611ce181611ca2565b840191505092915050565b60006020820190508181036000830152611d068184611cb3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d3e82611d13565b9050919050565b611d4e81611d33565b8114611d5957600080fd5b50565b600081359050611d6b81611d45565b92915050565b6000819050919050565b611d8481611d71565b8114611d8f57600080fd5b50565b600081359050611da181611d7b565b92915050565b60008060408385031215611dbe57611dbd611d0e565b5b6000611dcc85828601611d5c565b9250506020611ddd85828601611d92565b9150509250929050565b60008115159050919050565b611dfc81611de7565b82525050565b6000602082019050611e176000830184611df3565b92915050565b611e2681611de7565b8114611e3157600080fd5b50565b600081359050611e4381611e1d565b92915050565b60008060408385031215611e6057611e5f611d0e565b5b6000611e6e85828601611d5c565b9250506020611e7f85828601611e34565b9150509250929050565b611e9281611d71565b82525050565b6000602082019050611ead6000830184611e89565b92915050565b600080600060608486031215611ecc57611ecb611d0e565b5b6000611eda86828701611d5c565b9350506020611eeb86828701611d5c565b9250506040611efc86828701611d92565b9150509250925092565b611f0f81611d33565b82525050565b6000602082019050611f2a6000830184611f06565b92915050565b600060ff82169050919050565b611f4681611f30565b82525050565b6000602082019050611f616000830184611f3d565b92915050565b600060208284031215611f7d57611f7c611d0e565b5b6000611f8b84828501611d5c565b91505092915050565b600060208284031215611faa57611fa9611d0e565b5b6000611fb884828501611d92565b91505092915050565b60008060408385031215611fd857611fd7611d0e565b5b6000611fe685828601611d5c565b9250506020611ff785828601611d5c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061204857607f821691505b60208210810361205b5761205a612001565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061209b82611d71565b91506120a683611d71565b92508282019050808211156120be576120bd612061565b5b92915050565b7f54617820616c7265616479207265647563656400000000000000000000000000600082015250565b60006120fa601383611c67565b9150612105826120c4565b602082019050919050565b60006020820190508181036000830152612129816120ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061219d81611d45565b92915050565b6000602082840312156121b9576121b8611d0e565b5b60006121c78482850161218e565b91505092915050565b6000819050919050565b6000819050919050565b60006121ff6121fa6121f5846121d0565b6121da565b611d71565b9050919050565b61220f816121e4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61224a81611d33565b82525050565b600061225c8383612241565b60208301905092915050565b6000602082019050919050565b600061228082612215565b61228a8185612220565b935061229583612231565b8060005b838110156122c65781516122ad8882612250565b97506122b883612268565b925050600181019050612299565b5085935050505092915050565b600060a0820190506122e86000830188611e89565b6122f56020830187612206565b81810360408301526123078186612275565b90506123166060830185611f06565b6123236080830184611e89565b9695505050505050565b600081905092915050565b50565b600061234860008361232d565b915061235382612338565b600082019050919050565b60006123698261233b565b9150819050919050565b7f4661696c20746f2073656e642065746820746f207465616d2077616c6c657400600082015250565b60006123a9601f83611c67565b91506123b482612373565b602082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061241982611d71565b915061242483611d71565b925082612434576124336123df565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b600061249b602f83611c67565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061252d602583611c67565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f50616972206e6f74206372656174656420796574000000000000000000000000600082015250565b6000612599601483611c67565b91506125a482612563565b602082019050919050565b600060208201905081810360008301526125c88161258c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262b602683611c67565b9150612636826125cf565b604082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612697601683611c67565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612729602483611c67565b9150612734826126cd565b604082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127bb602283611c67565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612827602083611c67565b9150612832826127f1565b602082019050919050565b600060208201905081810360008301526128568161281a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612893601d83611c67565b915061289e8261285d565b602082019050919050565b600060208201905081810360008301526128c281612886565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b60006128ff601383611c67565b915061290a826128c9565b602082019050919050565b6000602082019050818103600083015261292e816128f2565b9050919050565b600061294082611d71565b915061294b83611d71565b925082820261295981611d71565b915082820484148315176129705761296f612061565b5b5092915050565b600061298282611d71565b915061298d83611d71565b92508282039050818111156129a5576129a4612061565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a07602583611c67565b9150612a12826129ab565b604082019050919050565b60006020820190508181036000830152612a36816129fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a99602383611c67565b9150612aa482612a3d565b604082019050919050565b60006020820190508181036000830152612ac881612a8c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b2b602683611c67565b9150612b3682612acf565b604082019050919050565b60006020820190508181036000830152612b5a81612b1e565b905091905056fea2646970667358221220a67c3836377378aab55bd7cec5d02e1b02728fd10e9af4a9df1037e00be334d064736f6c63430008130033
Deployed Bytecode
0x60806040526004361061016a5760003560e01c806373bc5a36116100d1578063a4d66daf1161008a578063c9567bf911610064578063c9567bf91461053b578063dd62ed3e14610552578063f2fde38b1461058f578063f928364c146105b857610171565b8063a4d66daf146104a8578063a8aa1b31146104d3578063a9059cbb146104fe57610171565b806373bc5a36146103845780637b16cea0146103af578063864b3167146103ec5780638da5cb5b1461041557806395d89b4114610440578063a457c2d71461046b57610171565b8063313ce56711610123578063313ce5671461029a57806339509351146102c557806341fb0d21146103025780636ac5eeee1461031957806370a0823114610330578063715018a61461036d57610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd146102325780632dc0562d1461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105cf565b6040516101989190611cec565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611da7565b610661565b6040516101d59190611e02565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190611e49565b610684565b005b34801561021357600080fd5b5061021c6106e7565b6040516102299190611e98565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190611eb3565b6106f1565b6040516102669190611e02565b60405180910390f35b34801561027b57600080fd5b50610284610720565b6040516102919190611f15565b60405180910390f35b3480156102a657600080fd5b506102af610746565b6040516102bc9190611f4c565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190611da7565b61074f565b6040516102f99190611e02565b60405180910390f35b34801561030e57600080fd5b50610317610786565b005b34801561032557600080fd5b5061032e610827565b005b34801561033c57600080fd5b5061035760048036038101906103529190611f67565b610bb5565b6040516103649190611e98565b60405180910390f35b34801561037957600080fd5b50610382610bfe565b005b34801561039057600080fd5b50610399610c12565b6040516103a69190611e98565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190611f67565b610c18565b6040516103e39190611e02565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190611f94565b610c6e565b005b34801561042157600080fd5b5061042a610d08565b6040516104379190611f15565b60405180910390f35b34801561044c57600080fd5b50610455610d31565b6040516104629190611cec565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190611da7565b610dc3565b60405161049f9190611e02565b60405180910390f35b3480156104b457600080fd5b506104bd610e3a565b6040516104ca9190611e02565b60405180910390f35b3480156104df57600080fd5b506104e8610e4d565b6040516104f59190611f15565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190611da7565b610e73565b6040516105329190611e02565b60405180910390f35b34801561054757600080fd5b50610550610e96565b005b34801561055e57600080fd5b5061057960048036038101906105749190611fc1565b610f78565b6040516105869190611e98565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190611f67565b610fff565b005b3480156105c457600080fd5b506105cd611082565b005b6060600480546105de90612030565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90612030565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b60008061066c611134565b905061067981858561113c565b600191505092915050565b61068c611305565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806106fc611134565b9050610709858285611383565b61071485858561140f565b60019150509392505050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061075a611134565b905061077b81858561076c8589610f78565b6107769190612090565b61113c565b600191505092915050565b61078e611305565b600960009054906101000a900460ff16156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590612110565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507fd6ca02926c317c2f12e122f306c0ce80c6bff5a0ae1d47de49d9414690a220e460405160405180910390a1565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561085f5761085e612130565b5b60405190808252806020026020018201604052801561088d5781602001602082028036833780820191505090505b50905030816000815181106108a5576108a461215f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096e91906121a3565b816001815181106109825761098161215f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506109e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600e5461113c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600e5460008430426040518663ffffffff1660e01b8152600401610a4d9594939291906122d3565b600060405180830381600087803b158015610a6757600080fd5b505af1158015610a7b573d6000803e3d6000fd5b5050505060004790506000811115610b5d576000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ad59061235e565b60006040518083038185875af1925050503d8060008114610b12576040519150601f19603f3d011682016040523d82523d6000602084013e610b17565b606091505b5050905080610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906123bf565b60405180910390fd5b505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600e54604051610b8e9190611e98565b60405180910390a150506000601060006101000a81548160ff021916908315150217905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c06611305565b610c106000611915565b565b600e5481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c76611305565b6032600a54610c85919061240e565b811115610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906124b1565b60405180910390fd5b80600e819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610cfd9190611e98565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d4090612030565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6c90612030565b8015610db95780601f10610d8e57610100808354040283529160200191610db9565b820191906000526020600020905b815481529060010190602001808311610d9c57829003601f168201915b5050505050905090565b600080610dce611134565b90506000610ddc8286610f78565b905083811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612543565b60405180910390fd5b610e2e828686840361113c565b60019250505092915050565b600d60159054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e7e611134565b9050610e8b81858561140f565b600191505092915050565b610e9e611305565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906125af565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611007611305565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90612641565b60405180910390fd5b61107f81611915565b50565b61108a611305565b600d60159054906101000a900460ff166110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d0906126ad565b60405180910390fd5b6000600d60156101000a81548160ff021916908315150217905550600a54600c81905550600a54600b819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a29061273f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611211906127d1565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f89190611e98565b60405180910390a3505050565b61130d611134565b73ffffffffffffffffffffffffffffffffffffffff1661132b610d08565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061283d565b60405180910390fd5b565b600061138f8484610f78565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140957818110156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906128a9565b60405180910390fd5b611408848484840361113c565b5b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114b05750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806115635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115625750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061157a5750601060009054906101000a900460ff165b1561158f5761158a8383836119d9565b611910565b600d60009054906101000a900460ff166115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590612915565b60405180910390fd5b600d60159054906101000a900460ff161561178a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061169c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116a95750600b5481115b156116e0576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117525750600c548161174684610bb5565b6117509190612090565b115b15611789576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600060646007548361179c9190612935565b6117a6919061240e565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611851576064600960009054906101000a900460ff1661181b5760085461181f565b6007545b8361182a9190612935565b611834919061240e565b9050600e5461184230610bb5565b106118505761184f610827565b5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118e0576064600960009054906101000a900460ff166118c4576008546118c8565b6007545b836118d39190612935565b6118dd919061240e565b90505b6000811115611903576118f48430836119d9565b80826119009190612977565b91505b61190e8484846119d9565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90612aaf565b60405180910390fd5b611ac2838383611c52565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612b41565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c399190611e98565b60405180910390a3611c4c848484611c57565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c96578082015181840152602081019050611c7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cbe82611c5c565b611cc88185611c67565b9350611cd8818560208601611c78565b611ce181611ca2565b840191505092915050565b60006020820190508181036000830152611d068184611cb3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d3e82611d13565b9050919050565b611d4e81611d33565b8114611d5957600080fd5b50565b600081359050611d6b81611d45565b92915050565b6000819050919050565b611d8481611d71565b8114611d8f57600080fd5b50565b600081359050611da181611d7b565b92915050565b60008060408385031215611dbe57611dbd611d0e565b5b6000611dcc85828601611d5c565b9250506020611ddd85828601611d92565b9150509250929050565b60008115159050919050565b611dfc81611de7565b82525050565b6000602082019050611e176000830184611df3565b92915050565b611e2681611de7565b8114611e3157600080fd5b50565b600081359050611e4381611e1d565b92915050565b60008060408385031215611e6057611e5f611d0e565b5b6000611e6e85828601611d5c565b9250506020611e7f85828601611e34565b9150509250929050565b611e9281611d71565b82525050565b6000602082019050611ead6000830184611e89565b92915050565b600080600060608486031215611ecc57611ecb611d0e565b5b6000611eda86828701611d5c565b9350506020611eeb86828701611d5c565b9250506040611efc86828701611d92565b9150509250925092565b611f0f81611d33565b82525050565b6000602082019050611f2a6000830184611f06565b92915050565b600060ff82169050919050565b611f4681611f30565b82525050565b6000602082019050611f616000830184611f3d565b92915050565b600060208284031215611f7d57611f7c611d0e565b5b6000611f8b84828501611d5c565b91505092915050565b600060208284031215611faa57611fa9611d0e565b5b6000611fb884828501611d92565b91505092915050565b60008060408385031215611fd857611fd7611d0e565b5b6000611fe685828601611d5c565b9250506020611ff785828601611d5c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061204857607f821691505b60208210810361205b5761205a612001565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061209b82611d71565b91506120a683611d71565b92508282019050808211156120be576120bd612061565b5b92915050565b7f54617820616c7265616479207265647563656400000000000000000000000000600082015250565b60006120fa601383611c67565b9150612105826120c4565b602082019050919050565b60006020820190508181036000830152612129816120ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061219d81611d45565b92915050565b6000602082840312156121b9576121b8611d0e565b5b60006121c78482850161218e565b91505092915050565b6000819050919050565b6000819050919050565b60006121ff6121fa6121f5846121d0565b6121da565b611d71565b9050919050565b61220f816121e4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61224a81611d33565b82525050565b600061225c8383612241565b60208301905092915050565b6000602082019050919050565b600061228082612215565b61228a8185612220565b935061229583612231565b8060005b838110156122c65781516122ad8882612250565b97506122b883612268565b925050600181019050612299565b5085935050505092915050565b600060a0820190506122e86000830188611e89565b6122f56020830187612206565b81810360408301526123078186612275565b90506123166060830185611f06565b6123236080830184611e89565b9695505050505050565b600081905092915050565b50565b600061234860008361232d565b915061235382612338565b600082019050919050565b60006123698261233b565b9150819050919050565b7f4661696c20746f2073656e642065746820746f207465616d2077616c6c657400600082015250565b60006123a9601f83611c67565b91506123b482612373565b602082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061241982611d71565b915061242483611d71565b925082612434576124336123df565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b600061249b602f83611c67565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061252d602583611c67565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f50616972206e6f74206372656174656420796574000000000000000000000000600082015250565b6000612599601483611c67565b91506125a482612563565b602082019050919050565b600060208201905081810360008301526125c88161258c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262b602683611c67565b9150612636826125cf565b604082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612697601683611c67565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612729602483611c67565b9150612734826126cd565b604082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127bb602283611c67565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612827602083611c67565b9150612832826127f1565b602082019050919050565b600060208201905081810360008301526128568161281a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612893601d83611c67565b915061289e8261285d565b602082019050919050565b600060208201905081810360008301526128c281612886565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b60006128ff601383611c67565b915061290a826128c9565b602082019050919050565b6000602082019050818103600083015261292e816128f2565b9050919050565b600061294082611d71565b915061294b83611d71565b925082820261295981611d71565b915082820484148315176129705761296f612061565b5b5092915050565b600061298282611d71565b915061298d83611d71565b92508282039050818111156129a5576129a4612061565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a07602583611c67565b9150612a12826129ab565b604082019050919050565b60006020820190508181036000830152612a36816129fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a99602383611c67565b9150612aa482612a3d565b604082019050919050565b60006020820190508181036000830152612ac881612a8c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b2b602683611c67565b9150612b3682612acf565b604082019050919050565b60006020820190508181036000830152612b5a81612b1e565b905091905056fea2646970667358221220a67c3836377378aab55bd7cec5d02e1b02728fd10e9af4a9df1037e00be334d064736f6c63430008130033
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.