ERC-20
Overview
Max Total Supply
5,500,000 POOLX
Holders
7
Total Transfers
-
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
POOLX
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-22 */ /** *Submitted for verification at BscScan.com on 2023-03-19 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @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; } } 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); } 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); } /** * @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 {} } /** * @title Minter * @dev managing addresses assigned to a minter role. */ contract MinterRole { mapping(address => bool) Minter; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); modifier onlyMinter() { require( Minter[msg.sender], "MinterRole: caller does not have the Minter role" ); _; } function addMinter(address account) external onlyMinter { require(!Minter[account], "MinterRole: account already has role"); require( account != address(0), "MinterRole: account is the zero address" ); Minter[account] = true; emit MinterAdded(account); } function renounceMinter() external onlyMinter { Minter[msg.sender] = false; emit MinterRemoved(msg.sender); } function isMinter(address account) external view returns (bool) { return Minter[account]; } } abstract contract ERC20Mintable is Context, MinterRole, ERC20 { constructor() { Minter[_msgSender()] = true; } function mint(address to, uint256 amount) external virtual onlyMinter { _mint(to, amount); } } abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } } contract POOLX is ERC20Mintable, ERC20Burnable, ERC20Capped { constructor() ERC20("Poolz Finance", "POOLX") ERC20Capped(5500000 * 10 ** 18) {} function _mint( address account, uint256 amount ) internal virtual override(ERC20Capped, ERC20) { super._mint(account, amount); } }
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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":[{"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":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceMinter","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"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506a048cab98f1671af58000006040518060400160405280600d81526020016c506f6f6c7a2046696e616e636560981b815250604051806040016040528060058152602001640a09e9e98b60db1b8152508160049081620000739190620001c6565b506005620000828282620001c6565b50505060016000806200009a6200011d60201b60201c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580620001145760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b60805262000292565b3390565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014c57607f821691505b6020821081036200016d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c157600081815260208120601f850160051c810160208610156200019c5750805b601f850160051c820191505b81811015620001bd57828155600101620001a8565b5050505b505050565b81516001600160401b03811115620001e257620001e262000121565b620001fa81620001f3845462000137565b8462000173565b602080601f831160018114620002325760008415620002195750858301515b600019600386901b1c1916600185901b178555620001bd565b600085815260208120601f198616915b82811015620002635788860151825594840194600190910190840162000242565b5085821015620002825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051610e7e620002b5600039600081816101920152610b180152610e7e6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806398650275116100715780639865027514610248578063a457c2d714610250578063a9059cbb14610263578063aa271e1a14610276578063dd62ed3e146102a257600080fd5b806370a08231146101f157806379cc67901461021a57806395d89b411461022d578063983b2d561461023557600080fd5b8063313ce567116100e9578063313ce56714610181578063355274ea1461019057806339509351146101b657806340c10f19146101c957806342966c68146101de57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102b5565b6040516101309190610c5f565b60405180910390f35b61014c610147366004610cc9565b610347565b6040519015158152602001610130565b6003545b604051908152602001610130565b61014c61017c366004610cf3565b610361565b60405160128152602001610130565b7f0000000000000000000000000000000000000000000000000000000000000000610160565b61014c6101c4366004610cc9565b610385565b6101dc6101d7366004610cc9565b6103a7565b005b6101dc6101ec366004610d2f565b6103ed565b6101606101ff366004610d48565b6001600160a01b031660009081526001602052604090205490565b6101dc610228366004610cc9565b6103fa565b61012361040f565b6101dc610243366004610d48565b61041e565b6101dc610574565b61014c61025e366004610cc9565b6105e2565b61014c610271366004610cc9565b61065d565b61014c610284366004610d48565b6001600160a01b031660009081526020819052604090205460ff1690565b6101606102b0366004610d6a565b61066b565b6060600480546102c490610d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546102f090610d9d565b801561033d5780601f106103125761010080835404028352916020019161033d565b820191906000526020600020905b81548152906001019060200180831161032057829003601f168201915b5050505050905090565b600033610355818585610696565b60019150505b92915050565b60003361036f8582856107bb565b61037a858585610835565b506001949350505050565b600033610355818585610398838361066b565b6103a29190610dd7565b610696565b3360009081526020819052604090205460ff166103df5760405162461bcd60e51b81526004016103d690610df8565b60405180910390fd5b6103e982826109e0565b5050565b6103f733826109ea565b50565b6104058233836107bb565b6103e982826109ea565b6060600580546102c490610d9d565b3360009081526020819052604090205460ff1661044d5760405162461bcd60e51b81526004016103d690610df8565b6001600160a01b03811660009081526020819052604090205460ff16156104c25760405162461bcd60e51b8152602060048201526024808201527f4d696e746572526f6c653a206163636f756e7420616c72656164792068617320604482015263726f6c6560e01b60648201526084016103d6565b6001600160a01b0381166105285760405162461bcd60e51b815260206004820152602760248201527f4d696e746572526f6c653a206163636f756e7420697320746865207a65726f206044820152666164647265737360c81b60648201526084016103d6565b6001600160a01b038116600081815260208190526040808220805460ff19166001179055517f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f69190a250565b3360009081526020819052604090205460ff166105a35760405162461bcd60e51b81526004016103d690610df8565b33600081815260208190526040808220805460ff19169055517fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666929190a2565b600033816105f0828661066b565b9050838110156106505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d6565b61037a8286868403610696565b600033610355818585610835565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b0383166106f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d6565b6001600160a01b0382166107595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107c7848461066b565b9050600019811461082f57818110156108225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103d6565b61082f8484848403610696565b50505050565b6001600160a01b0383166108995760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d6565b6001600160a01b0382166108fb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d6565b6001600160a01b038316600090815260016020526040902054818110156109735760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d6565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d39086815260200190565b60405180910390a361082f565b6103e98282610b16565b6001600160a01b038216610a4a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d6565b6001600160a01b03821660009081526001602052604090205481811015610abe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d6565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107ae565b7f000000000000000000000000000000000000000000000000000000000000000081610b4160035490565b610b4b9190610dd7565b1115610b995760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016103d6565b6103e982826001600160a01b038216610bf45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103d6565b8060036000828254610c069190610dd7565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b81811015610c8c57858101830151858201604001528201610c70565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cc457600080fd5b919050565b60008060408385031215610cdc57600080fd5b610ce583610cad565b946020939093013593505050565b600080600060608486031215610d0857600080fd5b610d1184610cad565b9250610d1f60208501610cad565b9150604084013590509250925092565b600060208284031215610d4157600080fd5b5035919050565b600060208284031215610d5a57600080fd5b610d6382610cad565b9392505050565b60008060408385031215610d7d57600080fd5b610d8683610cad565b9150610d9460208401610cad565b90509250929050565b600181811c90821680610db157607f821691505b602082108103610dd157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561035b57634e487b7160e01b600052601160045260246000fd5b60208082526030908201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560408201526f20746865204d696e74657220726f6c6560801b60608201526080019056fea2646970667358221220be73989cec120ee0a0a6e4eef5fb973f60865b993c74cce18ef7da990c37121d64736f6c63430008130033
Deployed ByteCode Sourcemap
19899:347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5927:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8278:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8278:201:0;1004:187:1;7047:108:0;7135:12;;7047:108;;;1342:25:1;;;1330:2;1315:18;7047:108:0;1196:177:1;9059:295:0;;;;;;:::i;:::-;;:::i;6889:93::-;;;6972:2;1853:36:1;;1841:2;1826:18;6889:93:0;1711:184:1;19544:83:0;19615:4;19544:83;;9763:238;;;;;;:::i;:::-;;:::i;18271:106::-;;;;;;:::i;:::-;;:::i;:::-;;18549:91;;;;;;:::i;:::-;;:::i;7218:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7319:18:0;7292:7;7319:18;;;:9;:18;;;;;;;7218:127;18959:164;;;;;;:::i;:::-;;:::i;6146:104::-;;;:::i;17544:330::-;;;;;;:::i;:::-;;:::i;17882:132::-;;;:::i;10504:436::-;;;;;;:::i;:::-;;:::i;7551:193::-;;;;;;:::i;:::-;;:::i;18022:105::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18104:15:0;18080:4;18104:15;;;;;;;;;;;;;;18022:105;7807:151;;;;;;:::i;:::-;;:::i;5927:100::-;5981:13;6014:5;6007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5927:100;:::o;8278:201::-;8361:4;750:10;8417:32;750:10;8433:7;8442:6;8417:8;:32::i;:::-;8467:4;8460:11;;;8278:201;;;;;:::o;9059:295::-;9190:4;750:10;9248:38;9264:4;750:10;9279:6;9248:15;:38::i;:::-;9297:27;9307:4;9313:2;9317:6;9297:9;:27::i;:::-;-1:-1:-1;9342:4:0;;9059:295;-1:-1:-1;;;;9059:295:0:o;9763:238::-;9851:4;750:10;9907:64;750:10;9923:7;9960:10;9932:25;750:10;9923:7;9932:9;:25::i;:::-;:38;;;;:::i;:::-;9907:8;:64::i;18271:106::-;17429:10;17422:6;:18;;;;;;;;;;;;;17400:116;;;;-1:-1:-1;;;17400:116:0;;;;;;;:::i;:::-;;;;;;;;;18352:17:::1;18358:2;18362:6;18352:5;:17::i;:::-;18271:106:::0;;:::o;18549:91::-;18605:27;750:10;18625:6;18605:5;:27::i;:::-;18549:91;:::o;18959:164::-;19036:46;19052:7;750:10;19075:6;19036:15;:46::i;:::-;19093:22;19099:7;19108:6;19093:5;:22::i;6146:104::-;6202:13;6235:7;6228:14;;;;;:::i;17544:330::-;17429:10;17422:6;:18;;;;;;;;;;;;;17400:116;;;;-1:-1:-1;;;17400:116:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17620:15:0;::::1;:6;:15:::0;;;::::1;::::0;;;;;;;::::1;;17619:16;17611:65;;;::::0;-1:-1:-1;;;17611:65:0;;3772:2:1;17611:65:0::1;::::0;::::1;3754:21:1::0;3811:2;3791:18;;;3784:30;3850:34;3830:18;;;3823:62;-1:-1:-1;;;3901:18:1;;;3894:34;3945:19;;17611:65:0::1;3570:400:1::0;17611:65:0::1;-1:-1:-1::0;;;;;17709:21:0;::::1;17687:110;;;::::0;-1:-1:-1;;;17687:110:0;;4177:2:1;17687:110:0::1;::::0;::::1;4159:21:1::0;4216:2;4196:18;;;4189:30;4255:34;4235:18;;;4228:62;-1:-1:-1;;;4306:18:1;;;4299:37;4353:19;;17687:110:0::1;3975:403:1::0;17687:110:0::1;-1:-1:-1::0;;;;;17808:15:0;::::1;:6;:15:::0;;;::::1;::::0;;;;;;;:22;;-1:-1:-1;;17808:22:0::1;17826:4;17808:22;::::0;;17846:20;::::1;::::0;17808:6;17846:20:::1;17544:330:::0;:::o;17882:132::-;17429:10;17422:6;:18;;;;;;;;;;;;;17400:116;;;;-1:-1:-1;;;17400:116:0;;;;;;;:::i;:::-;17946:10:::1;17960:5;17939:18:::0;;;::::1;::::0;;;;;;;:26;;-1:-1:-1;;17939:26:0::1;::::0;;17981:25;::::1;::::0;17960:5;17981:25:::1;17882:132::o:0;10504:436::-;10597:4;750:10;10597:4;10680:25;750:10;10697:7;10680:9;:25::i;:::-;10653:52;;10744:15;10724:16;:35;;10716:85;;;;-1:-1:-1;;;10716:85:0;;4585:2:1;10716:85:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;-1:-1:-1;;;4714:18:1;;;4707:35;4759:19;;10716:85:0;4383:401:1;10716:85:0;10837:60;10846:5;10853:7;10881:15;10862:16;:34;10837:8;:60::i;7551:193::-;7630:4;750:10;7686:28;750:10;7703:2;7707:6;7686:9;:28::i;7807:151::-;-1:-1:-1;;;;;7923:18:0;;;7896:7;7923:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7807:151::o;14531:380::-;-1:-1:-1;;;;;14667:19:0;;14659:68;;;;-1:-1:-1;;;14659:68:0;;4991:2:1;14659:68:0;;;4973:21:1;5030:2;5010:18;;;5003:30;5069:34;5049:18;;;5042:62;-1:-1:-1;;;5120:18:1;;;5113:34;5164:19;;14659:68:0;4789:400:1;14659:68:0;-1:-1:-1;;;;;14746:21:0;;14738:68;;;;-1:-1:-1;;;14738:68:0;;5396:2:1;14738:68:0;;;5378:21:1;5435:2;5415:18;;;5408:30;5474:34;5454:18;;;5447:62;-1:-1:-1;;;5525:18:1;;;5518:32;5567:19;;14738:68:0;5194:398:1;14738:68:0;-1:-1:-1;;;;;14819:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14871:32;;1342:25:1;;;14871:32:0;;1315:18:1;14871:32:0;;;;;;;;14531:380;;;:::o;15202:453::-;15337:24;15364:25;15374:5;15381:7;15364:9;:25::i;:::-;15337:52;;-1:-1:-1;;15404:16:0;:37;15400:248;;15486:6;15466:16;:26;;15458:68;;;;-1:-1:-1;;;15458:68:0;;5799:2:1;15458:68:0;;;5781:21:1;5838:2;5818:18;;;5811:30;5877:31;5857:18;;;5850:59;5926:18;;15458:68:0;5597:353:1;15458:68:0;15570:51;15579:5;15586:7;15614:6;15595:16;:25;15570:8;:51::i;:::-;15326:329;15202:453;;;:::o;11410:840::-;-1:-1:-1;;;;;11541:18:0;;11533:68;;;;-1:-1:-1;;;11533:68:0;;6157:2:1;11533:68:0;;;6139:21:1;6196:2;6176:18;;;6169:30;6235:34;6215:18;;;6208:62;-1:-1:-1;;;6286:18:1;;;6279:35;6331:19;;11533:68:0;5955:401:1;11533:68:0;-1:-1:-1;;;;;11620:16:0;;11612:64;;;;-1:-1:-1;;;11612:64:0;;6563:2:1;11612:64:0;;;6545:21:1;6602:2;6582:18;;;6575:30;6641:34;6621:18;;;6614:62;-1:-1:-1;;;6692:18:1;;;6685:33;6735:19;;11612:64:0;6361:399:1;11612:64:0;-1:-1:-1;;;;;11762:15:0;;11740:19;11762:15;;;:9;:15;;;;;;11796:21;;;;11788:72;;;;-1:-1:-1;;;11788:72:0;;6967:2:1;11788:72:0;;;6949:21:1;7006:2;6986:18;;;6979:30;7045:34;7025:18;;;7018:62;-1:-1:-1;;;7096:18:1;;;7089:36;7142:19;;11788:72:0;6765:402:1;11788:72:0;-1:-1:-1;;;;;11896:15:0;;;;;;;:9;:15;;;;;;11914:20;;;11896:38;;12114:13;;;;;;;;;;:23;;;;;;12166:26;;;;;;11928:6;1342:25:1;;1330:2;1315:18;;1196:177;12166:26:0;;;;;;;;12205:37;13418:675;20077:166;20207:28;20219:7;20228:6;20207:11;:28::i;13418:675::-;-1:-1:-1;;;;;13502:21:0;;13494:67;;;;-1:-1:-1;;;13494:67:0;;7374:2:1;13494:67:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:31;7544:19;;13494:67:0;7172:397:1;13494:67:0;-1:-1:-1;;;;;13661:18:0;;13636:22;13661:18;;;:9;:18;;;;;;13698:24;;;;13690:71;;;;-1:-1:-1;;;13690:71:0;;7776:2:1;13690:71:0;;;7758:21:1;7815:2;7795:18;;;7788:30;7854:34;7834:18;;;7827:62;-1:-1:-1;;;7905:18:1;;;7898:32;7947:19;;13690:71:0;7574:398:1;13690:71:0;-1:-1:-1;;;;;13797:18:0;;;;;;:9;:18;;;;;;;;13818:23;;;13797:44;;13936:12;:22;;;;;;;13987:37;1342:25:1;;;13797:18:0;;;13987:37;;1315:18:1;13987:37:0;1196:177:1;19685:207:0;19615:4;19800:6;19778:19;7135:12;;;7047:108;19778:19;:28;;;;:::i;:::-;:37;;19770:75;;;;-1:-1:-1;;;19770:75:0;;8179:2:1;19770:75:0;;;8161:21:1;8218:2;8198:18;;;8191:30;8257:27;8237:18;;;8230:55;8302:18;;19770:75:0;7977:349:1;19770:75:0;19856:28;19868:7;19877:6;-1:-1:-1;;;;;12621:21:0;;12613:65;;;;-1:-1:-1;;;12613:65:0;;8533:2:1;12613:65:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:33;8591:18;;;8584:61;8662:18;;12613:65:0;8331:355:1;12613:65:0;12769:6;12753:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12924:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;12979:37;1342:25:1;;;12979:37:0;;1315:18:1;12979:37:0;;;;;;;18271:106;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2276:260::-;2344:6;2352;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;:::-;2434:39;;2492:38;2526:2;2515:9;2511:18;2492:38;:::i;:::-;2482:48;;2276:260;;;;;:::o;2541:380::-;2620:1;2616:12;;;;2663;;;2684:61;;2738:4;2730:6;2726:17;2716:27;;2684:61;2791:2;2783:6;2780:14;2760:18;2757:38;2754:161;;2837:10;2832:3;2828:20;2825:1;2818:31;2872:4;2869:1;2862:15;2900:4;2897:1;2890:15;2754:161;;2541:380;;;:::o;2926:222::-;2991:9;;;3012:10;;;3009:133;;;3064:10;3059:3;3055:20;3052:1;3045:31;3099:4;3096:1;3089:15;3127:4;3124:1;3117:15;3153:412;3355:2;3337:21;;;3394:2;3374:18;;;3367:30;3433:34;3428:2;3413:18;;3406:62;-1:-1:-1;;;3499:2:1;3484:18;;3477:46;3555:3;3540:19;;3153:412::o
Swarm Source
ipfs://be73989cec120ee0a0a6e4eef5fb973f60865b993c74cce18ef7da990c37121d
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.