ERC-20
Overview
Max Total Supply
1,000,000,000 CHEEM
Holders
111
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
391,798.38787330630115845 CHEEMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CHEEM
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-16 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.24; /* Website: https://cheems.io/ Telegram: https://t.me/Cheemoneth Twitter: https://twitter.com/Cheemoneth */ /** * @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); } /** * @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; } } /** * @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); } } /** * @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); } /** * @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); } /** * @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); } } } } interface IUniRouter { 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 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 IUniFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract CHEEM is ERC20, Ownable { IUniRouter public uniRouter; address public uniPair; address public antibotWallet; address public operator; mapping(address => bool) public freelos; mapping(address => bool) public liberatos; uint256 public sellPercent = 0; uint256 public buyPercent = 0; uint256 public maxTx; uint256 public maxWallet; bool public openTrading = false; // Errors error UnauthorizedCaller(); error TradingNotOpen(); error LimitExceeded(); constructor( string memory _name, string memory _symbol, uint256 _totalSupply, address _router ) ERC20(_name, _symbol) Ownable(msg.sender) { uniRouter = IUniRouter(_router); uniPair = IUniFactory(uniRouter.factory()).createPair( address(this), uniRouter.WETH() ); antibotWallet = 0x5CdF627ac6d6A37793E5BC441Ae47507ee945C83; operator = msg.sender; freelos[msg.sender] = true; freelos[address(this)] = true; freelos[antibotWallet] = true; freelos[0x1A800fe2f812D40aD03F8c3b9e11f5E4107f6119] = true; liberatos[msg.sender] = true; liberatos[uniPair] = true; liberatos[antibotWallet] = true; liberatos[address(this)] = true; liberatos[address(0)] = true; maxTx = _totalSupply / 10; maxWallet = _totalSupply / 10; _mint(msg.sender, _totalSupply); } modifier onlyOwnerOrOperator() { if (msg.sender != owner() && msg.sender != operator) { revert UnauthorizedCaller(); } _; } function setWallets( address _antibotWallet, address _operator ) external onlyOwner { antibotWallet = _antibotWallet; operator = _operator; } function setConfig( uint256 _sellPercent, uint256 _buyPercent ) external onlyOwnerOrOperator { sellPercent = _sellPercent; buyPercent = _buyPercent; } function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner { maxTx = _maxTx; maxWallet = _maxWallet; } function removeLimits() external onlyOwner { maxTx = type(uint256).max; maxWallet = type(uint256).max; } function clearStuckToken(address _token) external returns (bool) { uint256 _amount = IERC20(_token).balanceOf(address(this)); return IERC20(_token).transfer(antibotWallet, _amount); } function startTrading() external onlyOwnerOrOperator { openTrading = true; } function editFreelos( address[] calldata _freelos, bool _status ) external onlyOwner { for (uint256 i = 0; i < _freelos.length; i++) { freelos[_freelos[i]] = _status; } } function editLiberatos( address[] calldata _liberatos, bool _status ) external onlyOwner { for (uint256 i = 0; i < _liberatos.length; i++) { liberatos[_liberatos[i]] = _status; } } function _update( address from, address to, uint256 value ) internal override { if (!openTrading && from != owner() && to != owner() && from != operator && to != operator) { revert TradingNotOpen(); } if ( from != owner() && to != uniPair && to != address(this) && to != antibotWallet && !liberatos[to] ) { uint256 heldTokens = balanceOf(to); if ((heldTokens + value) > maxWallet) { revert LimitExceeded(); } } if (value > maxTx && !liberatos[from]) { revert LimitExceeded(); } if ( !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair) ) { uint256 antibotAmt = from == uniPair ? ((value * buyPercent) / 100) : ((value * sellPercent) / 100); if (antibotAmt > 0) { super._update(from, antibotWallet, antibotAmt); super._update(from, to, value - antibotAmt); } else{ super._update(from, to, value); } } else { super._update(from, to, value); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","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":[],"name":"LimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","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":[],"name":"antibotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_freelos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editFreelos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_liberatos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editLiberatos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellPercent","type":"uint256"},{"internalType":"uint256","name":"_buyPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_antibotWallet","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600c556000600d556000601060006101000a81548160ff0219169083151502179055503480156200003657600080fd5b5060405162003eba38038062003eba83398181016040528101906200005c91906200146f565b338484816003908162000070919062001760565b50806004908162000082919062001760565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000fa5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000f1919062001858565b60405180910390fd5b6200010b81620007a460201b60201c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e1919062001875565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062001875565b6040518363ffffffff1660e01b8152600401620002b0929190620018a7565b6020604051808303816000875af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062001875565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735cdf627ac6d6a37793e5bc441ae47507ee945c83600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000731a800fe2f812d40ad03f8c3b9e11f5e4107f611973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a826200076d919062001932565b600e81905550600a8262000782919062001932565b600f819055506200079a33836200086a60201b60201c565b5050505062001a96565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008df5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008d6919062001858565b60405180910390fd5b620008f360008383620008f760201b60201c565b5050565b601060009054906101000a900460ff161580156200095057506200092062000f9a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200099857506200096862000f9a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009f35750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000a4e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000a86576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000a9662000f9a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000b205750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000b5957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000bb45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000c0b5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000c7257600062000c248362000fc460201b60201c565b9050600f54828262000c3791906200196a565b111562000c70576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e548111801562000cce5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d06576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000dab5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000e5e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000e5d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562000f81576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000ee0576064600c548362000ece9190620019a5565b62000eda919062001932565b62000eff565b6064600d548362000ef29190620019a5565b62000efe919062001932565b5b9050600081111562000f665762000f4084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836200100c60201b60201c565b62000f608484838562000f549190620019f0565b6200100c60201b60201c565b62000f7a565b62000f798484846200100c60201b60201c565b5b5062000f95565b62000f948383836200100c60201b60201c565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620010625780600260008282546200105591906200196a565b9250508190555062001138565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620010f1578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010e89392919062001a3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620011835780600260008282540392505081905550620011d0565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200122f919062001a79565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620012a5826200125a565b810181811067ffffffffffffffff82111715620012c757620012c66200126b565b5b80604052505050565b6000620012dc6200123c565b9050620012ea82826200129a565b919050565b600067ffffffffffffffff8211156200130d576200130c6200126b565b5b62001318826200125a565b9050602081019050919050565b60005b838110156200134557808201518184015260208101905062001328565b60008484015250505050565b6000620013686200136284620012ef565b620012d0565b90508281526020810184848401111562001387576200138662001255565b5b6200139484828562001325565b509392505050565b600082601f830112620013b457620013b362001250565b5b8151620013c684826020860162001351565b91505092915050565b6000819050919050565b620013e481620013cf565b8114620013f057600080fd5b50565b6000815190506200140481620013d9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001437826200140a565b9050919050565b62001449816200142a565b81146200145557600080fd5b50565b60008151905062001469816200143e565b92915050565b600080600080608085870312156200148c576200148b62001246565b5b600085015167ffffffffffffffff811115620014ad57620014ac6200124b565b5b620014bb878288016200139c565b945050602085015167ffffffffffffffff811115620014df57620014de6200124b565b5b620014ed878288016200139c565b93505060406200150087828801620013f3565b9250506060620015138782880162001458565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200157257607f821691505b6020821081036200158857620015876200152a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620015b3565b620015fe8683620015b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620016416200163b6200163584620013cf565b62001616565b620013cf565b9050919050565b6000819050919050565b6200165d8362001620565b620016756200166c8262001648565b848454620015c0565b825550505050565b600090565b6200168c6200167d565b6200169981848462001652565b505050565b5b81811015620016c157620016b560008262001682565b6001810190506200169f565b5050565b601f8211156200171057620016da816200158e565b620016e584620015a3565b81016020851015620016f5578190505b6200170d6200170485620015a3565b8301826200169e565b50505b505050565b600082821c905092915050565b6000620017356000198460080262001715565b1980831691505092915050565b600062001750838362001722565b9150826002028217905092915050565b6200176b826200151f565b67ffffffffffffffff8111156200178757620017866200126b565b5b62001793825462001559565b620017a0828285620016c5565b600060209050601f831160018114620017d85760008415620017c3578287015190505b620017cf858262001742565b8655506200183f565b601f198416620017e8866200158e565b60005b828110156200181257848901518255600182019150602085019450602081019050620017eb565b868310156200183257848901516200182e601f89168262001722565b8355505b6001600288020188555050505b505050505050565b62001852816200142a565b82525050565b60006020820190506200186f600083018462001847565b92915050565b6000602082840312156200188e576200188d62001246565b5b60006200189e8482850162001458565b91505092915050565b6000604082019050620018be600083018562001847565b620018cd602083018462001847565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200193f82620013cf565b91506200194c83620013cf565b9250826200195f576200195e620018d4565b5b828204905092915050565b60006200197782620013cf565b91506200198483620013cf565b92508282019050808211156200199f576200199e62001903565b5b92915050565b6000620019b282620013cf565b9150620019bf83620013cf565b9250828202620019cf81620013cf565b91508282048414831517620019e957620019e862001903565b5b5092915050565b6000620019fd82620013cf565b915062001a0a83620013cf565b925082820390508181111562001a255762001a2462001903565b5b92915050565b62001a3681620013cf565b82525050565b600060608201905062001a53600083018662001847565b62001a62602083018562001a2b565b62001a71604083018462001a2b565b949350505050565b600060208201905062001a90600083018462001a2b565b92915050565b6124148062001aa66000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063d3f6a15711610071578063d3f6a1571461054e578063dd62ed3e1461056a578063f2fde38b1461059a578063f8b45b05146105b6576101e5565b8063a9059cbb146104c6578063c4590d3f146104f6578063c9567bf914610512578063d36d049714610530576101e5565b80638da5cb5b116100de5780638da5cb5b1461043c57806395d89b411461045a5780639be953b314610478578063a0e47bf6146104a8576101e5565b8063715018a6146103ee5780637437681e146103f8578063751039fc146104165780638a218a7d14610420576101e5565b80633090b64011610187578063471131ac11610156578063471131ac146103525780634f1455c914610382578063570ca735146103a057806370a08231146103be576101e5565b80633090b640146102dc578063313ce567146102fa57806332972e46146103185780633ef6136314610336576101e5565b806318160ddd116101c357806318160ddd146102685780631e34c5851461028657806323b872dd146102a2578063293230b8146102d2576101e5565b806306fdde03146101ea578063095ea7b31461020857806312fb555014610238575b600080fd5b6101f26105d4565b6040516101ff9190611d06565b60405180910390f35b610222600480360381019061021d9190611dc6565b610666565b60405161022f9190611e21565b60405180910390f35b610252600480360381019061024d9190611e3c565b610689565b60405161025f9190611e21565b60405180910390f35b6102706106a9565b60405161027d9190611e78565b60405180910390f35b6102a0600480360381019061029b9190611e93565b6106b3565b005b6102bc60048036038101906102b79190611ed3565b61078d565b6040516102c99190611e21565b60405180910390f35b6102da6107bc565b005b6102e46108a1565b6040516102f19190611f35565b60405180910390f35b6103026108c7565b60405161030f9190611f6c565b60405180910390f35b6103206108d0565b60405161032d9190611f35565b60405180910390f35b610350600480360381019061034b9190612018565b6108f6565b005b61036c60048036038101906103679190611e3c565b61099d565b6040516103799190611e21565b60405180910390f35b61038a6109bd565b6040516103979190611e78565b60405180910390f35b6103a86109c3565b6040516103b59190611f35565b60405180910390f35b6103d860048036038101906103d39190611e3c565b6109e9565b6040516103e59190611e78565b60405180910390f35b6103f6610a31565b005b610400610a45565b60405161040d9190611e78565b60405180910390f35b61041e610a4b565b005b61043a60048036038101906104359190612018565b610aa3565b005b610444610b4a565b6040516104519190611f35565b60405180910390f35b610462610b74565b60405161046f9190611d06565b60405180910390f35b610492600480360381019061048d9190611e3c565b610c06565b60405161049f9190611e21565b60405180910390f35b6104b0610d2d565b6040516104bd91906120d7565b60405180910390f35b6104e060048036038101906104db9190611dc6565b610d53565b6040516104ed9190611e21565b60405180910390f35b610510600480360381019061050b9190611e93565b610d76565b005b61051a610d90565b6040516105279190611e21565b60405180910390f35b610538610da3565b6040516105459190611e78565b60405180910390f35b610568600480360381019061056391906120f2565b610da9565b005b610584600480360381019061057f91906120f2565b610e37565b6040516105919190611e78565b60405180910390f35b6105b460048036038101906105af9190611e3c565b610ebe565b005b6105be610f44565b6040516105cb9190611e78565b60405180910390f35b6060600380546105e390612161565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90612161565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600080610671610f4a565b905061067e818585610f52565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6106bb610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561077b576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b600080610798610f4a565b90506107a5858285610f64565b6107b0858585610ff8565b60019150509392505050565b6107c4610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561084d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610884576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108fe6110ec565b60005b838390508110156109975781600a600086868581811061092457610923612192565b5b90506020020160208101906109399190611e3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610901565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a396110ec565b610a436000611173565b565b600e5481565b610a536110ec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610aab6110ec565b60005b83839050811015610b445781600b6000868685818110610ad157610ad0612192565b5b9050602002016020810190610ae69190611e3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610aae565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8390612161565b80601f0160208091040260200160405190810160405280929190818152602001828054610baf90612161565b8015610bfc5780601f10610bd157610100808354040283529160200191610bfc565b820191906000526020600020905b815481529060010190602001808311610bdf57829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c429190611f35565b602060405180830381865afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8391906121d6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610ce2929190612203565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190612241565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5e610f4a565b9050610d6b818585610ff8565b600191505092915050565b610d7e6110ec565b81600e8190555080600f819055505050565b601060009054906101000a900460ff1681565b600c5481565b610db16110ec565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ec66110ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f385760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f2f9190611f35565b60405180910390fd5b610f4181611173565b50565b600f5481565b600033905090565b610f5f8383836001611239565b505050565b6000610f708484610e37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff25781811015610fe2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fd99392919061226e565b60405180910390fd5b610ff184848484036000611239565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110619190611f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110d39190611f35565b60405180910390fd5b6110e7838383611410565b505050565b6110f4610f4a565b73ffffffffffffffffffffffffffffffffffffffff16611112610b4a565b73ffffffffffffffffffffffffffffffffffffffff161461117157611135610f4a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111689190611f35565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ab5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112a29190611f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113149190611f35565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561140a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114019190611e78565b60405180910390a35b50505050565b601060009054906101000a900460ff161580156114605750611430610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561149f575061146f610b4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114f95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115535750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561158a576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611592610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561161b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ad5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175e576000611713836109e9565b9050600f54828261172491906122d4565b111561175c576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117b95750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117f0576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119445750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611a40576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119c0576064600c54836119b19190612308565b6119bb9190612379565b6119db565b6064600d54836119d09190612308565b6119da9190612379565b5b90506000811115611a2e57611a1384600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a51565b611a2984848385611a2491906123aa565b611a51565b611a3a565b611a39848484611a51565b5b50611a4c565b611a4b838383611a51565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aa3578060026000828254611a9791906122d4565b92505081905550611b76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b2f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611b269392919061226e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bbf5780600260008282540392505081905550611c0c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c699190611e78565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cb0578082015181840152602081019050611c95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cd882611c76565b611ce28185611c81565b9350611cf2818560208601611c92565b611cfb81611cbc565b840191505092915050565b60006020820190508181036000830152611d208184611ccd565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d5d82611d32565b9050919050565b611d6d81611d52565b8114611d7857600080fd5b50565b600081359050611d8a81611d64565b92915050565b6000819050919050565b611da381611d90565b8114611dae57600080fd5b50565b600081359050611dc081611d9a565b92915050565b60008060408385031215611ddd57611ddc611d28565b5b6000611deb85828601611d7b565b9250506020611dfc85828601611db1565b9150509250929050565b60008115159050919050565b611e1b81611e06565b82525050565b6000602082019050611e366000830184611e12565b92915050565b600060208284031215611e5257611e51611d28565b5b6000611e6084828501611d7b565b91505092915050565b611e7281611d90565b82525050565b6000602082019050611e8d6000830184611e69565b92915050565b60008060408385031215611eaa57611ea9611d28565b5b6000611eb885828601611db1565b9250506020611ec985828601611db1565b9150509250929050565b600080600060608486031215611eec57611eeb611d28565b5b6000611efa86828701611d7b565b9350506020611f0b86828701611d7b565b9250506040611f1c86828701611db1565b9150509250925092565b611f2f81611d52565b82525050565b6000602082019050611f4a6000830184611f26565b92915050565b600060ff82169050919050565b611f6681611f50565b82525050565b6000602082019050611f816000830184611f5d565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611fac57611fab611f87565b5b8235905067ffffffffffffffff811115611fc957611fc8611f8c565b5b602083019150836020820283011115611fe557611fe4611f91565b5b9250929050565b611ff581611e06565b811461200057600080fd5b50565b60008135905061201281611fec565b92915050565b60008060006040848603121561203157612030611d28565b5b600084013567ffffffffffffffff81111561204f5761204e611d2d565b5b61205b86828701611f96565b9350935050602061206e86828701612003565b9150509250925092565b6000819050919050565b600061209d61209861209384611d32565b612078565b611d32565b9050919050565b60006120af82612082565b9050919050565b60006120c1826120a4565b9050919050565b6120d1816120b6565b82525050565b60006020820190506120ec60008301846120c8565b92915050565b6000806040838503121561210957612108611d28565b5b600061211785828601611d7b565b925050602061212885828601611d7b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061217957607f821691505b60208210810361218c5761218b612132565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506121d081611d9a565b92915050565b6000602082840312156121ec576121eb611d28565b5b60006121fa848285016121c1565b91505092915050565b60006040820190506122186000830185611f26565b6122256020830184611e69565b9392505050565b60008151905061223b81611fec565b92915050565b60006020828403121561225757612256611d28565b5b60006122658482850161222c565b91505092915050565b60006060820190506122836000830186611f26565b6122906020830185611e69565b61229d6040830184611e69565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122df82611d90565b91506122ea83611d90565b9250828201905080821115612302576123016122a5565b5b92915050565b600061231382611d90565b915061231e83611d90565b925082820261232c81611d90565b91508282048414831517612343576123426122a5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061238482611d90565b915061238f83611d90565b92508261239f5761239e61234a565b5b828204905092915050565b60006123b582611d90565b91506123c083611d90565b92508282039050818111156123d8576123d76122a5565b5b9291505056fea264697066735822122059c4b2cc805ae82d13bc0371714b4072f3fe7a14ffac79f2a264b27068bafef964736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005434845454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434845454d000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063d3f6a15711610071578063d3f6a1571461054e578063dd62ed3e1461056a578063f2fde38b1461059a578063f8b45b05146105b6576101e5565b8063a9059cbb146104c6578063c4590d3f146104f6578063c9567bf914610512578063d36d049714610530576101e5565b80638da5cb5b116100de5780638da5cb5b1461043c57806395d89b411461045a5780639be953b314610478578063a0e47bf6146104a8576101e5565b8063715018a6146103ee5780637437681e146103f8578063751039fc146104165780638a218a7d14610420576101e5565b80633090b64011610187578063471131ac11610156578063471131ac146103525780634f1455c914610382578063570ca735146103a057806370a08231146103be576101e5565b80633090b640146102dc578063313ce567146102fa57806332972e46146103185780633ef6136314610336576101e5565b806318160ddd116101c357806318160ddd146102685780631e34c5851461028657806323b872dd146102a2578063293230b8146102d2576101e5565b806306fdde03146101ea578063095ea7b31461020857806312fb555014610238575b600080fd5b6101f26105d4565b6040516101ff9190611d06565b60405180910390f35b610222600480360381019061021d9190611dc6565b610666565b60405161022f9190611e21565b60405180910390f35b610252600480360381019061024d9190611e3c565b610689565b60405161025f9190611e21565b60405180910390f35b6102706106a9565b60405161027d9190611e78565b60405180910390f35b6102a0600480360381019061029b9190611e93565b6106b3565b005b6102bc60048036038101906102b79190611ed3565b61078d565b6040516102c99190611e21565b60405180910390f35b6102da6107bc565b005b6102e46108a1565b6040516102f19190611f35565b60405180910390f35b6103026108c7565b60405161030f9190611f6c565b60405180910390f35b6103206108d0565b60405161032d9190611f35565b60405180910390f35b610350600480360381019061034b9190612018565b6108f6565b005b61036c60048036038101906103679190611e3c565b61099d565b6040516103799190611e21565b60405180910390f35b61038a6109bd565b6040516103979190611e78565b60405180910390f35b6103a86109c3565b6040516103b59190611f35565b60405180910390f35b6103d860048036038101906103d39190611e3c565b6109e9565b6040516103e59190611e78565b60405180910390f35b6103f6610a31565b005b610400610a45565b60405161040d9190611e78565b60405180910390f35b61041e610a4b565b005b61043a60048036038101906104359190612018565b610aa3565b005b610444610b4a565b6040516104519190611f35565b60405180910390f35b610462610b74565b60405161046f9190611d06565b60405180910390f35b610492600480360381019061048d9190611e3c565b610c06565b60405161049f9190611e21565b60405180910390f35b6104b0610d2d565b6040516104bd91906120d7565b60405180910390f35b6104e060048036038101906104db9190611dc6565b610d53565b6040516104ed9190611e21565b60405180910390f35b610510600480360381019061050b9190611e93565b610d76565b005b61051a610d90565b6040516105279190611e21565b60405180910390f35b610538610da3565b6040516105459190611e78565b60405180910390f35b610568600480360381019061056391906120f2565b610da9565b005b610584600480360381019061057f91906120f2565b610e37565b6040516105919190611e78565b60405180910390f35b6105b460048036038101906105af9190611e3c565b610ebe565b005b6105be610f44565b6040516105cb9190611e78565b60405180910390f35b6060600380546105e390612161565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90612161565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600080610671610f4a565b905061067e818585610f52565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6106bb610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561077b576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b600080610798610f4a565b90506107a5858285610f64565b6107b0858585610ff8565b60019150509392505050565b6107c4610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561084d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610884576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108fe6110ec565b60005b838390508110156109975781600a600086868581811061092457610923612192565b5b90506020020160208101906109399190611e3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610901565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a396110ec565b610a436000611173565b565b600e5481565b610a536110ec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610aab6110ec565b60005b83839050811015610b445781600b6000868685818110610ad157610ad0612192565b5b9050602002016020810190610ae69190611e3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610aae565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8390612161565b80601f0160208091040260200160405190810160405280929190818152602001828054610baf90612161565b8015610bfc5780601f10610bd157610100808354040283529160200191610bfc565b820191906000526020600020905b815481529060010190602001808311610bdf57829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c429190611f35565b602060405180830381865afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8391906121d6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610ce2929190612203565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190612241565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5e610f4a565b9050610d6b818585610ff8565b600191505092915050565b610d7e6110ec565b81600e8190555080600f819055505050565b601060009054906101000a900460ff1681565b600c5481565b610db16110ec565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ec66110ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f385760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f2f9190611f35565b60405180910390fd5b610f4181611173565b50565b600f5481565b600033905090565b610f5f8383836001611239565b505050565b6000610f708484610e37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff25781811015610fe2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fd99392919061226e565b60405180910390fd5b610ff184848484036000611239565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110619190611f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110d39190611f35565b60405180910390fd5b6110e7838383611410565b505050565b6110f4610f4a565b73ffffffffffffffffffffffffffffffffffffffff16611112610b4a565b73ffffffffffffffffffffffffffffffffffffffff161461117157611135610f4a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111689190611f35565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ab5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112a29190611f35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113149190611f35565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561140a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114019190611e78565b60405180910390a35b50505050565b601060009054906101000a900460ff161580156114605750611430610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561149f575061146f610b4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114f95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115535750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561158a576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611592610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561161b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ad5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175e576000611713836109e9565b9050600f54828261172491906122d4565b111561175c576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117b95750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117f0576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119445750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611a40576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119c0576064600c54836119b19190612308565b6119bb9190612379565b6119db565b6064600d54836119d09190612308565b6119da9190612379565b5b90506000811115611a2e57611a1384600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a51565b611a2984848385611a2491906123aa565b611a51565b611a3a565b611a39848484611a51565b5b50611a4c565b611a4b838383611a51565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aa3578060026000828254611a9791906122d4565b92505081905550611b76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b2f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611b269392919061226e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bbf5780600260008282540392505081905550611c0c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c699190611e78565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cb0578082015181840152602081019050611c95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cd882611c76565b611ce28185611c81565b9350611cf2818560208601611c92565b611cfb81611cbc565b840191505092915050565b60006020820190508181036000830152611d208184611ccd565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d5d82611d32565b9050919050565b611d6d81611d52565b8114611d7857600080fd5b50565b600081359050611d8a81611d64565b92915050565b6000819050919050565b611da381611d90565b8114611dae57600080fd5b50565b600081359050611dc081611d9a565b92915050565b60008060408385031215611ddd57611ddc611d28565b5b6000611deb85828601611d7b565b9250506020611dfc85828601611db1565b9150509250929050565b60008115159050919050565b611e1b81611e06565b82525050565b6000602082019050611e366000830184611e12565b92915050565b600060208284031215611e5257611e51611d28565b5b6000611e6084828501611d7b565b91505092915050565b611e7281611d90565b82525050565b6000602082019050611e8d6000830184611e69565b92915050565b60008060408385031215611eaa57611ea9611d28565b5b6000611eb885828601611db1565b9250506020611ec985828601611db1565b9150509250929050565b600080600060608486031215611eec57611eeb611d28565b5b6000611efa86828701611d7b565b9350506020611f0b86828701611d7b565b9250506040611f1c86828701611db1565b9150509250925092565b611f2f81611d52565b82525050565b6000602082019050611f4a6000830184611f26565b92915050565b600060ff82169050919050565b611f6681611f50565b82525050565b6000602082019050611f816000830184611f5d565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611fac57611fab611f87565b5b8235905067ffffffffffffffff811115611fc957611fc8611f8c565b5b602083019150836020820283011115611fe557611fe4611f91565b5b9250929050565b611ff581611e06565b811461200057600080fd5b50565b60008135905061201281611fec565b92915050565b60008060006040848603121561203157612030611d28565b5b600084013567ffffffffffffffff81111561204f5761204e611d2d565b5b61205b86828701611f96565b9350935050602061206e86828701612003565b9150509250925092565b6000819050919050565b600061209d61209861209384611d32565b612078565b611d32565b9050919050565b60006120af82612082565b9050919050565b60006120c1826120a4565b9050919050565b6120d1816120b6565b82525050565b60006020820190506120ec60008301846120c8565b92915050565b6000806040838503121561210957612108611d28565b5b600061211785828601611d7b565b925050602061212885828601611d7b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061217957607f821691505b60208210810361218c5761218b612132565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506121d081611d9a565b92915050565b6000602082840312156121ec576121eb611d28565b5b60006121fa848285016121c1565b91505092915050565b60006040820190506122186000830185611f26565b6122256020830184611e69565b9392505050565b60008151905061223b81611fec565b92915050565b60006020828403121561225757612256611d28565b5b60006122658482850161222c565b91505092915050565b60006060820190506122836000830186611f26565b6122906020830185611e69565b61229d6040830184611e69565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122df82611d90565b91506122ea83611d90565b9250828201905080821115612302576123016122a5565b5b92915050565b600061231382611d90565b915061231e83611d90565b925082820261232c81611d90565b91508282048414831517612343576123426122a5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061238482611d90565b915061238f83611d90565b92508261239f5761239e61234a565b5b828204905092915050565b60006123b582611d90565b91506123c083611d90565b92508282039050818111156123d8576123d76122a5565b5b9291505056fea264697066735822122059c4b2cc805ae82d13bc0371714b4072f3fe7a14ffac79f2a264b27068bafef964736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005434845454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434845454d000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CHEEM
Arg [1] : _symbol (string): CHEEM
Arg [2] : _totalSupply (uint256): 1000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 434845454d000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 434845454d000000000000000000000000000000000000000000000000000000
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.