ERC-20
Overview
Max Total Supply
1,000,000,000 OO
Holders
56
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000091772149 OOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Oneanonly
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity Multiple files format)
// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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/[email protected]/utils/Context.sol // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @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/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: IVerifier.sol pragma solidity 0.8.25; interface IVerifier { function verify(address from, address to) external returns (bool); } // File: Token.sol pragma solidity 0.8.25; contract Oneanonly is Ownable, ERC20 { IVerifier verifier; bool public limits; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromLimits; event LimitsStatusUpdated(); event ExcludeFromLimits(address indexed account, bool value); // PLEASE ADD Token Name and Token Symbol constructor( address _owner, address _verifier, address[] memory uniswapAddresses ) ERC20("OneanOnly", "OO") { verifier = IVerifier(_verifier); limits = true; _excludeFromLimits(msg.sender, true); _excludeFromLimits(_owner, true); _excludeFromLimits(address(this), true); for (uint256 i = 0; i < uniswapAddresses.length; i++) { _excludeFromLimits(uniswapAddresses[i], true); } _mint(_owner, 1_000_000_000 ether); } function burn(uint256 amount) public { _burn(msg.sender, amount); } function start(bool status) external onlyOwner { limits = status; emit LimitsStatusUpdated(); } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { isBot[accounts[i]] = value; } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { amount = amount; // silence unused variable warning address sender = msg.sender; require(!isBot[from], "RoostToken: bot detected"); require(sender == from || !isBot[sender], "RoostToken: bot detected"); require( tx.origin == from || tx.origin == sender || !isBot[tx.origin], "Token: bot detected" ); if ( (limits && !(isExcludedFromLimits[from] || isExcludedFromLimits[to])) ) { require((verifier.verify(from, to)), "Token: not authorized."); } } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @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 v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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: BUSL-1.1 pragma solidity 0.8.25; interface IVerifier { function verify(address from, address to) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_verifier","type":"address"},{"internalType":"address[]","name":"uniswapAddresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsStatusUpdated","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":"amount","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"start","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040516118d33803806118d383398101604081905261002e91610581565b604051806040016040528060098152602001684f6e65616e4f6e6c7960b81b815250604051806040016040528060028152602001614f4f60f01b81525061008161007c61013b60201b60201c565b61013f565b600461008d83826106e6565b50600561009a82826106e6565b5050600680546001600160a81b0319166001600160a01b03851617600160a01b179055506100c933600161018e565b6100d483600161018e565b6100df30600161018e565b5f5b815181101561011c576101148282815181106100ff576100ff6107a5565b6020026020010151600161018e60201b60201c565b6001016100e1565b50610133836b033b2e3c9fd0803ce80000006101ec565b505050610804565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b6001600160a01b0382166102475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6102525f83836102bb565b8060035f82825461026391906107b9565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383165f90815260076020526040902054339060ff16156103255760405162461bcd60e51b815260206004820152601860248201527f526f6f7374546f6b656e3a20626f742064657465637465640000000000000000604482015260640161023e565b836001600160a01b0316816001600160a01b0316148061035d57506001600160a01b0381165f9081526007602052604090205460ff16155b6103a95760405162461bcd60e51b815260206004820152601860248201527f526f6f7374546f6b656e3a20626f742064657465637465640000000000000000604482015260640161023e565b326001600160a01b03851614806103c85750326001600160a01b038216145b806103e25750325f9081526007602052604090205460ff16155b61042e5760405162461bcd60e51b815260206004820152601360248201527f546f6b656e3a20626f7420646574656374656400000000000000000000000000604482015260640161023e565b600654600160a01b900460ff16801561048157506001600160a01b0384165f9081526008602052604090205460ff168061047f57506001600160a01b0383165f9081526008602052604090205460ff165b155b1561054757600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af11580156104d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fb91906107de565b6105475760405162461bcd60e51b815260206004820152601660248201527f546f6b656e3a206e6f7420617574686f72697a65642e00000000000000000000604482015260640161023e565b50505050565b505050565b80516001600160a01b0381168114610568575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610593575f80fd5b61059c84610552565b925060206105ab818601610552565b60408601519093506001600160401b03808211156105c7575f80fd5b818701915087601f8301126105da575f80fd5b8151818111156105ec576105ec61056d565b8060051b604051601f19603f830116810181811085821117156106115761061161056d565b60405291825284820192508381018501918a83111561062e575f80fd5b938501935b828510156106535761064485610552565b84529385019392850192610633565b8096505050505050509250925092565b600181811c9082168061067757607f821691505b60208210810361069557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561054d57805f5260205f20601f840160051c810160208510156106c05750805b601f840160051c820191505b818110156106df575f81556001016106cc565b5050505050565b81516001600160401b038111156106ff576106ff61056d565b6107138161070d8454610663565b8461069b565b602080601f831160018114610746575f841561072f5750858301515b5f19600386901b1c1916600185901b17855561079d565b5f85815260208120601f198616915b8281101561077457888601518255948401946001909101908401610755565b508582101561079157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156107d857634e487b7160e01b5f52601160045260245ffd5b92915050565b5f602082840312156107ee575f80fd5b815180151581146107fd575f80fd5b9392505050565b6110c2806108115f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780639c0db5f3116100795780639c0db5f314610290578063a457c2d7146102a3578063a9059cbb146102b6578063c877cf37146102c9578063dd62ed3e146102dc578063f2fde38b146102ef575f80fd5b806370a082311461022a578063715018a614610252578063860aefcf1461025a5780638da5cb5b1461026e57806395d89b4114610288575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c05780633bbac579146101d357806342966c68146101f55780635cce86cd14610208575f80fd5b806306fdde0314610136578063095ea7b314610154578063106a5a8f1461017757806318160ddd1461018c57806323b872dd1461019e575b5f80fd5b61013e610302565b60405161014b9190610e46565b60405180910390f35b610167610162366004610e96565b610392565b604051901515815260200161014b565b61018a610185366004610ecb565b6103ab565b005b6003545b60405190815260200161014b565b6101676101ac366004610f4a565b6103fb565b6040516012815260200161014b565b6101676101ce366004610e96565b61041e565b6101676101e1366004610f83565b60076020525f908152604090205460ff1681565b61018a610203366004610fa3565b61043f565b610167610216366004610f83565b60086020525f908152604090205460ff1681565b610190610238366004610f83565b6001600160a01b03165f9081526001602052604090205490565b61018a61044c565b60065461016790600160a01b900460ff1681565b5f546040516001600160a01b03909116815260200161014b565b61013e61045f565b61018a61029e366004610ecb565b61046e565b6101676102b1366004610e96565b6104da565b6101676102c4366004610e96565b610559565b61018a6102d7366004610fba565b610566565b6101906102ea366004610fd5565b6105b0565b61018a6102fd366004610f83565b6105da565b60606004805461031190611006565b80601f016020809104026020016040519081016040528092919081815260200182805461033d90611006565b80156103885780601f1061035f57610100808354040283529160200191610388565b820191905f5260205f20905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b5f3361039f818585610650565b60019150505b92915050565b6103b3610774565b5f5b828110156103f5576103ed8484838181106103d2576103d261103e565b90506020020160208101906103e79190610f83565b836107cd565b6001016103b5565b50505050565b5f3361040885828561082b565b61041385858561089d565b506001949350505050565b5f3361039f81858561043083836105b0565b61043a9190611052565b610650565b6104493382610a51565b50565b610454610774565b61045d5f610b86565b565b60606005805461031190611006565b610476610774565b5f5b828110156103f5578160075f8686858181106104965761049661103e565b90506020020160208101906104ab9190610f83565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610478565b5f33816104e782866105b0565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104138286868403610650565b5f3361039f81858561089d565b61056e610774565b6006805460ff60a01b1916600160a01b831515021790556040517f26807de4cb69229c3de82776d14efab61e1acc679b6487d2dac106b7422a2c2a905f90a150565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6105e2610774565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b61044981610b86565b6001600160a01b0383166106b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166107135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b5f61083684846105b0565b90505f1981146103f557818110156108905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103f58484848403610650565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b61096e838383610bd5565b6001600160a01b0383165f90815260016020526040902054818110156109e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a449086815260200190565b60405180910390a36103f5565b6001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610543565b610abc825f83610bd5565b6001600160a01b0382165f9081526001602052604090205481811015610b2f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610543565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610767565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f90815260076020526040902054339060ff1615610c3a5760405162461bcd60e51b8152602060048201526018602482015277149bdbdcdd151bdad95b8e88189bdd0819195d1958dd195960421b6044820152606401610543565b836001600160a01b0316816001600160a01b03161480610c7257506001600160a01b0381165f9081526007602052604090205460ff16155b610cb95760405162461bcd60e51b8152602060048201526018602482015277149bdbdcdd151bdad95b8e88189bdd0819195d1958dd195960421b6044820152606401610543565b326001600160a01b0385161480610cd85750326001600160a01b038216145b80610cf25750325f9081526007602052604090205460ff16155b610d345760405162461bcd60e51b8152602060048201526013602482015272151bdad95b8e88189bdd0819195d1958dd1959606a1b6044820152606401610543565b600654600160a01b900460ff168015610d8757506001600160a01b0384165f9081526008602052604090205460ff1680610d8557506001600160a01b0383165f9081526008602052604090205460ff165b155b156103f557600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af1158015610ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e019190611071565b6103f55760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d103737ba1030baba3437b934bd32b21760511b6044820152606401610543565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e91575f80fd5b919050565b5f8060408385031215610ea7575f80fd5b610eb083610e7b565b946020939093013593505050565b8015158114610449575f80fd5b5f805f60408486031215610edd575f80fd5b833567ffffffffffffffff80821115610ef4575f80fd5b818601915086601f830112610f07575f80fd5b813581811115610f15575f80fd5b8760208260051b8501011115610f29575f80fd5b60209283019550935050840135610f3f81610ebe565b809150509250925092565b5f805f60608486031215610f5c575f80fd5b610f6584610e7b565b9250610f7360208501610e7b565b9150604084013590509250925092565b5f60208284031215610f93575f80fd5b610f9c82610e7b565b9392505050565b5f60208284031215610fb3575f80fd5b5035919050565b5f60208284031215610fca575f80fd5b8135610f9c81610ebe565b5f8060408385031215610fe6575f80fd5b610fef83610e7b565b9150610ffd60208401610e7b565b90509250929050565b600181811c9082168061101a57607f821691505b60208210810361103857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156103a557634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611081575f80fd5b8151610f9c81610ebe56fea26469706673582212206dd8abb57c564cbeb05cdd78a6b5f957b28abf8915a64c49e831874dda270a0964736f6c634300081900330000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e0000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780639c0db5f3116100795780639c0db5f314610290578063a457c2d7146102a3578063a9059cbb146102b6578063c877cf37146102c9578063dd62ed3e146102dc578063f2fde38b146102ef575f80fd5b806370a082311461022a578063715018a614610252578063860aefcf1461025a5780638da5cb5b1461026e57806395d89b4114610288575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c05780633bbac579146101d357806342966c68146101f55780635cce86cd14610208575f80fd5b806306fdde0314610136578063095ea7b314610154578063106a5a8f1461017757806318160ddd1461018c57806323b872dd1461019e575b5f80fd5b61013e610302565b60405161014b9190610e46565b60405180910390f35b610167610162366004610e96565b610392565b604051901515815260200161014b565b61018a610185366004610ecb565b6103ab565b005b6003545b60405190815260200161014b565b6101676101ac366004610f4a565b6103fb565b6040516012815260200161014b565b6101676101ce366004610e96565b61041e565b6101676101e1366004610f83565b60076020525f908152604090205460ff1681565b61018a610203366004610fa3565b61043f565b610167610216366004610f83565b60086020525f908152604090205460ff1681565b610190610238366004610f83565b6001600160a01b03165f9081526001602052604090205490565b61018a61044c565b60065461016790600160a01b900460ff1681565b5f546040516001600160a01b03909116815260200161014b565b61013e61045f565b61018a61029e366004610ecb565b61046e565b6101676102b1366004610e96565b6104da565b6101676102c4366004610e96565b610559565b61018a6102d7366004610fba565b610566565b6101906102ea366004610fd5565b6105b0565b61018a6102fd366004610f83565b6105da565b60606004805461031190611006565b80601f016020809104026020016040519081016040528092919081815260200182805461033d90611006565b80156103885780601f1061035f57610100808354040283529160200191610388565b820191905f5260205f20905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b5f3361039f818585610650565b60019150505b92915050565b6103b3610774565b5f5b828110156103f5576103ed8484838181106103d2576103d261103e565b90506020020160208101906103e79190610f83565b836107cd565b6001016103b5565b50505050565b5f3361040885828561082b565b61041385858561089d565b506001949350505050565b5f3361039f81858561043083836105b0565b61043a9190611052565b610650565b6104493382610a51565b50565b610454610774565b61045d5f610b86565b565b60606005805461031190611006565b610476610774565b5f5b828110156103f5578160075f8686858181106104965761049661103e565b90506020020160208101906104ab9190610f83565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610478565b5f33816104e782866105b0565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104138286868403610650565b5f3361039f81858561089d565b61056e610774565b6006805460ff60a01b1916600160a01b831515021790556040517f26807de4cb69229c3de82776d14efab61e1acc679b6487d2dac106b7422a2c2a905f90a150565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6105e2610774565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b61044981610b86565b6001600160a01b0383166106b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166107135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b5f61083684846105b0565b90505f1981146103f557818110156108905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103f58484848403610650565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b61096e838383610bd5565b6001600160a01b0383165f90815260016020526040902054818110156109e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a449086815260200190565b60405180910390a36103f5565b6001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610543565b610abc825f83610bd5565b6001600160a01b0382165f9081526001602052604090205481811015610b2f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610543565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610767565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f90815260076020526040902054339060ff1615610c3a5760405162461bcd60e51b8152602060048201526018602482015277149bdbdcdd151bdad95b8e88189bdd0819195d1958dd195960421b6044820152606401610543565b836001600160a01b0316816001600160a01b03161480610c7257506001600160a01b0381165f9081526007602052604090205460ff16155b610cb95760405162461bcd60e51b8152602060048201526018602482015277149bdbdcdd151bdad95b8e88189bdd0819195d1958dd195960421b6044820152606401610543565b326001600160a01b0385161480610cd85750326001600160a01b038216145b80610cf25750325f9081526007602052604090205460ff16155b610d345760405162461bcd60e51b8152602060048201526013602482015272151bdad95b8e88189bdd0819195d1958dd1959606a1b6044820152606401610543565b600654600160a01b900460ff168015610d8757506001600160a01b0384165f9081526008602052604090205460ff1680610d8557506001600160a01b0383165f9081526008602052604090205460ff165b155b156103f557600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af1158015610ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e019190611071565b6103f55760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d103737ba1030baba3437b934bd32b21760511b6044820152606401610543565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e91575f80fd5b919050565b5f8060408385031215610ea7575f80fd5b610eb083610e7b565b946020939093013593505050565b8015158114610449575f80fd5b5f805f60408486031215610edd575f80fd5b833567ffffffffffffffff80821115610ef4575f80fd5b818601915086601f830112610f07575f80fd5b813581811115610f15575f80fd5b8760208260051b8501011115610f29575f80fd5b60209283019550935050840135610f3f81610ebe565b809150509250925092565b5f805f60608486031215610f5c575f80fd5b610f6584610e7b565b9250610f7360208501610e7b565b9150604084013590509250925092565b5f60208284031215610f93575f80fd5b610f9c82610e7b565b9392505050565b5f60208284031215610fb3575f80fd5b5035919050565b5f60208284031215610fca575f80fd5b8135610f9c81610ebe565b5f8060408385031215610fe6575f80fd5b610fef83610e7b565b9150610ffd60208401610e7b565b90509250929050565b600181811c9082168061101a57607f821691505b60208210810361103857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156103a557634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611081575f80fd5b8151610f9c81610ebe56fea26469706673582212206dd8abb57c564cbeb05cdd78a6b5f957b28abf8915a64c49e831874dda270a0964736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e0000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : _owner (address): 0x6C1a3d58247A3eBe9Dd595d1Ff30ad2aF4Ec9F0E
Arg [1] : _verifier (address): 0x6C1a3d58247A3eBe9Dd595d1Ff30ad2aF4Ec9F0E
Arg [2] : uniswapAddresses (address[]): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e
Arg [1] : 0000000000000000000000006c1a3d58247a3ebe9dd595d1ff30ad2af4ec9f0e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
20062:2432:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8850:197;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:7;;1032:22;1014:41;;1002:2;987:18;8850:197:5;874:187:7;21140:232:5;;;;;;:::i;:::-;;:::i;:::-;;7661:106;7748:12;;7661:106;;;2090:25:7;;;2078:2;2063:18;7661:106:5;1944:177:7;9609:256:5;;;;;;:::i;:::-;;:::i;7510:91::-;;;7592:2;2601:36:7;;2589:2;2574:18;7510:91:5;2459:184:7;10260:234:5;;;;;;:::i;:::-;;:::i;20154:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20934:79;;;;;;:::i;:::-;;:::i;20197:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7825:125;;;;;;:::i;:::-;-1:-1:-1;;;;;7925:18:5;7899:7;7925:18;;;:9;:18;;;;;;;7825:125;19073:101;;;:::i;20129:18::-;;;;;-1:-1:-1;;;20129:18:5;;;;;;18450:85;18496:7;18522:6;18450:85;;-1:-1:-1;;;;;18522:6:5;;;3170:51:7;;3158:2;3143:18;18450:85:5;3024:203:7;6775:102:5;;;:::i;21378:210::-;;;;;;:::i;:::-;;:::i;10981:427::-;;;;;;:::i;:::-;;:::i;8146:189::-;;;;;;:::i;:::-;;:::i;21019:115::-;;;;;;:::i;:::-;;:::i;8393:149::-;;;;;;:::i;:::-;;:::i;19323:198::-;;;;;;:::i;:::-;;:::i;6564:98::-;6618:13;6650:5;6643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:98;:::o;8850:197::-;8933:4;4243:10;8987:32;4243:10;9003:7;9012:6;8987:8;:32::i;:::-;9036:4;9029:11;;;8850:197;;;;;:::o;21140:232::-;18343:13;:11;:13::i;:::-;21262:9:::1;21257:109;21277:19:::0;;::::1;21257:109;;;21317:38;21336:8;;21345:1;21336:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21349:5;21317:18;:38::i;:::-;21298:3;;21257:109;;;;21140:232:::0;;;:::o;9609:256::-;9706:4;4243:10;9762:38;9778:4;4243:10;9793:6;9762:15;:38::i;:::-;9810:27;9820:4;9826:2;9830:6;9810:9;:27::i;:::-;-1:-1:-1;9854:4:5;;9609:256;-1:-1:-1;;;;9609:256:5:o;10260:234::-;10348:4;4243:10;10402:64;4243:10;10418:7;10455:10;10427:25;4243:10;10418:7;10427:9;:25::i;:::-;:38;;;;:::i;:::-;10402:8;:64::i;20934:79::-;20981:25;20987:10;20999:6;20981:5;:25::i;:::-;20934:79;:::o;19073:101::-;18343:13;:11;:13::i;:::-;19137:30:::1;19164:1;19137:18;:30::i;:::-;19073:101::o:0;6775:102::-;6831:13;6863:7;6856:14;;;;;:::i;21378:210::-;18343:13;:11;:13::i;:::-;21490:9:::1;21485:97;21505:19:::0;;::::1;21485:97;;;21566:5;21545;:18;21551:8;;21560:1;21551:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21545:18:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;21545:18:5;:26;;-1:-1:-1;;21545:26:5::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;21526:3:5::1;21485:97;;10981:427:::0;11074:4;4243:10;11074:4;11155:25;4243:10;11172:7;11155:9;:25::i;:::-;11128:52;;11218:15;11198:16;:35;;11190:85;;;;-1:-1:-1;;;11190:85:5;;4689:2:7;11190:85:5;;;4671:21:7;4728:2;4708:18;;;4701:30;4767:34;4747:18;;;4740:62;-1:-1:-1;;;4818:18:7;;;4811:35;4863:19;;11190:85:5;;;;;;;;;11309:60;11318:5;11325:7;11353:15;11334:16;:34;11309:8;:60::i;8146:189::-;8225:4;4243:10;8279:28;4243:10;8296:2;8300:6;8279:9;:28::i;21019:115::-;18343:13;:11;:13::i;:::-;21076:6:::1;:15:::0;;-1:-1:-1;;;;21076:15:5::1;-1:-1:-1::0;;;21076:15:5;::::1;;;;::::0;;21106:21:::1;::::0;::::1;::::0;-1:-1:-1;;21106:21:5::1;21019:115:::0;:::o;8393:149::-;-1:-1:-1;;;;;8508:18:5;;;8482:7;8508:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8393:149::o;19323:198::-;18343:13;:11;:13::i;:::-;-1:-1:-1;;;;;19411:22:5;::::1;19403:73;;;::::0;-1:-1:-1;;;19403:73:5;;5095:2:7;19403:73:5::1;::::0;::::1;5077:21:7::0;5134:2;5114:18;;;5107:30;5173:34;5153:18;;;5146:62;-1:-1:-1;;;5224:18:7;;;5217:36;5270:19;;19403:73:5::1;4893:402:7::0;19403:73:5::1;19486:28;19505:8;19486:18;:28::i;14863:340::-:0;-1:-1:-1;;;;;14964:19:5;;14956:68;;;;-1:-1:-1;;;14956:68:5;;5502:2:7;14956:68:5;;;5484:21:7;5541:2;5521:18;;;5514:30;5580:34;5560:18;;;5553:62;-1:-1:-1;;;5631:18:7;;;5624:34;5675:19;;14956:68:5;5300:400:7;14956:68:5;-1:-1:-1;;;;;15042:21:5;;15034:68;;;;-1:-1:-1;;;15034:68:5;;5907:2:7;15034:68:5;;;5889:21:7;5946:2;5926:18;;;5919:30;5985:34;5965:18;;;5958:62;-1:-1:-1;;;6036:18:7;;;6029:32;6078:19;;15034:68:5;5705:398:7;15034:68:5;-1:-1:-1;;;;;15113:18:5;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15164:32;;2090:25:7;;;15164:32:5;;2063:18:7;15164:32:5;;;;;;;;14863:340;;;:::o;18608:130::-;18496:7;18522:6;-1:-1:-1;;;;;18522:6:5;4243:10;18671:23;18663:68;;;;-1:-1:-1;;;18663:68:5;;6310:2:7;18663:68:5;;;6292:21:7;;;6329:18;;;6322:30;6388:34;6368:18;;;6361:62;6440:18;;18663:68:5;6108:356:7;22316:176:5;-1:-1:-1;;;;;22400:29:5;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;22400:37:5;;;;;;;;;;22452:33;;1014:41:7;;;22452:33:5;;987:18:7;22452:33:5;;;;;;;22316:176;;:::o;15484:411::-;15584:24;15611:25;15621:5;15628:7;15611:9;:25::i;:::-;15584:52;;-1:-1:-1;;15650:16:5;:37;15646:243;;15731:6;15711:16;:26;;15703:68;;;;-1:-1:-1;;;15703:68:5;;6671:2:7;15703:68:5;;;6653:21:7;6710:2;6690:18;;;6683:30;6749:31;6729:18;;;6722:59;6798:18;;15703:68:5;6469:353:7;15703:68:5;15813:51;15822:5;15829:7;15857:6;15838:16;:25;15813:8;:51::i;11862:788::-;-1:-1:-1;;;;;11958:18:5;;11950:68;;;;-1:-1:-1;;;11950:68:5;;7029:2:7;11950:68:5;;;7011:21:7;7068:2;7048:18;;;7041:30;7107:34;7087:18;;;7080:62;-1:-1:-1;;;7158:18:7;;;7151:35;7203:19;;11950:68:5;6827:401:7;11950:68:5;-1:-1:-1;;;;;12036:16:5;;12028:64;;;;-1:-1:-1;;;12028:64:5;;7435:2:7;12028:64:5;;;7417:21:7;7474:2;7454:18;;;7447:30;7513:34;7493:18;;;7486:62;-1:-1:-1;;;7564:18:7;;;7557:33;7607:19;;12028:64:5;7233:399:7;12028:64:5;12103:38;12124:4;12130:2;12134:6;12103:20;:38::i;:::-;-1:-1:-1;;;;;12174:15:5;;12152:19;12174:15;;;:9;:15;;;;;;12207:21;;;;12199:72;;;;-1:-1:-1;;;12199:72:5;;7839:2:7;12199:72:5;;;7821:21:7;7878:2;7858:18;;;7851:30;7917:34;7897:18;;;7890:62;-1:-1:-1;;;7968:18:7;;;7961:36;8014:19;;12199:72:5;7637:402:7;12199:72:5;-1:-1:-1;;;;;12305:15:5;;;;;;;:9;:15;;;;;;12323:20;;;12305:38;;12520:13;;;;;;;;;;:23;;;;;;12569:26;;;;;;12337:6;2090:25:7;;2078:2;2063:18;;1944:177;12569:26:5;;;;;;;;12606:37;13781:659;;-1:-1:-1;;;;;13864:21:5;;13856:67;;;;-1:-1:-1;;;13856:67:5;;8246:2:7;13856:67:5;;;8228:21:7;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;-1:-1:-1;;;8375:18:7;;;8368:31;8416:19;;13856:67:5;8044:397:7;13856:67:5;13934:49;13955:7;13972:1;13976:6;13934:20;:49::i;:::-;-1:-1:-1;;;;;14019:18:5;;13994:22;14019:18;;;:9;:18;;;;;;14055:24;;;;14047:71;;;;-1:-1:-1;;;14047:71:5;;8648:2:7;14047:71:5;;;8630:21:7;8687:2;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;-1:-1:-1;;;8777:18:7;;;8770:32;8819:19;;14047:71:5;8446:398:7;14047:71:5;-1:-1:-1;;;;;14152:18:5;;;;;;:9;:18;;;;;;;;14173:23;;;14152:44;;14289:12;:22;;;;;;;14337:37;2090:25:7;;;14152:18:5;;;14337:37;;2063:18:7;14337:37:5;1944:177:7;19675:187:5;19748:16;19767:6;;-1:-1:-1;;;;;19783:17:5;;;-1:-1:-1;;;;;;19783:17:5;;;;;;19815:40;;19767:6;;;;;;;19815:40;;19748:16;19815:40;19738:124;19675:187;:::o;21594:716::-;-1:-1:-1;;;;;21838:11:5;;21792:14;21838:11;;;:5;:11;;;;;;21809:10;;21838:11;;21837:12;21829:49;;;;-1:-1:-1;;;21829:49:5;;9051:2:7;21829:49:5;;;9033:21:7;9090:2;9070:18;;;9063:30;-1:-1:-1;;;9109:18:7;;;9102:54;9173:18;;21829:49:5;8849:348:7;21829:49:5;21906:4;-1:-1:-1;;;;;21896:14:5;:6;-1:-1:-1;;;;;21896:14:5;;:32;;;-1:-1:-1;;;;;;21915:13:5;;;;;;:5;:13;;;;;;;;21914:14;21896:32;21888:69;;;;-1:-1:-1;;;21888:69:5;;9051:2:7;21888:69:5;;;9033:21:7;9090:2;9070:18;;;9063:30;-1:-1:-1;;;9109:18:7;;;9102:54;9173:18;;21888:69:5;8849:348:7;21888:69:5;21988:9;-1:-1:-1;;;;;21988:17:5;;;;:40;;-1:-1:-1;22009:9:5;-1:-1:-1;;;;;22009:19:5;;;21988:40;:61;;;-1:-1:-1;22039:9:5;22033:16;;;;:5;:16;;;;;;;;22032:17;21988:61;21967:127;;;;-1:-1:-1;;;21967:127:5;;9404:2:7;21967:127:5;;;9386:21:7;9443:2;9423:18;;;9416:30;-1:-1:-1;;;9462:18:7;;;9455:49;9521:18;;21967:127:5;9202:343:7;21967:127:5;22122:6;;-1:-1:-1;;;22122:6:5;;;;:83;;;;-1:-1:-1;;;;;;22150:26:5;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;22180:24:5;;;;;;:20;:24;;;;;;;;22150:54;22148:57;22122:83;22104:200;;;22240:8;;:25;;-1:-1:-1;;;22240:25:5;;-1:-1:-1;;;;;9780:15:7;;;22240:25:5;;;9762:34:7;9832:15;;;9812:18;;;9805:43;22240:8:5;;;;:15;;9697:18:7;;22240:25:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22231:62;;;;-1:-1:-1;;;22231:62:5;;10311:2:7;22231:62:5;;;10293:21:7;10350:2;10330:18;;;10323:30;-1:-1:-1;;;10369:18:7;;;10362:52;10431:18;;22231:62:5;10109:346:7;14:418;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:173::-;505:20;;-1:-1:-1;;;;;554:31:7;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:7:o;1066:118::-;1152:5;1145:13;1138:21;1131:5;1128:32;1118:60;;1174:1;1171;1164:12;1189:750;1281:6;1289;1297;1350:2;1338:9;1329:7;1325:23;1321:32;1318:52;;;1366:1;1363;1356:12;1318:52;1406:9;1393:23;1435:18;1476:2;1468:6;1465:14;1462:34;;;1492:1;1489;1482:12;1462:34;1530:6;1519:9;1515:22;1505:32;;1575:7;1568:4;1564:2;1560:13;1556:27;1546:55;;1597:1;1594;1587:12;1546:55;1637:2;1624:16;1663:2;1655:6;1652:14;1649:34;;;1679:1;1676;1669:12;1649:34;1734:7;1727:4;1717:6;1714:1;1710:14;1706:2;1702:23;1698:34;1695:47;1692:67;;;1755:1;1752;1745:12;1692:67;1786:4;1778:13;;;;-1:-1:-1;1810:6:7;-1:-1:-1;;1851:20:7;;1838:34;1881:28;1838:34;1881:28;:::i;:::-;1928:5;1918:15;;;1189:750;;;;;:::o;2126:328::-;2203:6;2211;2219;2272:2;2260:9;2251:7;2247:23;2243:32;2240:52;;;2288:1;2285;2278:12;2240:52;2311:29;2330:9;2311:29;:::i;:::-;2301:39;;2359:38;2393:2;2382:9;2378:18;2359:38;:::i;:::-;2349:48;;2444:2;2433:9;2429:18;2416:32;2406:42;;2126:328;;;;;:::o;2648:186::-;2707:6;2760:2;2748:9;2739:7;2735:23;2731:32;2728:52;;;2776:1;2773;2766:12;2728:52;2799:29;2818:9;2799:29;:::i;:::-;2789:39;2648:186;-1:-1:-1;;;2648:186:7:o;2839:180::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;-1:-1:-1;2990:23:7;;2839:180;-1:-1:-1;2839:180:7:o;3232:241::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;3396:9;3383:23;3415:28;3437:5;3415:28;:::i;3478:260::-;3546:6;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3694:38;3728:2;3717:9;3713:18;3694:38;:::i;:::-;3684:48;;3478:260;;;;;:::o;3743:380::-;3822:1;3818:12;;;;3865;;;3886:61;;3940:4;3932:6;3928:17;3918:27;;3886:61;3993:2;3985:6;3982:14;3962:18;3959:38;3956:161;;4039:10;4034:3;4030:20;4027:1;4020:31;4074:4;4071:1;4064:15;4102:4;4099:1;4092:15;3956:161;;3743:380;;;:::o;4128:127::-;4189:10;4184:3;4180:20;4177:1;4170:31;4220:4;4217:1;4210:15;4244:4;4241:1;4234:15;4260:222;4325:9;;;4346:10;;;4343:133;;;4398:10;4393:3;4389:20;4386:1;4379:31;4433:4;4430:1;4423:15;4461:4;4458:1;4451:15;9859:245;9926:6;9979:2;9967:9;9958:7;9954:23;9950:32;9947:52;;;9995:1;9992;9985:12;9947:52;10027:9;10021:16;10046:28;10068:5;10046:28;:::i
Swarm Source
ipfs://6dd8abb57c564cbeb05cdd78a6b5f957b28abf8915a64c49e831874dda270a09
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.