More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21269157 | 102 days ago | IN | 0 ETH | 0.00036212 | ||||
Approve | 21267358 | 102 days ago | IN | 0 ETH | 0.00055784 | ||||
Approve | 21266782 | 103 days ago | IN | 0 ETH | 0.0008835 | ||||
Approve | 21266550 | 103 days ago | IN | 0 ETH | 0.00083658 | ||||
Approve | 21266535 | 103 days ago | IN | 0 ETH | 0.00088521 | ||||
Approve | 21266503 | 103 days ago | IN | 0 ETH | 0.00087719 | ||||
Approve | 21266433 | 103 days ago | IN | 0 ETH | 0.0010026 | ||||
Approve | 21266433 | 103 days ago | IN | 0 ETH | 0.00090911 | ||||
Approve | 21266430 | 103 days ago | IN | 0 ETH | 0.00101167 | ||||
Approve | 21266429 | 103 days ago | IN | 0 ETH | 0.00099255 | ||||
Approve | 21266426 | 103 days ago | IN | 0 ETH | 0.0009406 | ||||
Approve | 21266425 | 103 days ago | IN | 0 ETH | 0.00079442 | ||||
Approve | 21266423 | 103 days ago | IN | 0 ETH | 0.00103108 | ||||
Approve | 21266422 | 103 days ago | IN | 0 ETH | 0.00091612 | ||||
Remove Limits | 21266420 | 103 days ago | IN | 0 ETH | 0.00055633 | ||||
Approve | 21266415 | 103 days ago | IN | 0 ETH | 0.00093206 | ||||
Approve | 21266415 | 103 days ago | IN | 0 ETH | 0.00102555 | ||||
Transfer | 21266414 | 103 days ago | IN | 0 ETH | 0.00095489 | ||||
Transfer | 21266414 | 103 days ago | IN | 0 ETH | 0.00095489 | ||||
Transfer | 21266414 | 103 days ago | IN | 0 ETH | 0.00095489 | ||||
Transfer | 21266414 | 103 days ago | IN | 0 ETH | 0.00095489 | ||||
Open Trading | 21266414 | 103 days ago | IN | 0 ETH | 0.0012885 | ||||
Transfer | 21266414 | 103 days ago | IN | 0 ETH | 0.00095489 | ||||
Approve | 21266138 | 103 days ago | IN | 0 ETH | 0.00088596 | ||||
Initialize Pair | 21266131 | 103 days ago | IN | 0 ETH | 0.04698177 |
Latest 20 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 21271077 | 102 days ago | 0.02041488 ETH | ||||
Transfer | 21271077 | 102 days ago | 0.02041488 ETH | ||||
Transfer | 21270002 | 102 days ago | 0.02091136 ETH | ||||
Transfer | 21270002 | 102 days ago | 0.02091136 ETH | ||||
Transfer | 21269161 | 102 days ago | 0.02133663 ETH | ||||
Transfer | 21269161 | 102 days ago | 0.02133663 ETH | ||||
Transfer | 21267362 | 102 days ago | 0.02173668 ETH | ||||
Transfer | 21267362 | 102 days ago | 0.02173668 ETH | ||||
Transfer | 21266846 | 103 days ago | 0.0226625 ETH | ||||
Transfer | 21266846 | 103 days ago | 0.0226625 ETH | ||||
Transfer | 21266695 | 103 days ago | 0.02381677 ETH | ||||
Transfer | 21266695 | 103 days ago | 0.02381677 ETH | ||||
Transfer | 21266560 | 103 days ago | 0.02415048 ETH | ||||
Transfer | 21266560 | 103 days ago | 0.02415048 ETH | ||||
Transfer | 21266541 | 103 days ago | 0.02469007 ETH | ||||
Transfer | 21266541 | 103 days ago | 0.02469007 ETH | ||||
Transfer | 21266536 | 103 days ago | 0.02523654 ETH | ||||
Transfer | 21266536 | 103 days ago | 0.02523654 ETH | ||||
Transfer | 21266462 | 103 days ago | 0.02365769 ETH | ||||
Transfer | 21266462 | 103 days ago | 0.02365769 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Oculus
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 1000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// tg: https://t.me/OculusERC // twitter: https://x.com/OculusErc // website: https://www.clickoculus.com // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); 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); } pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { 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; } pragma solidity >=0.8.24; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Oculus is ERC20, Ownable { mapping(address => bool) private _isExcludedFromFee; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; address public buyBacks; uint256 private _maxTax = 20; uint256 private _taxReductionTick = 2; uint256 private _blockAtLaunch; uint256 private _blockRemoveFirstLimits = 4; uint256 private _blockRemoveSecondLimits = 10; uint8 private constant _decimals = 18; uint256 private _tTotal = 10_000 * 10 ** _decimals; uint256 private _maxWalletSize = (_tTotal * 70) / 10000; // 0.7% of total supply uint256 private swapThreshold = (_tTotal * 50) / 10000; // 0.5% of total supply IUniswapV2Router02 private router; address public pair; bool private initialized = false; bool public tradingOpen = false; bool private inSwap = false; bool private swapEnabled = false; uint256 private _launchTimestamp; uint256 private _epochDuration = 12 hours; uint256 private _bonusPercentage = 1; // 1% per epoch struct Protec { uint256 count; uint256 lastCall; } mapping(address => uint256) private _userBuyEpoch; mapping(address => Protec) private _userTokenBurn; mapping(address => Protec) private _userTaxReduction; mapping(address => uint256) private _userLastClaimedEpoch; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor(address initialOwner, address _buyBacks) ERC20("Oculus", "OCULUS") Ownable(initialOwner) { router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); buyBacks = _buyBacks; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _approve(address(this), address(router), type(uint256).max); _approve(buyBacks, address(this), type(uint256).max); _mint(initialOwner, _tTotal); emit Transfer(address(0), msg.sender, _tTotal); } function initializePair() external onlyOwner returns (address) { require(!initialized, "Already initialized"); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); initialized = true; return pair; } function setPair(address _pair) external onlyOwner { pair = _pair; } function setIsInitialized(bool _initialized) external onlyOwner { initialized = _initialized; } function rescueTokens(address token, uint256 amount) external onlyOwner { IERC20(token).transfer(msg.sender, amount); } function rescueETH(uint256 amount) external onlyOwner { bool tmpSuccess; (tmpSuccess, ) = payable(msg.sender).call{value: amount, gas: 5000000}( "" ); } function removeLimits() external onlyOwner { _maxWalletSize = _tTotal; } function openTrading() external onlyOwner { require(!tradingOpen, "trading is already open"); swapEnabled = true; tradingOpen = true; _blockAtLaunch = block.number; _launchTimestamp = block.timestamp; } // User interactions function pressButton(string memory name) external { require(_userBuyEpoch[msg.sender] > 0, "You must buy first"); if (_compare(name, "tokenBurn")) { _tokenBurn(msg.sender); } else if (_compare(name, "taxReduction")) { _taxReduction(msg.sender); } else if (_compare(name, "claimBonus")) { _claimBonus(msg.sender); } else { revert("Invalid button"); } } // Transfer functions function transfer( address recipient, uint256 amount ) public override returns (bool) { require(initialized || msg.sender == owner(), "Not yet initialized"); if (msg.sender == pair) { return update(msg.sender, recipient, amount); } else { return _basicTransfer(msg.sender, recipient, amount); } } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { address spender = msg.sender; _spendAllowance(sender, spender, amount); update(sender, recipient, amount); return true; } function update( address sender, address recipient, uint256 amount ) internal returns (bool) { require( _isExcludedFromFee[sender] || _isExcludedFromFee[recipient] || tradingOpen, "Not authorized to trade yet" ); uint256 blockSinceLaunch = block.number - _blockAtLaunch; // Checks max transaction limit if (blockSinceLaunch < _blockRemoveFirstLimits && _blockAtLaunch != 0) { if ( sender != owner() && recipient != owner() && recipient != DEAD ) { if (recipient != pair) { uint256 _limit = _maxWalletSize; require( _isExcludedFromFee[recipient] || (balanceOf(recipient) + amount <= _limit), "Transfer amount exceeds the MaxWallet size." ); } } } //shouldSwapBack if (shouldSwapBack() && recipient == pair) { swapBack(); } //Check if should Take Fee uint256 amountReceived = (!shouldTakeFee(sender) || !shouldTakeFee(recipient)) ? amount : takeFee(sender, recipient, amount); _transfer(sender, recipient, amountReceived); return true; } function _basicTransfer( address sender, address recipient, uint256 amount ) internal returns (bool) { _transfer(sender, recipient, amount); return true; } function shouldTakeFee(address sender) internal view returns (bool) { return !_isExcludedFromFee[sender]; } function takeFee( address sender, address recipient, uint256 amount ) internal returns (uint256) { uint256 feeAmount = 0; uint256 blockSinceLaunch = block.number - _blockAtLaunch; uint256 tax; if (blockSinceLaunch > _blockRemoveSecondLimits) { if (sender == pair && recipient != pair) { tax = 1; } else if (sender != pair && recipient == pair) { tax = 6; } } else if (blockSinceLaunch > _blockRemoveFirstLimits) { tax = 20; } else { tax = 40; } feeAmount = (amount * tax) / 100; if (feeAmount > 0) { _transfer(sender, address(this), feeAmount); } return amount - feeAmount; } function shouldSwapBack() internal view returns (bool) { return msg.sender != pair && !inSwap && swapEnabled && balanceOf(address(this)) >= swapThreshold; } function swapBack() internal lockTheSwap { uint256 amountToSwap = swapThreshold; address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amountToSwap, 0, path, address(this), block.timestamp + 5 ); uint256 amountETHDev = address(this).balance; if (amountETHDev > 0) { bool tmpSuccess; (tmpSuccess, ) = payable(owner()).call{ value: amountETHDev, gas: 5000000 }(""); } } function _tokenBurn(address user) private { Protec storage infos = _userTokenBurn[user]; if (balanceOf(buyBacks) == 0) { infos.lastCall = _epoch(); return; } require(infos.lastCall != _epoch(), "Already Burned"); infos.count++; infos.lastCall = _epoch(); } function _taxReduction(address user) private { Protec storage infos = _userTaxReduction[user]; require(infos.lastCall != _epoch(), "Already reduced"); if (infos.count < 10) { infos.count++; } infos.lastCall = _epoch(); } function _claimBonus(address user) private { require( _userLastClaimedEpoch[user] != _epoch(), "Already claimed this epoch" ); _userLastClaimedEpoch[user] = _epoch(); } function _epoch() private view returns (uint256) { return 1 + (block.timestamp - _launchTimestamp) / _epochDuration; } function _compare( string memory a, string memory b ) private pure returns (bool) { return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b)))); } function setSwapThreshold(uint256 newTax) external onlyOwner { swapThreshold = newTax; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"_buyBacks","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBacks","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initializePair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"name","type":"string"}],"name":"pressButton","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_initialized","type":"bool"}],"name":"setIsInitialized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
6080604052601460085560026009556004600b55600a600c556012600a6200002891906200062e565b620000369061271062000646565b600d55612710600d5460466200004d919062000646565b62000059919062000660565b600e55612710600d54603262000070919062000646565b6200007c919062000660565b600f556011805463ffffffff60a01b1916905561a8c06013556001601455348015620000a757600080fd5b50604051620025ca380380620025ca833981016040819052620000ca91620006a0565b81604051806040016040528060068152602001654f63756c757360d01b815250604051806040016040528060068152602001654f43554c555360d01b81525081600390816200011a91906200077e565b5060046200012982826200077e565b5050506001600160a01b0381166200015c57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620001678162000277565b5060108054737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031991821617909155600780549091166001600160a01b038316179055600160066000620001be6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308082526006909452919091208054909316600117909255601054620002169216600019620002c9565b60075462000231906001600160a01b031630600019620002c9565b6200024582600d54620002dd60201b60201c565b600d546040519081523390600090600080516020620025aa8339815191529060200160405180910390a3505062000860565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002d883838360016200031b565b505050565b6001600160a01b038216620003095760405163ec442f0560e01b81526000600482015260240162000153565b6200031760008383620003f7565b5050565b6001600160a01b038416620003475760405163e602df0560e01b81526000600482015260240162000153565b6001600160a01b0383166200037357604051634a1406b160e11b81526000600482015260240162000153565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015620003f157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620003e891815260200190565b60405180910390a35b50505050565b6001600160a01b038316620004265780600260008282546200041a91906200084a565b909155506200049a9050565b6001600160a01b038316600090815260208190526040902054818110156200047b5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000153565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620004b857600280548290039055620004d7565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b0316600080516020620025aa833981519152836040516200050c91815260200190565b60405180910390a3505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200057057816000190482111562000554576200055462000519565b808516156200056257918102915b93841c939080029062000534565b509250929050565b600082620005895750600162000628565b81620005985750600062000628565b8160018114620005b15760028114620005bc57620005dc565b600191505062000628565b60ff841115620005d057620005d062000519565b50506001821b62000628565b5060208310610133831016604e8410600b841016171562000601575081810a62000628565b6200060d83836200052f565b806000190482111562000624576200062462000519565b0290505b92915050565b60006200063f60ff84168362000578565b9392505050565b808202811582820484141762000628576200062862000519565b6000826200067e57634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b03811681146200069b57600080fd5b919050565b60008060408385031215620006b457600080fd5b620006bf8362000683565b9150620006cf6020840162000683565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070357607f821691505b6020821081036200072457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002d8576000816000526020600020601f850160051c81016020861015620007555750805b601f850160051c820191505b81811015620007765782815560010162000761565b505050505050565b81516001600160401b038111156200079a576200079a620006d8565b620007b281620007ab8454620006ee565b846200072a565b602080601f831160018114620007ea5760008415620007d15750858301515b600019600386901b1c1916600185901b17855562000776565b600085815260208120601f198616915b828110156200081b57888601518255948401946001909101908401620007fa565b50858210156200083a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000628576200062862000519565b611d3a80620008706000396000f3fe60806040526004361061018f5760003560e01c80638da5cb5b116100d6578063a9059cbb1161007f578063dd62ed3e11610059578063dd62ed3e14610448578063f2fde38b1461048e578063ffb54a99146104ae57600080fd5b8063a9059cbb146103f3578063c9567bf914610413578063c9e432061461042857600080fd5b80639d0014b1116100b05780639d0014b1146103935780639e252f00146103b3578063a8aa1b31146103d357600080fd5b80638da5cb5b14610340578063952beedc1461035e57806395d89b411461037e57600080fd5b80634fab9e4c11610138578063715018a611610112578063715018a6146102f6578063751039fc1461030b5780638187f5161461032057600080fd5b80634fab9e4c1461027357806357376198146102a057806370a08231146102c057600080fd5b806318160ddd1161016957806318160ddd1461021857806323b872dd14610237578063313ce5671461025757600080fd5b8063013afd141461019b57806306fdde03146101bd578063095ea7b3146101e857600080fd5b3661019657005b600080fd5b3480156101a757600080fd5b506101bb6101b636600461192a565b6104cf565b005b3480156101c957600080fd5b506101d2610510565b6040516101df9190611972565b60405180910390f35b3480156101f457600080fd5b506102086102033660046119ba565b6105a2565b60405190151581526020016101df565b34801561022457600080fd5b506002545b6040519081526020016101df565b34801561024357600080fd5b506102086102523660046119e6565b6105bc565b34801561026357600080fd5b50604051601281526020016101df565b34801561027f57600080fd5b506102886105e1565b6040516001600160a01b0390911681526020016101df565b3480156102ac57600080fd5b506101bb6102bb3660046119ba565b610812565b3480156102cc57600080fd5b506102296102db366004611a27565b6001600160a01b031660009081526020819052604090205490565b34801561030257600080fd5b506101bb6108a9565b34801561031757600080fd5b506101bb6108bd565b34801561032c57600080fd5b506101bb61033b366004611a27565b6108cd565b34801561034c57600080fd5b506005546001600160a01b0316610288565b34801561036a57600080fd5b50600754610288906001600160a01b031681565b34801561038a57600080fd5b506101d2610904565b34801561039f57600080fd5b506101bb6103ae366004611a44565b610913565b3480156103bf57600080fd5b506101bb6103ce366004611a44565b610920565b3480156103df57600080fd5b50601154610288906001600160a01b031681565b3480156103ff57600080fd5b5061020861040e3660046119ba565b61097c565b34801561041f57600080fd5b506101bb610a1c565b34801561043457600080fd5b506101bb610443366004611a73565b610aca565b34801561045457600080fd5b50610229610463366004611b24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561049a57600080fd5b506101bb6104a9366004611a27565b610c58565b3480156104ba57600080fd5b5060115461020890600160a81b900460ff1681565b6104d7610cac565b60118054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606003805461051f90611b5d565b80601f016020809104026020016040519081016040528092919081815260200182805461054b90611b5d565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b6000336105b0818585610cf2565b60019150505b92915050565b6000336105ca858285610cff565b6105d5858585610d96565b50600195945050505050565b60006105eb610cac565b601154600160a01b900460ff161561064a5760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a65640000000000000000000000000060448201526064015b60405180910390fd5b601060009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c19190611b97565b6001600160a01b031663c9c6539630601060009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107479190611b97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156107ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d09190611b97565b601180547fffffffffffffffffffffff000000000000000000000000000000000000000000166001600160a01b0392831617600160a01b179081905516905090565b61081a610cac565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a49190611bb4565b505050565b6108b1610cac565b6108bb6000611016565b565b6108c5610cac565b600d54600e55565b6108d5610cac565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60606004805461051f90611b5d565b61091b610cac565b600f55565b610928610cac565b6040516000903390624c4b4090849084818181858888f193505050503d8060008114610970576040519150601f19603f3d011682016040523d82523d6000602084013e610975565b606091505b5050505050565b601154600090600160a01b900460ff16806109a157506005546001600160a01b031633145b6109ed5760405162461bcd60e51b815260206004820152601360248201527f4e6f742079657420696e697469616c697a6564000000000000000000000000006044820152606401610641565b6011546001600160a01b03163303610a1157610a0a338484610d96565b90506105b6565b610a0a338484611075565b610a24610cac565b601154600160a81b900460ff1615610a7e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610641565b601180547fffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffffff167701000100000000000000000000000000000000000000000017905543600a5542601255565b33600090815260156020526040902054610b265760405162461bcd60e51b815260206004820152601260248201527f596f75206d7573742062757920666972737400000000000000000000000000006044820152606401610641565b610b65816040518060400160405280600981526020017f746f6b656e4275726e000000000000000000000000000000000000000000000081525061108c565b15610b7657610b73336110e5565b50565b610bb5816040518060400160405280600c81526020017f746178526564756374696f6e000000000000000000000000000000000000000081525061108c565b15610bc357610b733361119d565b610c02816040518060400160405280600a81526020017f636c61696d426f6e75730000000000000000000000000000000000000000000081525061108c565b15610c1057610b733361122f565b60405162461bcd60e51b815260206004820152600e60248201527f496e76616c696420627574746f6e0000000000000000000000000000000000006044820152606401610641565b610c60610cac565b6001600160a01b038116610ca3576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b610b7381611016565b6005546001600160a01b031633146108bb576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610641565b6108a483838360016112c1565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d905781811015610d81576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610641565b610d90848484840360006112c1565b50505050565b6001600160a01b03831660009081526006602052604081205460ff1680610dd557506001600160a01b03831660009081526006602052604090205460ff165b80610de95750601154600160a81b900460ff165b610e355760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420617574686f72697a656420746f2074726164652079657400000000006044820152606401610641565b6000600a5443610e459190611be7565b9050600b5481108015610e595750600a5415155b15610f82576005546001600160a01b03868116911614801590610e8a57506005546001600160a01b03858116911614155b8015610ea157506001600160a01b03841661dead14155b15610f82576011546001600160a01b03858116911614610f8257600e546001600160a01b03851660009081526006602052604090205460ff1680610f0e57508084610f01876001600160a01b031660009081526020819052604090205490565b610f0b9190611bfa565b11155b610f805760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865204d61785760448201527f616c6c65742073697a652e0000000000000000000000000000000000000000006064820152608401610641565b505b610f8a6113c8565b8015610fa357506011546001600160a01b038581169116145b15610fb057610fb061143b565b6001600160a01b03851660009081526006602052604081205460ff16151580610ff357506001600160a01b03851660009081526006602052604090205460ff1615155b61100757611002868686611639565b611009565b835b90506105d5868683611720565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611082848484611720565b5060019392505050565b60008160405160200161109f9190611c0d565b60405160208183030381529060405280519060200120836040516020016110c69190611c0d565b6040516020818303038152906040528051906020012014905092915050565b6001600160a01b0381811660009081526016602090815260408083206007549094168352908290529020546000036111285761111f6117b1565b60019091015550565b6111306117b1565b8160010154036111825760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479204275726e65640000000000000000000000000000000000006044820152606401610641565b805481600061119083611c29565b919050555061111f6117b1565b6001600160a01b03811660009081526017602052604090206111bd6117b1565b81600101540361120f5760405162461bcd60e51b815260206004820152600f60248201527f416c7265616479207265647563656400000000000000000000000000000000006044820152606401610641565b8054600a111561122757805481600061119083611c29565b61111f6117b1565b6112376117b1565b6001600160a01b0382166000908152601860205260409020540361129d5760405162461bcd60e51b815260206004820152601a60248201527f416c726561647920636c61696d656420746869732065706f63680000000000006044820152606401610641565b6112a56117b1565b6001600160a01b03909116600090815260186020526040902055565b6001600160a01b038416611304576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b038316611347576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d9057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113ba91815260200190565b60405180910390a350505050565b6011546000906001600160a01b031633148015906113f05750601154600160b01b900460ff16155b8015611419575060115477010000000000000000000000000000000000000000000000900460ff165b80156114365750600f543060009081526020819052604090205410155b905090565b6011805460ff60b01b1916600160b01b179055600f54604080516002808252606082018352600092602083019080368337019050509050308160008151811061148657611486611c42565b6001600160a01b03928316602091820292909201810191909152601054604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c9190611b97565b8160018151811061152f5761152f611c42565b6001600160a01b0392831660209182029290920101526010541663791ac947836000843061155e426005611bfa565b6040518663ffffffff1660e01b815260040161157e959493929190611c58565b600060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b5047925050811590506116275760006115cd6005546001600160a01b031690565b6001600160a01b031682624c4b4090604051600060405180830381858888f193505050503d806000811461161d576040519150601f19603f3d011682016040523d82523d6000602084013e611622565b606091505b505050505b50506011805460ff60b01b1916905550565b600a546000908190819061164d9043611be7565b90506000600c548211156116cc576011546001600160a01b03888116911614801561168657506011546001600160a01b03878116911614155b15611693575060016116e2565b6011546001600160a01b038881169116148015906116be57506011546001600160a01b038781169116145b156116c7575060065b6116e2565b600b548211156116de575060146116e2565b5060285b60646116ee8287611ccb565b6116f89190611ce2565b9250821561170b5761170b873085611720565b6117158386611be7565b979650505050505050565b6001600160a01b038316611763576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b0382166117a6576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6108a48383836117d9565b6000601354601254426117c49190611be7565b6117ce9190611ce2565b611436906001611bfa565b6001600160a01b0383166118045780600260008282546117f99190611bfa565b9091555061188f9050565b6001600160a01b03831660009081526020819052604090205481811015611870576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610641565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166118ab576002805482900390556118ca565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161190f91815260200190565b60405180910390a3505050565b8015158114610b7357600080fd5b60006020828403121561193c57600080fd5b81356119478161191c565b9392505050565b60005b83811015611969578181015183820152602001611951565b50506000910152565b602081526000825180602084015261199181604085016020870161194e565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610b7357600080fd5b600080604083850312156119cd57600080fd5b82356119d8816119a5565b946020939093013593505050565b6000806000606084860312156119fb57600080fd5b8335611a06816119a5565b92506020840135611a16816119a5565b929592945050506040919091013590565b600060208284031215611a3957600080fd5b8135611947816119a5565b600060208284031215611a5657600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a8557600080fd5b813567ffffffffffffffff80821115611a9d57600080fd5b818401915084601f830112611ab157600080fd5b813581811115611ac357611ac3611a5d565b604051601f8201601f19908116603f01168101908382118183101715611aeb57611aeb611a5d565b81604052828152876020848701011115611b0457600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611b3757600080fd5b8235611b42816119a5565b91506020830135611b52816119a5565b809150509250929050565b600181811c90821680611b7157607f821691505b602082108103611b9157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611ba957600080fd5b8151611947816119a5565b600060208284031215611bc657600080fd5b81516119478161191c565b634e487b7160e01b600052601160045260246000fd5b818103818111156105b6576105b6611bd1565b808201808211156105b6576105b6611bd1565b60008251611c1f81846020870161194e565b9190910192915050565b600060018201611c3b57611c3b611bd1565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611caa5784516001600160a01b031683529383019391830191600101611c85565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176105b6576105b6611bd1565b600082611cff57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220b48c9081bd7d207b345f2499fa366fbad8cadcb671b8d20a79cc07027dfc2d0564736f6c63430008180033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000b0cffef1d07357a516244c660e2c599d6baa48940000000000000000000000005d25eff16887da37af1f0c7bacea3f80efecb003
Deployed Bytecode
0x60806040526004361061018f5760003560e01c80638da5cb5b116100d6578063a9059cbb1161007f578063dd62ed3e11610059578063dd62ed3e14610448578063f2fde38b1461048e578063ffb54a99146104ae57600080fd5b8063a9059cbb146103f3578063c9567bf914610413578063c9e432061461042857600080fd5b80639d0014b1116100b05780639d0014b1146103935780639e252f00146103b3578063a8aa1b31146103d357600080fd5b80638da5cb5b14610340578063952beedc1461035e57806395d89b411461037e57600080fd5b80634fab9e4c11610138578063715018a611610112578063715018a6146102f6578063751039fc1461030b5780638187f5161461032057600080fd5b80634fab9e4c1461027357806357376198146102a057806370a08231146102c057600080fd5b806318160ddd1161016957806318160ddd1461021857806323b872dd14610237578063313ce5671461025757600080fd5b8063013afd141461019b57806306fdde03146101bd578063095ea7b3146101e857600080fd5b3661019657005b600080fd5b3480156101a757600080fd5b506101bb6101b636600461192a565b6104cf565b005b3480156101c957600080fd5b506101d2610510565b6040516101df9190611972565b60405180910390f35b3480156101f457600080fd5b506102086102033660046119ba565b6105a2565b60405190151581526020016101df565b34801561022457600080fd5b506002545b6040519081526020016101df565b34801561024357600080fd5b506102086102523660046119e6565b6105bc565b34801561026357600080fd5b50604051601281526020016101df565b34801561027f57600080fd5b506102886105e1565b6040516001600160a01b0390911681526020016101df565b3480156102ac57600080fd5b506101bb6102bb3660046119ba565b610812565b3480156102cc57600080fd5b506102296102db366004611a27565b6001600160a01b031660009081526020819052604090205490565b34801561030257600080fd5b506101bb6108a9565b34801561031757600080fd5b506101bb6108bd565b34801561032c57600080fd5b506101bb61033b366004611a27565b6108cd565b34801561034c57600080fd5b506005546001600160a01b0316610288565b34801561036a57600080fd5b50600754610288906001600160a01b031681565b34801561038a57600080fd5b506101d2610904565b34801561039f57600080fd5b506101bb6103ae366004611a44565b610913565b3480156103bf57600080fd5b506101bb6103ce366004611a44565b610920565b3480156103df57600080fd5b50601154610288906001600160a01b031681565b3480156103ff57600080fd5b5061020861040e3660046119ba565b61097c565b34801561041f57600080fd5b506101bb610a1c565b34801561043457600080fd5b506101bb610443366004611a73565b610aca565b34801561045457600080fd5b50610229610463366004611b24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561049a57600080fd5b506101bb6104a9366004611a27565b610c58565b3480156104ba57600080fd5b5060115461020890600160a81b900460ff1681565b6104d7610cac565b60118054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606003805461051f90611b5d565b80601f016020809104026020016040519081016040528092919081815260200182805461054b90611b5d565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b6000336105b0818585610cf2565b60019150505b92915050565b6000336105ca858285610cff565b6105d5858585610d96565b50600195945050505050565b60006105eb610cac565b601154600160a01b900460ff161561064a5760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a65640000000000000000000000000060448201526064015b60405180910390fd5b601060009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c19190611b97565b6001600160a01b031663c9c6539630601060009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107479190611b97565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156107ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d09190611b97565b601180547fffffffffffffffffffffff000000000000000000000000000000000000000000166001600160a01b0392831617600160a01b179081905516905090565b61081a610cac565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a49190611bb4565b505050565b6108b1610cac565b6108bb6000611016565b565b6108c5610cac565b600d54600e55565b6108d5610cac565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60606004805461051f90611b5d565b61091b610cac565b600f55565b610928610cac565b6040516000903390624c4b4090849084818181858888f193505050503d8060008114610970576040519150601f19603f3d011682016040523d82523d6000602084013e610975565b606091505b5050505050565b601154600090600160a01b900460ff16806109a157506005546001600160a01b031633145b6109ed5760405162461bcd60e51b815260206004820152601360248201527f4e6f742079657420696e697469616c697a6564000000000000000000000000006044820152606401610641565b6011546001600160a01b03163303610a1157610a0a338484610d96565b90506105b6565b610a0a338484611075565b610a24610cac565b601154600160a81b900460ff1615610a7e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610641565b601180547fffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffffff167701000100000000000000000000000000000000000000000017905543600a5542601255565b33600090815260156020526040902054610b265760405162461bcd60e51b815260206004820152601260248201527f596f75206d7573742062757920666972737400000000000000000000000000006044820152606401610641565b610b65816040518060400160405280600981526020017f746f6b656e4275726e000000000000000000000000000000000000000000000081525061108c565b15610b7657610b73336110e5565b50565b610bb5816040518060400160405280600c81526020017f746178526564756374696f6e000000000000000000000000000000000000000081525061108c565b15610bc357610b733361119d565b610c02816040518060400160405280600a81526020017f636c61696d426f6e75730000000000000000000000000000000000000000000081525061108c565b15610c1057610b733361122f565b60405162461bcd60e51b815260206004820152600e60248201527f496e76616c696420627574746f6e0000000000000000000000000000000000006044820152606401610641565b610c60610cac565b6001600160a01b038116610ca3576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b610b7381611016565b6005546001600160a01b031633146108bb576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610641565b6108a483838360016112c1565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d905781811015610d81576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610641565b610d90848484840360006112c1565b50505050565b6001600160a01b03831660009081526006602052604081205460ff1680610dd557506001600160a01b03831660009081526006602052604090205460ff165b80610de95750601154600160a81b900460ff165b610e355760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420617574686f72697a656420746f2074726164652079657400000000006044820152606401610641565b6000600a5443610e459190611be7565b9050600b5481108015610e595750600a5415155b15610f82576005546001600160a01b03868116911614801590610e8a57506005546001600160a01b03858116911614155b8015610ea157506001600160a01b03841661dead14155b15610f82576011546001600160a01b03858116911614610f8257600e546001600160a01b03851660009081526006602052604090205460ff1680610f0e57508084610f01876001600160a01b031660009081526020819052604090205490565b610f0b9190611bfa565b11155b610f805760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865204d61785760448201527f616c6c65742073697a652e0000000000000000000000000000000000000000006064820152608401610641565b505b610f8a6113c8565b8015610fa357506011546001600160a01b038581169116145b15610fb057610fb061143b565b6001600160a01b03851660009081526006602052604081205460ff16151580610ff357506001600160a01b03851660009081526006602052604090205460ff1615155b61100757611002868686611639565b611009565b835b90506105d5868683611720565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611082848484611720565b5060019392505050565b60008160405160200161109f9190611c0d565b60405160208183030381529060405280519060200120836040516020016110c69190611c0d565b6040516020818303038152906040528051906020012014905092915050565b6001600160a01b0381811660009081526016602090815260408083206007549094168352908290529020546000036111285761111f6117b1565b60019091015550565b6111306117b1565b8160010154036111825760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479204275726e65640000000000000000000000000000000000006044820152606401610641565b805481600061119083611c29565b919050555061111f6117b1565b6001600160a01b03811660009081526017602052604090206111bd6117b1565b81600101540361120f5760405162461bcd60e51b815260206004820152600f60248201527f416c7265616479207265647563656400000000000000000000000000000000006044820152606401610641565b8054600a111561122757805481600061119083611c29565b61111f6117b1565b6112376117b1565b6001600160a01b0382166000908152601860205260409020540361129d5760405162461bcd60e51b815260206004820152601a60248201527f416c726561647920636c61696d656420746869732065706f63680000000000006044820152606401610641565b6112a56117b1565b6001600160a01b03909116600090815260186020526040902055565b6001600160a01b038416611304576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b038316611347576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d9057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113ba91815260200190565b60405180910390a350505050565b6011546000906001600160a01b031633148015906113f05750601154600160b01b900460ff16155b8015611419575060115477010000000000000000000000000000000000000000000000900460ff165b80156114365750600f543060009081526020819052604090205410155b905090565b6011805460ff60b01b1916600160b01b179055600f54604080516002808252606082018352600092602083019080368337019050509050308160008151811061148657611486611c42565b6001600160a01b03928316602091820292909201810191909152601054604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c9190611b97565b8160018151811061152f5761152f611c42565b6001600160a01b0392831660209182029290920101526010541663791ac947836000843061155e426005611bfa565b6040518663ffffffff1660e01b815260040161157e959493929190611c58565b600060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b5047925050811590506116275760006115cd6005546001600160a01b031690565b6001600160a01b031682624c4b4090604051600060405180830381858888f193505050503d806000811461161d576040519150601f19603f3d011682016040523d82523d6000602084013e611622565b606091505b505050505b50506011805460ff60b01b1916905550565b600a546000908190819061164d9043611be7565b90506000600c548211156116cc576011546001600160a01b03888116911614801561168657506011546001600160a01b03878116911614155b15611693575060016116e2565b6011546001600160a01b038881169116148015906116be57506011546001600160a01b038781169116145b156116c7575060065b6116e2565b600b548211156116de575060146116e2565b5060285b60646116ee8287611ccb565b6116f89190611ce2565b9250821561170b5761170b873085611720565b6117158386611be7565b979650505050505050565b6001600160a01b038316611763576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6001600160a01b0382166117a6576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610641565b6108a48383836117d9565b6000601354601254426117c49190611be7565b6117ce9190611ce2565b611436906001611bfa565b6001600160a01b0383166118045780600260008282546117f99190611bfa565b9091555061188f9050565b6001600160a01b03831660009081526020819052604090205481811015611870576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610641565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166118ab576002805482900390556118ca565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161190f91815260200190565b60405180910390a3505050565b8015158114610b7357600080fd5b60006020828403121561193c57600080fd5b81356119478161191c565b9392505050565b60005b83811015611969578181015183820152602001611951565b50506000910152565b602081526000825180602084015261199181604085016020870161194e565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610b7357600080fd5b600080604083850312156119cd57600080fd5b82356119d8816119a5565b946020939093013593505050565b6000806000606084860312156119fb57600080fd5b8335611a06816119a5565b92506020840135611a16816119a5565b929592945050506040919091013590565b600060208284031215611a3957600080fd5b8135611947816119a5565b600060208284031215611a5657600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a8557600080fd5b813567ffffffffffffffff80821115611a9d57600080fd5b818401915084601f830112611ab157600080fd5b813581811115611ac357611ac3611a5d565b604051601f8201601f19908116603f01168101908382118183101715611aeb57611aeb611a5d565b81604052828152876020848701011115611b0457600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611b3757600080fd5b8235611b42816119a5565b91506020830135611b52816119a5565b809150509250929050565b600181811c90821680611b7157607f821691505b602082108103611b9157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611ba957600080fd5b8151611947816119a5565b600060208284031215611bc657600080fd5b81516119478161191c565b634e487b7160e01b600052601160045260246000fd5b818103818111156105b6576105b6611bd1565b808201808211156105b6576105b6611bd1565b60008251611c1f81846020870161194e565b9190910192915050565b600060018201611c3b57611c3b611bd1565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611caa5784516001600160a01b031683529383019391830191600101611c85565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176105b6576105b6611bd1565b600082611cff57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220b48c9081bd7d207b345f2499fa366fbad8cadcb671b8d20a79cc07027dfc2d0564736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b0cffef1d07357a516244c660e2c599d6baa48940000000000000000000000005d25eff16887da37af1f0c7bacea3f80efecb003
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xB0cffEf1d07357A516244c660e2C599D6BAa4894
Arg [1] : _buyBacks (address): 0x5D25EFf16887da37AF1f0C7bAcea3F80eFECb003
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b0cffef1d07357a516244c660e2c599d6baa4894
Arg [1] : 0000000000000000000000005d25eff16887da37af1f0c7bacea3f80efecb003
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.