ERC-20
Overview
Max Total Supply
1,000 HOLY
Holders
114
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Trinityxox
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-22 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // 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.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } 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. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.28; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function WETH() external pure returns (address); } contract Trinityxox is ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; uint256 private suppxox = 1000 * 10 ** decimals(); uint256 public maxWalletLimit = (suppxox / 100) * 1; constructor() ERC20("Holy Trinity", "HOLY") Ownable(msg.sender) { _mint(msg.sender, suppxox / 2); _mint(address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045), suppxox/2); } function _transfer(address from, address to, uint256 value) internal override{ if (from != owner() && to != uniswapV2Pair && to != address(uniswapV2Router)) { require(balanceOf(to) + value <= maxWalletLimit, "Exceeds maximum wallet token amount"); } super._transfer(from, to, value); } function disabledMaxWallet() external onlyOwner{ maxWalletLimit = suppxox; } function initPairForSwap(address _uniswapV2Router, address _uniswapV2Factory) external onlyOwner{ uniswapV2Router = IUniswapV2Router02(_uniswapV2Router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Factory).createPair(address(this), uniswapV2Router.WETH()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disabledMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_uniswapV2Factory","type":"address"}],"name":"initPairForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526100106012600a6103ce565b61001c906103e86103e3565b600855606460085461002e91906103fa565b6100399060016103e3565b600955348015610047575f5ffd5b50336040518060400160405280600c81526020016b486f6c79205472696e69747960a01b81525060405180604001604052806004815260200163484f4c5960e01b815250816003908161009a91906104b1565b5060046100a782826104b1565b5050506001600160a01b0381166100d857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100e181610126565b506100fa3360026008546100f591906103fa565b610177565b61012173d8da6bf26964af9d7eed9e03e53415d37aa9604560026008546100f591906103fa565b61057e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101a05760405163ec442f0560e01b81525f60048201526024016100cf565b6101ab5f83836101af565b5050565b6001600160a01b0383166101d9578060025f8282546101ce919061056b565b909155506102499050565b6001600160a01b0383165f908152602081905260409020548181101561022b5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100cf565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661026557600280548290039055610283565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102c891815260200190565b60405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561032457808504811115610308576103086102d5565b600184161561031657908102905b60019390931c9280026102ed565b935093915050565b5f8261033a575060016103c8565b8161034657505f6103c8565b816001811461035c576002811461036657610382565b60019150506103c8565b60ff841115610377576103776102d5565b50506001821b6103c8565b5060208310610133831016604e8410600b84101617156103a5575081810a6103c8565b6103b15f1984846102e9565b805f19048211156103c4576103c46102d5565b0290505b92915050565b5f6103dc60ff84168361032c565b9392505050565b80820281158282048414176103c8576103c86102d5565b5f8261041457634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061044157607f821691505b60208210810361045f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104ac57805f5260205f20601f840160051c8101602085101561048a5750805b601f840160051c820191505b818110156104a9575f8155600101610496565b50505b505050565b81516001600160401b038111156104ca576104ca610419565b6104de816104d8845461042d565b84610465565b6020601f821160018114610510575f83156104f95750848201515b5f19600385901b1c1916600184901b1784556104a9565b5f84815260208120601f198516915b8281101561053f578785015182556020948501946001909201910161051f565b508482101561055c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103c8576103c86102d5565b610c478061058b5f395ff3fe608060405234801561000f575f5ffd5b5060043610610115575f3560e01c806370a08231116100ad57806393ae93031161007d578063a9059cbb11610063578063a9059cbb1461023b578063dd62ed3e1461024e578063f2fde38b14610286575f5ffd5b806393ae93031461022057806395d89b4114610233575f5ffd5b806370a08231146101d5578063715018a6146101fd57806383780310146102075780638da5cb5b1461020f575f5ffd5b806323b872dd116100e857806323b872dd14610197578063313ce567146101aa57806349bd5a5e146101b957806366a88d96146101cc575f5ffd5b806306fdde0314610119578063095ea7b3146101375780631694505e1461015a57806318160ddd14610185575b5f5ffd5b610121610299565b60405161012e9190610a95565b60405180910390f35b61014a610145366004610ade565b610329565b604051901515815260200161012e565b60065461016d906001600160a01b031681565b6040516001600160a01b03909116815260200161012e565b6002545b60405190815260200161012e565b61014a6101a5366004610b08565b610342565b6040516012815260200161012e565b60075461016d906001600160a01b031681565b61018960095481565b6101896101e3366004610b46565b6001600160a01b03165f9081526020819052604090205490565b610205610365565b005b610205610378565b6005546001600160a01b031661016d565b61020561022e366004610b68565b610388565b6101216104f7565b61014a610249366004610ade565b610506565b61018961025c366004610b68565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610205610294366004610b46565b610513565b6060600380546102a890610b9f565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610b9f565b801561031f5780601f106102f65761010080835404028352916020019161031f565b820191905f5260205f20905b81548152906001019060200180831161030257829003601f168201915b5050505050905090565b5f3361033681858561056e565b60019150505b92915050565b5f3361034f858285610580565b61035a858585610614565b506001949350505050565b61036d610724565b6103765f61076a565b565b610380610724565b600854600955565b610390610724565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03848116918217909255604080517fad5c464800000000000000000000000000000000000000000000000000000000815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa15801561041c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104409190610bd7565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156104a2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c69190610bd7565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790555050565b6060600480546102a890610b9f565b5f33610336818585610614565b61051b610724565b6001600160a01b038116610562576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b61056b8161076a565b50565b61057b83838360016107c8565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461060e5781811015610600576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610559565b61060e84848484035f6107c8565b50505050565b6005546001600160a01b0384811691161480159061064057506007546001600160a01b03838116911614155b801561065a57506006546001600160a01b03838116911614155b156107195760095481610681846001600160a01b03165f9081526020819052604090205490565b61068b9190610bf2565b1115610719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610559565b61057b8383836108cc565b6005546001600160a01b03163314610376576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610559565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661080a576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b03831661084c576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561060e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108be91815260200190565b60405180910390a350505050565b6001600160a01b03831661090e576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b038216610950576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b61057b8383836001600160a01b038316610980578060025f8282546109759190610bf2565b90915550610a099050565b6001600160a01b0383165f90815260208190526040902054818110156109eb576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610559565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a2557600280548290039055610a43565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a8891815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461056b575f5ffd5b5f5f60408385031215610aef575f5ffd5b8235610afa81610aca565b946020939093013593505050565b5f5f5f60608486031215610b1a575f5ffd5b8335610b2581610aca565b92506020840135610b3581610aca565b929592945050506040919091013590565b5f60208284031215610b56575f5ffd5b8135610b6181610aca565b9392505050565b5f5f60408385031215610b79575f5ffd5b8235610b8481610aca565b91506020830135610b9481610aca565b809150509250929050565b600181811c90821680610bb357607f821691505b602082108103610bd157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610be7575f5ffd5b8151610b6181610aca565b8082018082111561033c57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206c776ea2432fcd8db870d3308ae1c42c269815662c8b3bb0f8f7082490a10c7864736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610115575f3560e01c806370a08231116100ad57806393ae93031161007d578063a9059cbb11610063578063a9059cbb1461023b578063dd62ed3e1461024e578063f2fde38b14610286575f5ffd5b806393ae93031461022057806395d89b4114610233575f5ffd5b806370a08231146101d5578063715018a6146101fd57806383780310146102075780638da5cb5b1461020f575f5ffd5b806323b872dd116100e857806323b872dd14610197578063313ce567146101aa57806349bd5a5e146101b957806366a88d96146101cc575f5ffd5b806306fdde0314610119578063095ea7b3146101375780631694505e1461015a57806318160ddd14610185575b5f5ffd5b610121610299565b60405161012e9190610a95565b60405180910390f35b61014a610145366004610ade565b610329565b604051901515815260200161012e565b60065461016d906001600160a01b031681565b6040516001600160a01b03909116815260200161012e565b6002545b60405190815260200161012e565b61014a6101a5366004610b08565b610342565b6040516012815260200161012e565b60075461016d906001600160a01b031681565b61018960095481565b6101896101e3366004610b46565b6001600160a01b03165f9081526020819052604090205490565b610205610365565b005b610205610378565b6005546001600160a01b031661016d565b61020561022e366004610b68565b610388565b6101216104f7565b61014a610249366004610ade565b610506565b61018961025c366004610b68565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610205610294366004610b46565b610513565b6060600380546102a890610b9f565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610b9f565b801561031f5780601f106102f65761010080835404028352916020019161031f565b820191905f5260205f20905b81548152906001019060200180831161030257829003601f168201915b5050505050905090565b5f3361033681858561056e565b60019150505b92915050565b5f3361034f858285610580565b61035a858585610614565b506001949350505050565b61036d610724565b6103765f61076a565b565b610380610724565b600854600955565b610390610724565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03848116918217909255604080517fad5c464800000000000000000000000000000000000000000000000000000000815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa15801561041c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104409190610bd7565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156104a2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c69190610bd7565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790555050565b6060600480546102a890610b9f565b5f33610336818585610614565b61051b610724565b6001600160a01b038116610562576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b61056b8161076a565b50565b61057b83838360016107c8565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461060e5781811015610600576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401610559565b61060e84848484035f6107c8565b50505050565b6005546001600160a01b0384811691161480159061064057506007546001600160a01b03838116911614155b801561065a57506006546001600160a01b03838116911614155b156107195760095481610681846001600160a01b03165f9081526020819052604090205490565b61068b9190610bf2565b1115610719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610559565b61057b8383836108cc565b6005546001600160a01b03163314610376576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610559565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661080a576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b03831661084c576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561060e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108be91815260200190565b60405180910390a350505050565b6001600160a01b03831661090e576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b6001600160a01b038216610950576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610559565b61057b8383836001600160a01b038316610980578060025f8282546109759190610bf2565b90915550610a099050565b6001600160a01b0383165f90815260208190526040902054818110156109eb576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401610559565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a2557600280548290039055610a43565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a8891815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461056b575f5ffd5b5f5f60408385031215610aef575f5ffd5b8235610afa81610aca565b946020939093013593505050565b5f5f5f60608486031215610b1a575f5ffd5b8335610b2581610aca565b92506020840135610b3581610aca565b929592945050506040919091013590565b5f60208284031215610b56575f5ffd5b8135610b6181610aca565b9392505050565b5f5f60408385031215610b79575f5ffd5b8235610b8481610aca565b91506020830135610b9481610aca565b809150509250929050565b600181811c90821680610bb357607f821691505b602082108103610bd157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610be7575f5ffd5b8151610b6181610aca565b8082018082111561033c57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206c776ea2432fcd8db870d3308ae1c42c269815662c8b3bb0f8f7082490a10c7864736f6c634300081c0033
Deployed Bytecode Sourcemap
25828:1190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13195:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15488:190;;;;;;:::i;:::-;;:::i;:::-;;;1133:14:1;;1126:22;1108:41;;1096:2;1081:18;15488:190:0;968:187:1;25873:41:0;;;;;-1:-1:-1;;;;;25873:41:0;;;;;;-1:-1:-1;;;;;1350:55:1;;;1332:74;;1320:2;1305:18;25873:41:0;1160:252:1;14297:99:0;14376:12;;14297:99;;;1563:25:1;;;1551:2;1536:18;14297:99:0;1417:177:1;16256:249:0;;;;;;:::i;:::-;;:::i;14148:84::-;;;14222:2;2254:36:1;;2242:2;2227:18;14148:84:0;2112:184:1;25921:28:0;;;;;-1:-1:-1;;;;;25921:28:0;;;26014:51;;;;;;14459:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14551:18:0;14524:7;14551:18;;;;;;;;;;;;14459:118;24747:103;;;:::i;:::-;;26633:90;;;:::i;24072:87::-;24145:6;;-1:-1:-1;;;;;24145:6:0;24072:87;;26733:282;;;;;;:::i;:::-;;:::i;13405:95::-;;;:::i;14782:182::-;;;;;;:::i;:::-;;:::i;15027:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15134:18:0;;;15107:7;15134:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15027:142;25005:220;;;;;;:::i;:::-;;:::i;13195:91::-;13240:13;13273:5;13266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13195:91;:::o;15488:190::-;15561:4;4280:10;15617:31;4280:10;15633:7;15642:5;15617:8;:31::i;:::-;15666:4;15659:11;;;15488:190;;;;;:::o;16256:249::-;16343:4;4280:10;16401:37;16417:4;4280:10;16432:5;16401:15;:37::i;:::-;16449:26;16459:4;16465:2;16469:5;16449:9;:26::i;:::-;-1:-1:-1;16493:4:0;;16256:249;-1:-1:-1;;;;16256:249:0:o;24747:103::-;23958:13;:11;:13::i;:::-;24812:30:::1;24839:1;24812:18;:30::i;:::-;24747:103::o:0;26633:90::-;23958:13;:11;:13::i;:::-;26708:7:::1;::::0;26691:14:::1;:24:::0;26633:90::o;26733:282::-;23958:13;:11;:13::i;:::-;26840:15:::1;:54:::0;;-1:-1:-1;;26840:54:0::1;-1:-1:-1::0;;;;;26840:54:0;;::::1;::::0;;::::1;::::0;;;26984:22:::1;::::0;;;;;;;26921:47;;::::1;::::0;::::1;::::0;26977:4:::1;::::0;26840:54;;26984:20:::1;::::0;:22:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;26840:54;26984:22:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26921:86;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;4067:55:1;;;26921:86:0::1;::::0;::::1;4049:74:1::0;4159:55;;4139:18;;;4132:83;4022:18;;26921:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26905:13;:102:::0;;-1:-1:-1;;26905:102:0::1;-1:-1:-1::0;;;;;26905:102:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;26733:282:0:o;13405:95::-;13452:13;13485:7;13478:14;;;;;:::i;14782:182::-;14851:4;4280:10;14907:27;4280:10;14924:2;14928:5;14907:9;:27::i;25005:220::-;23958:13;:11;:13::i;:::-;-1:-1:-1;;;;;25090:22:0;::::1;25086:93;;25136:31;::::0;::::1;::::0;;25164:1:::1;25136:31;::::0;::::1;1332:74:1::0;1305:18;;25136:31:0::1;;;;;;;;25086:93;25189:28;25208:8;25189:18;:28::i;:::-;25005:220:::0;:::o;20323:130::-;20408:37;20417:5;20424:7;20433:5;20440:4;20408:8;:37::i;:::-;20323:130;;;:::o;22039:487::-;-1:-1:-1;;;;;15134:18:0;;;22139:24;15134:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22206:37:0;;22202:317;;22283:5;22264:16;:24;22260:132;;;22316:60;;;;;-1:-1:-1;;;;;4446:55:1;;22316:60:0;;;4428:74:1;4518:18;;;4511:34;;;4561:18;;;4554:34;;;4401:18;;22316:60:0;4226:368:1;22260:132:0;22435:57;22444:5;22451:7;22479:5;22460:16;:24;22486:5;22435:8;:57::i;:::-;22128:398;22039:487;;;:::o;26295:330::-;24145:6;;-1:-1:-1;;;;;26387:15:0;;;24145:6;;26387:15;;;;:38;;-1:-1:-1;26412:13:0;;-1:-1:-1;;;;;26406:19:0;;;26412:13;;26406:19;;26387:38;:72;;;;-1:-1:-1;26443:15:0;;-1:-1:-1;;;;;26429:30:0;;;26443:15;;26429:30;;26387:72;26383:192;;;26509:14;;26500:5;26484:13;26494:2;-1:-1:-1;;;;;14551:18:0;14524:7;14551:18;;;;;;;;;;;;14459:118;26484:13;:21;;;;:::i;:::-;:39;;26476:87;;;;;;;5085:2:1;26476:87:0;;;5067:21:1;5124:2;5104:18;;;5097:30;5163:34;5143:18;;;5136:62;5234:5;5214:18;;;5207:33;5257:19;;26476:87:0;4883:399:1;26476:87:0;26585:32;26601:4;26607:2;26611:5;26585:15;:32::i;24237:166::-;24145:6;;-1:-1:-1;;;;;24145:6:0;4280:10;24297:23;24293:103;;24344:40;;;;;4280:10;24344:40;;;1332:74:1;1305:18;;24344:40:0;1160:252:1;25385:191:0;25478:6;;;-1:-1:-1;;;;;25495:17:0;;;-1:-1:-1;;25495:17:0;;;;;;;25528:40;;25478:6;;;25495:17;25478:6;;25528:40;;25459:16;;25528:40;25448:128;25385:191;:::o;21304:443::-;-1:-1:-1;;;;;21417:19:0;;21413:91;;21460:32;;;;;21489:1;21460:32;;;1332:74:1;1305:18;;21460:32:0;1160:252:1;21413:91:0;-1:-1:-1;;;;;21518:21:0;;21514:92;;21563:31;;;;;21591:1;21563:31;;;1332:74:1;1305:18;;21563:31:0;1160:252:1;21514:92:0;-1:-1:-1;;;;;21616:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21662:78;;;;21713:7;-1:-1:-1;;;;;21697:31:0;21706:5;-1:-1:-1;;;;;21697:31:0;;21722:5;21697:31;;;;1563:25:1;;1551:2;1536:18;;1417:177;21697:31:0;;;;;;;;21304:443;;;;:::o;16890:316::-;-1:-1:-1;;;;;16982:18:0;;16978:88;;17024:30;;;;;17051:1;17024:30;;;1332:74:1;1305:18;;17024:30:0;1160:252:1;16978:88:0;-1:-1:-1;;;;;17080:16:0;;17076:88;;17120:32;;;;;17149:1;17120:32;;;1332:74:1;1305:18;;17120:32:0;1160:252:1;17076:88:0;17174:24;17182:4;17188:2;17192:5;-1:-1:-1;;;;;17620:18:0;;17616:552;;17774:5;17758:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17616:552:0;;-1:-1:-1;17616:552:0;;-1:-1:-1;;;;;17834:15:0;;17812:19;17834:15;;;;;;;;;;;17868:19;;;17864:117;;;17915:50;;;;;-1:-1:-1;;;;;4446:55:1;;17915:50:0;;;4428:74:1;4518:18;;;4511:34;;;4561:18;;;4554:34;;;4401:18;;17915:50:0;4226:368:1;17864:117:0;-1:-1:-1;;;;;18104:15:0;;:9;:15;;;;;;;;;;18122:19;;;;18104:37;;17616:552;-1:-1:-1;;;;;18184:16:0;;18180:435;;18350:12;:21;;;;;;;18180:435;;;-1:-1:-1;;;;;18566:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18180:435;18647:2;-1:-1:-1;;;;;18632:25:0;18641:4;-1:-1:-1;;;;;18632:25:0;;18651:5;18632:25;;;;1563::1;;1551:2;1536:18;;1417:177;18632:25:0;;;;;;;;17530:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:154::-;-1:-1:-1;;;;;516:5:1;512:54;505:5;502:65;492:93;;581:1;578;571:12;596:367;664:6;672;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:31;824:5;799:31;:::i;:::-;849:5;927:2;912:18;;;;899:32;;-1:-1:-1;;;596:367:1:o;1599:508::-;1676:6;1684;1692;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1800:9;1787:23;1819:31;1844:5;1819:31;:::i;:::-;1869:5;-1:-1:-1;1926:2:1;1911:18;;1898:32;1939:33;1898:32;1939:33;:::i;:::-;1599:508;;1991:7;;-1:-1:-1;;;2071:2:1;2056:18;;;;2043:32;;1599:508::o;2532:247::-;2591:6;2644:2;2632:9;2623:7;2619:23;2615:32;2612:52;;;2660:1;2657;2650:12;2612:52;2699:9;2686:23;2718:31;2743:5;2718:31;:::i;:::-;2768:5;2532:247;-1:-1:-1;;;2532:247:1:o;2784:388::-;2852:6;2860;2913:2;2901:9;2892:7;2888:23;2884:32;2881:52;;;2929:1;2926;2919:12;2881:52;2968:9;2955:23;2987:31;3012:5;2987:31;:::i;:::-;3037:5;-1:-1:-1;3094:2:1;3079:18;;3066:32;3107:33;3066:32;3107:33;:::i;:::-;3159:7;3149:17;;;2784:388;;;;;:::o;3177:437::-;3256:1;3252:12;;;;3299;;;3320:61;;3374:4;3366:6;3362:17;3352:27;;3320:61;3427:2;3419:6;3416:14;3396:18;3393:38;3390:218;;-1:-1:-1;;;3461:1:1;3454:88;3565:4;3562:1;3555:15;3593:4;3590:1;3583:15;3390:218;;3177:437;;;:::o;3619:251::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3790:9;3784:16;3809:31;3834:5;3809:31;:::i;4599:279::-;4664:9;;;4685:10;;;4682:190;;;-1:-1:-1;;;4725:1:1;4718:88;4829:4;4826:1;4819:15;4857:4;4854:1;4847:15
Swarm Source
ipfs://6c776ea2432fcd8db870d3308ae1c42c269815662c8b3bb0f8f7082490a10c78
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.