Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Gaming
Overview
Max Total Supply
19,000,000 COVID
Holders
215 (0.00%)
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 Name:
CovidGambit
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⣰⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ * ⠀⠀⠀⠀⠀⠀⠀⡀⠀⢀⠒⠑⣴⣦⣾⣧⣤⢀⡤⠀⠀⠀⡀⠀⠀⠀ * ⠀⠀⠀⠀⢀⠀⢀⡘⠉⠁⣰⣾⣿⣿⣿⣿⣿⣿⣷⢀⡤⠊⠀⠀⠀⠀ * ⠀⠀⠀⠀⠀⢱⠊⡄⠒⠾⣿⣿⣿⣿⣿⣿⠿⠛⢹⣿⣯⣤⠤⠄⠀⠀ * ⠀⠀⠀⠒⢦⠂⠀⣇⠀⠸⠟⢈⣿⣿⡁⠺⠗⠀⣸⣿⣿⣃⠀⠀⠀⠀ * ⠀⠀⠀⠀⢘⢀⣼⠻⢷⣶⣶⣿⣿⣿⣿⣶⣶⣾⠟⣻⣿⡯⠁⠀⠀⠀ * ⠀⠀⠀⠉⠱⢾⣿⡀⠀⠈⠉⠙⠛⠛⠛⠉⠉⠀⢀⣿⣿⠿⠛⠒⠀⠀ * ⠀⠀⠀⠀⠔⢛⣿⣷⡈⠒⠀⠀⠀⠔⠁⠊⠒⢈⣾⣿⡏⠀⠀⠀⠀⠀ * ⠀⠀⠀⠀⠀⠜⠛⠿⣿⣶⣤⣀⣀⣀⣀⣤⣶⣿⠿⣿⠉⠀⠀⠀⠀⠀ * ⠀⠀⠀⠀⠀⠀⠀⡸⠛⢉⡿⠻⠟⣿⢿⡟⣏⠁⠀⠘⠄⠀⠀⠀⠀⠀ * ⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠁⠀⠃⠘⡀⠀⠀⠀⠀⠀ * * COVID GAMBIT: A REVOLUTIONARY ERC-20 DIGITAL GAME INSPIRED BY REAL-WORLD PANDEMICS * * This document provides a comprehensive guide to understanding and navigating Covid Gambit, * an innovative ERC-20 digital game that is based on real-world epidemiological events. * * Gameplay Guidelines: * * Participants can acquire $COVID tokens via Uniswap. Upon every transaction, there exists a 10% probability * that the participant will become an index case, or in gaming terms, "infected". * * Once a player is designated as infected, they are faced with a decision: to potentially infect others * by utilizing the "sneeze" function or to self-isolate in the quarantine module. It is crucial to * note that infected players have a time constraint of 48 hours to make this decision, failure to which * results in game "death" due to disease progression, thereby disabling the ability to transfer tokens. * * The "sneeze" function carries a dual probability: a 30% chance of the infected player gaining immunity * and a 100% probability of the target player becoming infected. Therefore, on average, an infected player * must "sneeze" on three non-infected wallets to gain immunity and continue the spread of infection. * Immunity provides a one-week protection from being "sneezed on" by other players. This function is only * applicable to non-infected players. * * Alternatively, an infected player may choose to enter the quarantine module, which requires a one-week * commitment during which the player cannot transfer tokens. Upon completion of the quarantine period, the * player will be considered "healthy". Access to the quarantine module is restricted to infected players only. * * Non-infected or "healthy" players can maintain their status by executing the washHands() function, granting * them immunity for an 24-hour period, during which they are unaffected by the "sneeze" function of other * players. Regular execution of the washHands() function is advised to maintain player health. * * Game Dynamics: * * As per the game's mechanics, only 33% of players can achieve long-term immunity. Given the restriction * against "sneezing" on other infected players, a player's options are limited to either entering the * week-long quarantine module (locking tokens), or exiting the game by selling their tokens. * * Strategic Considerations: * * The goal of this game is twofold: to maintain individual health for the longest possible duration and to * collectively combat the pandemic. Players are faced with a moral dilemma: do they infect others to gain * immunity, or do they choose to quarantine, promoting collective efforts to end the pandemic? * The choice is in the hands of each player. * * Website: covidgambit.com * Twitter: twitter.com/CovidGambitGame * Telegram: t.me/CovidGambit */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; import "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; import "interfaces/IUniswapV2Router02.sol"; import "interfaces/IUniswapV2Pair.sol"; import "interfaces/IUniswapV2Factory.sol"; contract CovidGambit is ERC20, Ownable { mapping(address => bool) public isVaxxed; mapping(address => uint256) public firstInfectedTime; mapping(address => uint256) public immunityEndTime; mapping(address => uint256) public quarantineEndTime; bool plandemicStarted; event Sneezed(address indexed patient, address indexed target, bool indexed gotImmunity); event GotCovid(address indexed patient, address indexed from); event WashedHands(address indexed patient, uint256 immunityEndTime); event EnteredQuarantine(address indexed patient, uint256 quarantineEndTime); IUniswapV2Pair public pair; IUniswapV2Router02 public router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 maxWallet; constructor() ERC20("Covid Gambit", "COVID") { getVaxxed(address(this)); getVaxxed(address(router)); getVaxxed(address(pair)); getVaxxed(msg.sender); getVaxxed(0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B); // Universal router _mint(msg.sender, 19_000_000e18); pair = IUniswapV2Pair(IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH())); maxWallet = totalSupply() / 200; // 0.5% max wallet at launch } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { // Launch stuff if (from == address(pair) && !isVaxxed[to]) { require(amount + balanceOf(to) <= maxWallet, "You can't buy that much right now"); } if (plandemicStarted) { // Infected dies in 48 hrs if (!isHealthy(from)) { require(!isDead(from), "You got covid and died"); } // Can only buy and sell require(from == address(pair) || to == address(pair) || isVaxxed[from], "You can't escape covid"); // Can't sell if in quarantine require(!isQuarantined(from), "You are in quarantine"); // If you buy there's a 10% chance of contracting covid (if you dont have immunity) if (from == address(pair) && !isImmune(to) && !isVaxxed[to]) { if (isPatientZero(10, to) && !isInfected(to)) { firstInfectedTime[to] = block.timestamp; emit GotCovid(to, from); } } } super._beforeTokenTransfer(from, to, amount); } function sneeze(address target) public { require(isInfected(msg.sender), "Not infected or already dead"); require(!isImmune(msg.sender), "Already has immunity"); require(!isQuarantined(msg.sender), "Already in quarantine"); require(balanceOf(msg.sender) > 0, "Covid denier"); require(!isImmune(target), "Target has immunity"); require(!isVaxxed[target], "Target is vaxxed"); require(!isQuarantined(target), "Target in quarantine"); require(isHealthy(target), "Target already infected or dead"); require(balanceOf(target) > 0, "Target is covid denier"); firstInfectedTime[target] = block.timestamp; bool gotImmunity; if (isPatientZero(30, target)) { firstInfectedTime[msg.sender] = 0; immunityEndTime[msg.sender] = block.timestamp + 7 days; gotImmunity = true; } emit Sneezed(msg.sender, target, gotImmunity); emit GotCovid(target, msg.sender); } function washHands() public { require(isHealthy(msg.sender), "Already infected"); require(!isQuarantined(msg.sender), "Already in quarantine"); require(balanceOf(msg.sender) > 0, "Covid denier"); immunityEndTime[msg.sender] = block.timestamp + 24 hours; emit WashedHands(msg.sender, immunityEndTime[msg.sender]); } function enterQuarantine() public { require(isInfected(msg.sender), "Not infected or already dead"); require(!isQuarantined(msg.sender), "Already in quarantine"); require(!isImmune(msg.sender), "Already has immunity"); require(balanceOf(msg.sender) > 0, "Covid denier"); firstInfectedTime[msg.sender] = 0; quarantineEndTime[msg.sender] = block.timestamp + 7 days; emit EnteredQuarantine(msg.sender, quarantineEndTime[msg.sender]); } function plandemicStats(address[] memory patients) public view returns (uint256, uint256, uint256, uint256, uint256) { uint256 healthyCount; uint256 infectedCount; uint256 quarantinedCount; uint256 immuneCount; uint256 deadCount; for (uint256 i = 0; i < patients.length; i++) { uint256 status = patientStatus(patients[i]); if (status == 0) { healthyCount++; } else if (status == 1) { infectedCount++; } else if (status == 2) { quarantinedCount++; } else if (status == 3) { immuneCount++; } else if (status == 4) { deadCount++; } } return (healthyCount, infectedCount, quarantinedCount, immuneCount, deadCount); } function patientStatus(address patient) public view returns (uint256 status) { if (isHealthy(patient) && !isQuarantined(patient) && !isImmune(patient) || isVaxxed[patient]) { return 0; } else if (isInfected(patient)) { return 1; } else if (isQuarantined(patient)) { return 2; } else if (isImmune(patient)) { return 3; } else if (isDead(patient)) { return 4; } } function startPlandemic(bool isStarted) public onlyOwner { plandemicStarted = isStarted; } function getVaxxed(address patient) public onlyOwner { isVaxxed[patient] = true; } function getUnvaxxed(address patient) public onlyOwner { isVaxxed[patient] = false; } function setMaxWallet(uint256 _maxWallet) public onlyOwner { maxWallet = _maxWallet; } function isPatientZero(uint256 chance, address patient) private returns (bool isIndeed) { uint256 dna = uint256(keccak256(abi.encodePacked(patient, block.timestamp, balanceOf(patient)))) % 101; return dna <= chance; } function isHealthy(address patient) private view returns (bool isIndeed) { return firstInfectedTime[patient] == 0; } function isInfected(address patient) private view returns (bool isIndeed) { return firstInfectedTime[patient] + 48 hours > block.timestamp; } function isQuarantined(address patient) private view returns (bool isIndeed) { return quarantineEndTime[patient] > block.timestamp; } function isImmune(address patient) private view returns (bool isIndeed) { return immunityEndTime[patient] > block.timestamp; } function isDead(address patient) private view returns (bool isIndeed) { return firstInfectedTime[patient] + 48 hours < block.timestamp; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"patient","type":"address"},{"indexed":false,"internalType":"uint256","name":"quarantineEndTime","type":"uint256"}],"name":"EnteredQuarantine","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"patient","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"}],"name":"GotCovid","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":"patient","type":"address"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":true,"internalType":"bool","name":"gotImmunity","type":"bool"}],"name":"Sneezed","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"patient","type":"address"},{"indexed":false,"internalType":"uint256","name":"immunityEndTime","type":"uint256"}],"name":"WashedHands","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":[],"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":[],"name":"enterQuarantine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstInfectedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"patient","type":"address"}],"name":"getUnvaxxed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"patient","type":"address"}],"name":"getVaxxed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"immunityEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isVaxxed","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":"pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"patient","type":"address"}],"name":"patientStatus","outputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"patients","type":"address[]"}],"name":"plandemicStats","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"quarantineEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"sneeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isStarted","type":"bool"}],"name":"startPlandemic","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"},{"inputs":[],"name":"washHands","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200003757600080fd5b506040518060400160405280600c81526020016b10dbdd9a590811d85b589a5d60a21b8152506040518060400160405280600581526020016410d3d5925160da1b81525081600390816200008c919062000980565b5060046200009b828262000980565b505050620000b8620000b2620002f660201b60201c565b620002fa565b620000c3306200034c565b600b54620000da906001600160a01b03166200034c565b600a54620000f69061010090046001600160a01b03166200034c565b62000101336200034c565b6200012073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b6200034c565b62000137336a0fb768105935a2f30000006200037a565b600b60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b1919062000a4c565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023a919062000a4c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000288573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000a4c565b600a80546001600160a01b039290921661010002610100600160a81b031990921691909117905560c8620002e160025490565b620002ed919062000a94565b600c5562000ae4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003566200044f565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b038216620003d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620003e460008383620004ad565b8060026000828254620003f8919062000aab565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003cd565b565b600a546001600160a01b0384811661010090920416148015620004e957506001600160a01b03821660009081526006602052604090205460ff16155b156200057157600c546001600160a01b03831660009081526020819052604090205462000517908362000aab565b1115620005715760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206275792074686174206d756368207269676874206e6f6044820152607760f81b6064820152608401620003cd565b600a5460ff1615620007dc576001600160a01b03831660009081526007602052604090205415620005f657620005a783620007f9565b15620005f65760405162461bcd60e51b815260206004820152601660248201527f596f7520676f7420636f76696420616e642064696564000000000000000000006044820152606401620003cd565b600a546001600160a01b038481166101009092041614806200062a5750600a546001600160a01b0383811661010090920416145b806200064e57506001600160a01b03831660009081526006602052604090205460ff165b6200069c5760405162461bcd60e51b815260206004820152601660248201527f596f752063616e27742065736361706520636f766964000000000000000000006044820152606401620003cd565b6001600160a01b038316600090815260096020526040902054421015620007065760405162461bcd60e51b815260206004820152601560248201527f596f752061726520696e2071756172616e74696e6500000000000000000000006044820152606401620003cd565b600a546001600160a01b03848116610100909204161480156200074157506001600160a01b0382166000908152600860205260409020544210155b80156200076757506001600160a01b03821660009081526006602052604090205460ff16155b15620007dc576200077a600a836200082a565b80156200078f57506200078d82620008ab565b155b15620007dc576001600160a01b0380831660008181526007602052604080822042905551928616927fe7afd546915231b4e5d47cb28267b206fad93937d73ff3c01300660c52a86b5b9190a35b620007f4838383620007f460201b62000ea41760201c565b505050565b6001600160a01b038116600090815260076020526040812054429062000823906202a30062000aab565b1092915050565b6000806065834262000851826001600160a01b031660009081526020819052604090205490565b60405160609390931b6001600160601b0319166020840152603483019190915260548201526074016040516020818303038152906040528051906020012060001c6200089e919062000acd565b8410159150505b92915050565b6001600160a01b0381166000908152600760205260408120544290620008d5906202a30062000aab565b1192915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200090757607f821691505b6020821081036200092857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007f457600081815260208120601f850160051c81016020861015620009575750805b601f850160051c820191505b81811015620009785782815560010162000963565b505050505050565b81516001600160401b038111156200099c576200099c620008dc565b620009b481620009ad8454620008f2565b846200092e565b602080601f831160018114620009ec5760008415620009d35750858301515b600019600386901b1c1916600185901b17855562000978565b600085815260208120601f198616915b8281101562000a1d57888601518255948401946001909101908401620009fc565b508582101562000a3c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a5f57600080fd5b81516001600160a01b038116811462000a7757600080fd5b9392505050565b634e487b7160e01b600052601260045260246000fd5b60008262000aa65762000aa662000a7e565b500490565b80820180821115620008a557634e487b7160e01b600052601160045260246000fd5b60008262000adf5762000adf62000a7e565b500690565b6119e88062000af46000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a9059cbb116100a2578063d750dcb711610071578063d750dcb714610404578063dd62ed3e14610424578063f2fde38b14610437578063f887ea401461044a57600080fd5b8063a9059cbb14610390578063ada89b6c146103a3578063ce7c63c5146103de578063d4ccdc56146103f157600080fd5b806395d89b41116100de57806395d89b411461033a5780639bced60e14610342578063a457c2d714610365578063a8aa1b311461037857600080fd5b8063715018a6146102fa57806381992f43146103025780638da5cb5b1461031557600080fd5b80634c36ae4611610171578063642726c91161014b578063642726c9146102a15780636e4687a9146102c15780636ec9f7e9146102d457806370a08231146102e757600080fd5b80634c36ae46146102665780635d0044ca146102865780635ffc08771461029957600080fd5b806318160ddd116101ad57806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025357600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630bdaa95e14610215575b600080fd5b6101dc61045d565b6040516101e99190611673565b60405180910390f35b6102056102003660046116d8565b6104ef565b60405190151581526020016101e9565b61021d610509565b005b6002545b6040519081526020016101e9565b61020561023f366004611702565b610608565b604051601281526020016101e9565b6102056102613660046116d8565b61062c565b61022361027436600461173e565b60086020526000908152604090205481565b61021d610294366004611760565b61064e565b61021d61065b565b6102236102af36600461173e565b60096020526000908152604090205481565b61021d6102cf36600461173e565b6107ad565b6102236102e236600461173e565b610b19565b6102236102f536600461173e565b610be4565b61021d610bff565b61021d61031036600461173e565b610c13565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101e9565b6101dc610c3c565b61020561035036600461173e565b60066020526000908152604090205460ff1681565b6102056103733660046116d8565b610c4b565b600a546103229061010090046001600160a01b031681565b61020561039e3660046116d8565b610cc6565b6103b66103b136600461178f565b610cd4565b604080519586526020860194909452928401919091526060830152608082015260a0016101e9565b61021d6103ec366004611854565b610db9565b61021d6103ff36600461173e565b610dd4565b61022361041236600461173e565b60076020526000908152604090205481565b610223610432366004611876565b610e00565b61021d61044536600461173e565b610e2b565b600b54610322906001600160a01b031681565b60606003805461046c906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610498906118a9565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b6000336104fd818585610ea9565b60019150505b92915050565b336000908152600760205260409020541561055e5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481a5b999958dd195960821b60448201526064015b60405180910390fd5b61056733610fcd565b156105845760405162461bcd60e51b8152600401610555906118e3565b600061058f33610be4565b116105ac5760405162461bcd60e51b815260040161055590611912565b6105b9426201518061194e565b33600081815260086020526040908190208390555190917fb6258ea0960c16674f47bfdf643e10c728d4ddb5d60b5312f1b78243b0c75c38916105fe91815260200190565b60405180910390a2565b600033610616858285610fea565b610621858585611064565b506001949350505050565b6000336104fd81858561063f8383610e00565b610649919061194e565b610ea9565b610656611213565b600c55565b6106643361126d565b6106b05760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420696e666563746564206f7220616c72656164792064656164000000006044820152606401610555565b6106b933610fcd565b156106d65760405162461bcd60e51b8152600401610555906118e3565b6106df3361129c565b156107235760405162461bcd60e51b8152602060048201526014602482015273416c72656164792068617320696d6d756e69747960601b6044820152606401610555565b600061072e33610be4565b1161074b5760405162461bcd60e51b815260040161055590611912565b336000908152600760205260408120556107684262093a8061194e565b33600081815260096020526040908190208390555190917fe5b5fd1d5f0ef7badcfe65df9f129bc273043c81bd0cd097ebc8b9211a42f21c916105fe91815260200190565b6107b63361126d565b6108025760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420696e666563746564206f7220616c72656164792064656164000000006044820152606401610555565b61080b3361129c565b1561084f5760405162461bcd60e51b8152602060048201526014602482015273416c72656164792068617320696d6d756e69747960601b6044820152606401610555565b61085833610fcd565b156108755760405162461bcd60e51b8152600401610555906118e3565b600061088033610be4565b1161089d5760405162461bcd60e51b815260040161055590611912565b6108a68161129c565b156108e95760405162461bcd60e51b81526020600482015260136024820152725461726765742068617320696d6d756e69747960681b6044820152606401610555565b6001600160a01b03811660009081526006602052604090205460ff16156109455760405162461bcd60e51b815260206004820152601060248201526f15185c99d95d081a5cc81d985e1e195960821b6044820152606401610555565b61094e81610fcd565b156109925760405162461bcd60e51b815260206004820152601460248201527354617267657420696e2071756172616e74696e6560601b6044820152606401610555565b6001600160a01b038116600090815260076020526040902054156109f85760405162461bcd60e51b815260206004820152601f60248201527f54617267657420616c726561647920696e666563746564206f722064656164006044820152606401610555565b6000610a0382610be4565b11610a495760405162461bcd60e51b81526020600482015260166024820152752a30b933b2ba1034b99031b7bb34b2103232b734b2b960511b6044820152606401610555565b6001600160a01b0381166000908152600760205260408120429055610a6f601e836112b9565b15610aa55733600090815260076020526040812055610a914262093a8061194e565b336000908152600860205260409020555060015b604051811515906001600160a01b0384169033907f3245a16b9703c4d19cd739a7a470c0ecc091849e34ab750ca41f87e78393cdbf90600090a460405133906001600160a01b038416907fe7afd546915231b4e5d47cb28267b206fad93937d73ff3c01300660c52a86b5b90600090a35050565b6001600160a01b038116600090815260076020526040812054158015610b455750610b4382610fcd565b155b8015610b575750610b558261129c565b155b80610b7a57506001600160a01b03821660009081526006602052604090205460ff165b15610b8757506000919050565b610b908261126d565b15610b9d57506001919050565b610ba682610fcd565b15610bb357506002919050565b610bbc8261129c565b15610bc957506003919050565b610bd282611324565b15610bdf57506004919050565b919050565b6001600160a01b031660009081526020819052604090205490565b610c07611213565b610c116000611353565b565b610c1b611213565b6001600160a01b03166000908152600660205260409020805460ff19169055565b60606004805461046c906118a9565b60003381610c598286610e00565b905083811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610555565b6106218286868403610ea9565b6000336104fd818585611064565b60008060008060008060008060008060005b8b51811015610da6576000610d138d8381518110610d0657610d06611961565b6020026020010151610b19565b905080600003610d2f5786610d2781611977565b975050610d93565b80600103610d495785610d4181611977565b965050610d93565b80600203610d635784610d5b81611977565b955050610d93565b80600303610d7d5783610d7581611977565b945050610d93565b80600403610d935782610d8f81611977565b9350505b5080610d9e81611977565b915050610ce6565b50939a9299509097509550909350915050565b610dc1611213565b600a805460ff1916911515919091179055565b610ddc611213565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e33611213565b6001600160a01b038116610e985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b610ea181611353565b50565b505050565b6001600160a01b038316610f0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b038216610f6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0316600090815260096020526040902054421090565b6000610ff68484610e00565b9050600019811461105e57818110156110515760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610555565b61105e8484848403610ea9565b50505050565b6001600160a01b0383166110c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610555565b6001600160a01b03821661112a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b6111358383836113a5565b6001600160a01b038316600090815260208190526040902054818110156111ad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610555565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361105e565b6005546001600160a01b03163314610c115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b6001600160a01b0381166000908152600760205260408120544290611295906202a30061194e565b1192915050565b6001600160a01b0316600090815260086020526040902054421090565b600080606583426112c986610be4565b60405160609390931b6bffffffffffffffffffffffff19166020840152603483019190915260548201526074016040516020818303038152906040528051906020012060001c6113199190611990565b909310159392505050565b6001600160a01b038116600090815260076020526040812054429061134c906202a30061194e565b1092915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03848116610100909204161480156113e057506001600160a01b03821660009081526006602052604090205460ff16155b1561145357600c546113f183610be4565b6113fb908361194e565b11156114535760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206275792074686174206d756368207269676874206e6f6044820152607760f81b6064820152608401610555565b600a5460ff1615610ea4576001600160a01b038316600090815260076020526040902054156114cb5761148583611324565b156114cb5760405162461bcd60e51b8152602060048201526016602482015275165bdd4819dbdd0818dbdd9a5908185b9908191a595960521b6044820152606401610555565b600a546001600160a01b038481166101009092041614806114fe5750600a546001600160a01b0383811661010090920416145b8061152157506001600160a01b03831660009081526006602052604090205460ff165b6115665760405162461bcd60e51b8152602060048201526016602482015275165bdd4818d85b89dd08195cd8d85c194818dbdd9a5960521b6044820152606401610555565b61156f83610fcd565b156115b45760405162461bcd60e51b8152602060048201526015602482015274596f752061726520696e2071756172616e74696e6560581b6044820152606401610555565b600a546001600160a01b03848116610100909204161480156115dc57506115da8261129c565b155b801561160157506001600160a01b03821660009081526006602052604090205460ff16155b15610ea457611611600a836112b9565b801561162357506116218261126d565b155b15610ea4576001600160a01b0380831660008181526007602052604080822042905551928616927fe7afd546915231b4e5d47cb28267b206fad93937d73ff3c01300660c52a86b5b9190a3505050565b600060208083528351808285015260005b818110156116a057858101830151858201604001528201611684565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bdf57600080fd5b600080604083850312156116eb57600080fd5b6116f4836116c1565b946020939093013593505050565b60008060006060848603121561171757600080fd5b611720846116c1565b925061172e602085016116c1565b9150604084013590509250925092565b60006020828403121561175057600080fd5b611759826116c1565b9392505050565b60006020828403121561177257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156117a257600080fd5b823567ffffffffffffffff808211156117ba57600080fd5b818501915085601f8301126117ce57600080fd5b8135818111156117e0576117e0611779565b8060051b604051601f19603f8301168101818110858211171561180557611805611779565b60405291825284820192508381018501918883111561182357600080fd5b938501935b8285101561184857611839856116c1565b84529385019392850192611828565b98975050505050505050565b60006020828403121561186657600080fd5b8135801515811461175957600080fd5b6000806040838503121561188957600080fd5b611892836116c1565b91506118a0602084016116c1565b90509250929050565b600181811c908216806118bd57607f821691505b6020821081036118dd57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260159082015274416c726561647920696e2071756172616e74696e6560581b604082015260600190565b6020808252600c908201526b21b7bb34b2103232b734b2b960a11b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561050357610503611938565b634e487b7160e01b600052603260045260246000fd5b60006001820161198957611989611938565b5060010190565b6000826119ad57634e487b7160e01b600052601260045260246000fd5b50069056fea2646970667358221220128a1a679c5055f34168ee81aac8ff81ad31c8b0de90be38d058b15782ac80c364736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a9059cbb116100a2578063d750dcb711610071578063d750dcb714610404578063dd62ed3e14610424578063f2fde38b14610437578063f887ea401461044a57600080fd5b8063a9059cbb14610390578063ada89b6c146103a3578063ce7c63c5146103de578063d4ccdc56146103f157600080fd5b806395d89b41116100de57806395d89b411461033a5780639bced60e14610342578063a457c2d714610365578063a8aa1b311461037857600080fd5b8063715018a6146102fa57806381992f43146103025780638da5cb5b1461031557600080fd5b80634c36ae4611610171578063642726c91161014b578063642726c9146102a15780636e4687a9146102c15780636ec9f7e9146102d457806370a08231146102e757600080fd5b80634c36ae46146102665780635d0044ca146102865780635ffc08771461029957600080fd5b806318160ddd116101ad57806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025357600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630bdaa95e14610215575b600080fd5b6101dc61045d565b6040516101e99190611673565b60405180910390f35b6102056102003660046116d8565b6104ef565b60405190151581526020016101e9565b61021d610509565b005b6002545b6040519081526020016101e9565b61020561023f366004611702565b610608565b604051601281526020016101e9565b6102056102613660046116d8565b61062c565b61022361027436600461173e565b60086020526000908152604090205481565b61021d610294366004611760565b61064e565b61021d61065b565b6102236102af36600461173e565b60096020526000908152604090205481565b61021d6102cf36600461173e565b6107ad565b6102236102e236600461173e565b610b19565b6102236102f536600461173e565b610be4565b61021d610bff565b61021d61031036600461173e565b610c13565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101e9565b6101dc610c3c565b61020561035036600461173e565b60066020526000908152604090205460ff1681565b6102056103733660046116d8565b610c4b565b600a546103229061010090046001600160a01b031681565b61020561039e3660046116d8565b610cc6565b6103b66103b136600461178f565b610cd4565b604080519586526020860194909452928401919091526060830152608082015260a0016101e9565b61021d6103ec366004611854565b610db9565b61021d6103ff36600461173e565b610dd4565b61022361041236600461173e565b60076020526000908152604090205481565b610223610432366004611876565b610e00565b61021d61044536600461173e565b610e2b565b600b54610322906001600160a01b031681565b60606003805461046c906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610498906118a9565b80156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b6000336104fd818585610ea9565b60019150505b92915050565b336000908152600760205260409020541561055e5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481a5b999958dd195960821b60448201526064015b60405180910390fd5b61056733610fcd565b156105845760405162461bcd60e51b8152600401610555906118e3565b600061058f33610be4565b116105ac5760405162461bcd60e51b815260040161055590611912565b6105b9426201518061194e565b33600081815260086020526040908190208390555190917fb6258ea0960c16674f47bfdf643e10c728d4ddb5d60b5312f1b78243b0c75c38916105fe91815260200190565b60405180910390a2565b600033610616858285610fea565b610621858585611064565b506001949350505050565b6000336104fd81858561063f8383610e00565b610649919061194e565b610ea9565b610656611213565b600c55565b6106643361126d565b6106b05760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420696e666563746564206f7220616c72656164792064656164000000006044820152606401610555565b6106b933610fcd565b156106d65760405162461bcd60e51b8152600401610555906118e3565b6106df3361129c565b156107235760405162461bcd60e51b8152602060048201526014602482015273416c72656164792068617320696d6d756e69747960601b6044820152606401610555565b600061072e33610be4565b1161074b5760405162461bcd60e51b815260040161055590611912565b336000908152600760205260408120556107684262093a8061194e565b33600081815260096020526040908190208390555190917fe5b5fd1d5f0ef7badcfe65df9f129bc273043c81bd0cd097ebc8b9211a42f21c916105fe91815260200190565b6107b63361126d565b6108025760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420696e666563746564206f7220616c72656164792064656164000000006044820152606401610555565b61080b3361129c565b1561084f5760405162461bcd60e51b8152602060048201526014602482015273416c72656164792068617320696d6d756e69747960601b6044820152606401610555565b61085833610fcd565b156108755760405162461bcd60e51b8152600401610555906118e3565b600061088033610be4565b1161089d5760405162461bcd60e51b815260040161055590611912565b6108a68161129c565b156108e95760405162461bcd60e51b81526020600482015260136024820152725461726765742068617320696d6d756e69747960681b6044820152606401610555565b6001600160a01b03811660009081526006602052604090205460ff16156109455760405162461bcd60e51b815260206004820152601060248201526f15185c99d95d081a5cc81d985e1e195960821b6044820152606401610555565b61094e81610fcd565b156109925760405162461bcd60e51b815260206004820152601460248201527354617267657420696e2071756172616e74696e6560601b6044820152606401610555565b6001600160a01b038116600090815260076020526040902054156109f85760405162461bcd60e51b815260206004820152601f60248201527f54617267657420616c726561647920696e666563746564206f722064656164006044820152606401610555565b6000610a0382610be4565b11610a495760405162461bcd60e51b81526020600482015260166024820152752a30b933b2ba1034b99031b7bb34b2103232b734b2b960511b6044820152606401610555565b6001600160a01b0381166000908152600760205260408120429055610a6f601e836112b9565b15610aa55733600090815260076020526040812055610a914262093a8061194e565b336000908152600860205260409020555060015b604051811515906001600160a01b0384169033907f3245a16b9703c4d19cd739a7a470c0ecc091849e34ab750ca41f87e78393cdbf90600090a460405133906001600160a01b038416907fe7afd546915231b4e5d47cb28267b206fad93937d73ff3c01300660c52a86b5b90600090a35050565b6001600160a01b038116600090815260076020526040812054158015610b455750610b4382610fcd565b155b8015610b575750610b558261129c565b155b80610b7a57506001600160a01b03821660009081526006602052604090205460ff165b15610b8757506000919050565b610b908261126d565b15610b9d57506001919050565b610ba682610fcd565b15610bb357506002919050565b610bbc8261129c565b15610bc957506003919050565b610bd282611324565b15610bdf57506004919050565b919050565b6001600160a01b031660009081526020819052604090205490565b610c07611213565b610c116000611353565b565b610c1b611213565b6001600160a01b03166000908152600660205260409020805460ff19169055565b60606004805461046c906118a9565b60003381610c598286610e00565b905083811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610555565b6106218286868403610ea9565b6000336104fd818585611064565b60008060008060008060008060008060005b8b51811015610da6576000610d138d8381518110610d0657610d06611961565b6020026020010151610b19565b905080600003610d2f5786610d2781611977565b975050610d93565b80600103610d495785610d4181611977565b965050610d93565b80600203610d635784610d5b81611977565b955050610d93565b80600303610d7d5783610d7581611977565b945050610d93565b80600403610d935782610d8f81611977565b9350505b5080610d9e81611977565b915050610ce6565b50939a9299509097509550909350915050565b610dc1611213565b600a805460ff1916911515919091179055565b610ddc611213565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e33611213565b6001600160a01b038116610e985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b610ea181611353565b50565b505050565b6001600160a01b038316610f0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b038216610f6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0316600090815260096020526040902054421090565b6000610ff68484610e00565b9050600019811461105e57818110156110515760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610555565b61105e8484848403610ea9565b50505050565b6001600160a01b0383166110c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610555565b6001600160a01b03821661112a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b6111358383836113a5565b6001600160a01b038316600090815260208190526040902054818110156111ad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610555565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361105e565b6005546001600160a01b03163314610c115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b6001600160a01b0381166000908152600760205260408120544290611295906202a30061194e565b1192915050565b6001600160a01b0316600090815260086020526040902054421090565b600080606583426112c986610be4565b60405160609390931b6bffffffffffffffffffffffff19166020840152603483019190915260548201526074016040516020818303038152906040528051906020012060001c6113199190611990565b909310159392505050565b6001600160a01b038116600090815260076020526040812054429061134c906202a30061194e565b1092915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03848116610100909204161480156113e057506001600160a01b03821660009081526006602052604090205460ff16155b1561145357600c546113f183610be4565b6113fb908361194e565b11156114535760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206275792074686174206d756368207269676874206e6f6044820152607760f81b6064820152608401610555565b600a5460ff1615610ea4576001600160a01b038316600090815260076020526040902054156114cb5761148583611324565b156114cb5760405162461bcd60e51b8152602060048201526016602482015275165bdd4819dbdd0818dbdd9a5908185b9908191a595960521b6044820152606401610555565b600a546001600160a01b038481166101009092041614806114fe5750600a546001600160a01b0383811661010090920416145b8061152157506001600160a01b03831660009081526006602052604090205460ff165b6115665760405162461bcd60e51b8152602060048201526016602482015275165bdd4818d85b89dd08195cd8d85c194818dbdd9a5960521b6044820152606401610555565b61156f83610fcd565b156115b45760405162461bcd60e51b8152602060048201526015602482015274596f752061726520696e2071756172616e74696e6560581b6044820152606401610555565b600a546001600160a01b03848116610100909204161480156115dc57506115da8261129c565b155b801561160157506001600160a01b03821660009081526006602052604090205460ff16155b15610ea457611611600a836112b9565b801561162357506116218261126d565b155b15610ea4576001600160a01b0380831660008181526007602052604080822042905551928616927fe7afd546915231b4e5d47cb28267b206fad93937d73ff3c01300660c52a86b5b9190a3505050565b600060208083528351808285015260005b818110156116a057858101830151858201604001528201611684565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bdf57600080fd5b600080604083850312156116eb57600080fd5b6116f4836116c1565b946020939093013593505050565b60008060006060848603121561171757600080fd5b611720846116c1565b925061172e602085016116c1565b9150604084013590509250925092565b60006020828403121561175057600080fd5b611759826116c1565b9392505050565b60006020828403121561177257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156117a257600080fd5b823567ffffffffffffffff808211156117ba57600080fd5b818501915085601f8301126117ce57600080fd5b8135818111156117e0576117e0611779565b8060051b604051601f19603f8301168101818110858211171561180557611805611779565b60405291825284820192508381018501918883111561182357600080fd5b938501935b8285101561184857611839856116c1565b84529385019392850192611828565b98975050505050505050565b60006020828403121561186657600080fd5b8135801515811461175957600080fd5b6000806040838503121561188957600080fd5b611892836116c1565b91506118a0602084016116c1565b90509250929050565b600181811c908216806118bd57607f821691505b6020821081036118dd57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260159082015274416c726561647920696e2071756172616e74696e6560581b604082015260600190565b6020808252600c908201526b21b7bb34b2103232b734b2b960a11b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561050357610503611938565b634e487b7160e01b600052603260045260246000fd5b60006001820161198957611989611938565b5060010190565b6000826119ad57634e487b7160e01b600052601260045260246000fd5b50069056fea2646970667358221220128a1a679c5055f34168ee81aac8ff81ad31c8b0de90be38d058b15782ac80c364736f6c63430008110033
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.