ERC-20
Overview
Max Total Supply
69,696,969,696 PEVI
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,018,166,687.245394993169842115 PEVIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepeVille
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-04 */ /* Twitter: https://twitter.com/Pepeville_ERC Website: https://www.pepeville.com Litepaper: https://pepeville.gitbook.io TG: https://t.me/pepeville */ // SPDX-License-Identifier: MIT 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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 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); } /** * @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.zeppelin.solutions/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; 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } contract PepeVille is Ownable, ERC20 { //Anti-Whale bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) isBlacklisted; //Anti-MEV (Cooldown) mapping(address => uint256) private _holderLastTransferBlock; bool public transferDelayEnabled = true; constructor(uint256 _totalSupply) ERC20("Pepeville", "PEVI") { _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisted) external onlyOwner { isBlacklisted[_address] = _isBlacklisted; } function isHuman(address _address) private view returns(bool) { uint256 size; assembly { size := extcodesize(_address) } return(size >0); } function ensureIsHuman(address from, address to) private view returns (address) { bool fromIsHuman = isHuman(from); bool toIsHuman = isHuman(to); // Ensure that at least one of the parties is not a contract address require(fromIsHuman || toIsHuman, "One of the addresses is a contract"); if (fromIsHuman && toIsHuman) { return from; } else return to; } function checkLastTransfer(address wallet) private view { bool canTrade = _holderLastTransferBlock[wallet] == 0 || (_holderLastTransferBlock[wallet] + 1 < block.number + 1 ); require(canTrade, "Please try again later"); } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (from != owner() && to != owner()) { require(!isBlacklisted[from] && !isBlacklisted[to], "Blacklisted"); } if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading not open yet"); return; } if (transferDelayEnabled) { address human = ensureIsHuman(from, to); checkLastTransfer(human); _holderLastTransferBlock[human] = block.number; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600c805460ff191660011790553480156200001e57600080fd5b506040516200173f3803806200173f8339810160408190526200004191620005a7565b604051806040016040528060098152602001685065706576696c6c6560b81b815250604051806040016040528060048152602001635045564960e01b8152506200009a62000094620000d360201b60201c565b620000d7565b6004620000a8838262000665565b506005620000b7828262000665565b505050620000cc33826200012760201b60201c565b5062000753565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000191600083836200021f565b8060036000828254620001a5919062000731565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d490849062000731565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b6000546001600160a01b038481169116148015906200024c57506000546001600160a01b03838116911614155b15620002d1576001600160a01b0383166000908152600a602052604090205460ff161580156200029557506001600160a01b0382166000908152600a602052604090205460ff16155b620002d15760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016200017a565b6009546001600160a01b03166200035f576000546001600160a01b03848116911614806200030c57506000546001600160a01b038381169116145b6200035a5760405162461bcd60e51b815260206004820152601460248201527f74726164696e67206e6f74206f70656e2079657400000000000000000000000060448201526064016200017a565b505050565b600c5460ff1615620003a15760006200037984846200046b565b9050620003868162000500565b6001600160a01b03166000908152600b602052604090204390555b60065460ff168015620003c157506009546001600160a01b038481169116145b156200035a5760075481620003eb846001600160a01b031660009081526001602052604090205490565b620003f7919062000731565b111580156200043457506008548162000425846001600160a01b031660009081526001602052604090205490565b62000431919062000731565b10155b6200035a5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200017a565b6000823b1515823b151581806200047f5750805b620004d85760405162461bcd60e51b815260206004820152602260248201527f4f6e65206f662074686520616464726573736573206973206120636f6e74726160448201526118dd60f21b60648201526084016200017a565b818015620004e35750805b15620004f4578492505050620004fa565b83925050505b92915050565b6001600160a01b0381166000908152600b602052604081205415806200055657506200052e43600162000731565b6001600160a01b0383166000908152600b60205260409020546200055490600162000731565b105b9050806200021b5760405162461bcd60e51b815260206004820152601660248201527f506c656173652074727920616761696e206c617465720000000000000000000060448201526064016200017a565b600060208284031215620005ba57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ec57607f821691505b6020821081036200060d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035a57600081815260208120601f850160051c810160208610156200063c5750805b601f850160051c820191505b818110156200065d5782815560010162000648565b505050505050565b81516001600160401b03811115620006815762000681620005c1565b6200069981620006928454620005d7565b8462000613565b602080601f831160018114620006d15760008415620006b85750858301515b600019600386901b1c1916600185901b1785556200065d565b600085815260208120601f198616915b828110156200070257888601518255948401946001909101908401620006e1565b5085821015620007215787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004fa57634e487b7160e01b600052601160045260246000fd5b610fdc80620007636000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610278578063a457c2d714610280578063a9059cbb14610293578063c876d0b9146102a6578063dd62ed3e146102b3578063f2fde38b146102ec57600080fd5b806370a0823114610220578063715018a614610249578063860a32ec1461025157806389f9a1d31461025e5780638da5cb5b1461026757600080fd5b8063313ce567116100ff578063313ce567146101ab57806339509351146101ba5780633aa633aa146101cd578063404e5129146101e257806349bd5a5e146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ff565b6040516101519190610d75565b60405180910390f35b61016d610168366004610ddf565b610391565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160085481565b61016d6101a6366004610e09565b6103a8565b60405160128152602001610151565b61016d6101c8366004610ddf565b610457565b6101e06101db366004610e55565b610493565b005b6101e06101f0366004610e97565b6104f8565b600954610208906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161022e366004610eca565b6001600160a01b031660009081526001602052604090205490565b6101e061054d565b60065461016d9060ff1681565b61018160075481565b6000546001600160a01b0316610208565b610144610583565b61016d61028e366004610ddf565b610592565b61016d6102a1366004610ddf565b61062b565b600c5461016d9060ff1681565b6101816102c1366004610eec565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e06102fa366004610eca565b610638565b60606004805461030e90610f16565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610f16565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b600061039e3384846106d3565b5060015b92915050565b60006103b58484846107f7565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561043f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044c85338584036106d3565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161039e91859061048e908690610f50565b6106d3565b6000546001600160a01b031633146104bd5760405162461bcd60e51b815260040161043690610f71565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146105225760405162461bcd60e51b815260040161043690610f71565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105775760405162461bcd60e51b815260040161043690610f71565b61058160006109d1565b565b60606005805461030e90610f16565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610436565b61062133858584036106d3565b5060019392505050565b600061039e3384846107f7565b6000546001600160a01b031633146106625760405162461bcd60e51b815260040161043690610f71565b6001600160a01b0381166106c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6106d0816109d1565b50565b6001600160a01b0383166107355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610436565b6001600160a01b0382166107965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610436565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661085b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610436565b6001600160a01b0382166108bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610436565b6108c8838383610a21565b6001600160a01b038316600090815260016020526040902054818110156109405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610436565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610977908490610f50565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c391815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03848116911614801590610a4d57506000546001600160a01b03838116911614155b15610ace576001600160a01b0383166000908152600a602052604090205460ff16158015610a9457506001600160a01b0382166000908152600a602052604090205460ff16155b610ace5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610436565b6009546001600160a01b0316610b4f576000546001600160a01b0384811691161480610b0757506000546001600160a01b038381169116145b610b4a5760405162461bcd60e51b81526020600482015260146024820152731d1c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610436565b505050565b600c5460ff1615610b8c576000610b668484610c4b565b9050610b7181610cd8565b6001600160a01b03166000908152600b602052604090204390555b60065460ff168015610bab57506009546001600160a01b038481169116145b15610b4a5760075481610bd3846001600160a01b031660009081526001602052604090205490565b610bdd9190610f50565b11158015610c16575060085481610c09846001600160a01b031660009081526001602052604090205490565b610c139190610f50565b10155b610b4a5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610436565b6000823b1515823b15158180610c5e5750805b610cb55760405162461bcd60e51b815260206004820152602260248201527f4f6e65206f662074686520616464726573736573206973206120636f6e74726160448201526118dd60f21b6064820152608401610436565b818015610cbf5750805b15610cce5784925050506103a2565b83925050506103a2565b6001600160a01b0381166000908152600b60205260408120541580610d295750610d03436001610f50565b6001600160a01b0383166000908152600b6020526040902054610d27906001610f50565b105b905080610d715760405162461bcd60e51b8152602060048201526016602482015275283632b0b9b2903a393c9030b3b0b4b7103630ba32b960511b6044820152606401610436565b5050565b600060208083528351808285015260005b81811015610da257858101830151858201604001528201610d86565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dda57600080fd5b919050565b60008060408385031215610df257600080fd5b610dfb83610dc3565b946020939093013593505050565b600080600060608486031215610e1e57600080fd5b610e2784610dc3565b9250610e3560208501610dc3565b9150604084013590509250925092565b80358015158114610dda57600080fd5b60008060008060808587031215610e6b57600080fd5b610e7485610e45565b9350610e8260208601610dc3565b93969395505050506040820135916060013590565b60008060408385031215610eaa57600080fd5b610eb383610dc3565b9150610ec160208401610e45565b90509250929050565b600060208284031215610edc57600080fd5b610ee582610dc3565b9392505050565b60008060408385031215610eff57600080fd5b610f0883610dc3565b9150610ec160208401610dc3565b600181811c90821680610f2a57607f821691505b602082108103610f4a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103a257634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202fd4c51c1f9b48e557574cc25a579e174d44c1fa4e25bca5b2c2a08882233c8364736f6c634300081300330000000000000000000000000000000000000000e133fb6a00c330df03800000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610278578063a457c2d714610280578063a9059cbb14610293578063c876d0b9146102a6578063dd62ed3e146102b3578063f2fde38b146102ec57600080fd5b806370a0823114610220578063715018a614610249578063860a32ec1461025157806389f9a1d31461025e5780638da5cb5b1461026757600080fd5b8063313ce567116100ff578063313ce567146101ab57806339509351146101ba5780633aa633aa146101cd578063404e5129146101e257806349bd5a5e146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ff565b6040516101519190610d75565b60405180910390f35b61016d610168366004610ddf565b610391565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160085481565b61016d6101a6366004610e09565b6103a8565b60405160128152602001610151565b61016d6101c8366004610ddf565b610457565b6101e06101db366004610e55565b610493565b005b6101e06101f0366004610e97565b6104f8565b600954610208906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161022e366004610eca565b6001600160a01b031660009081526001602052604090205490565b6101e061054d565b60065461016d9060ff1681565b61018160075481565b6000546001600160a01b0316610208565b610144610583565b61016d61028e366004610ddf565b610592565b61016d6102a1366004610ddf565b61062b565b600c5461016d9060ff1681565b6101816102c1366004610eec565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e06102fa366004610eca565b610638565b60606004805461030e90610f16565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610f16565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b600061039e3384846106d3565b5060015b92915050565b60006103b58484846107f7565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561043f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044c85338584036106d3565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161039e91859061048e908690610f50565b6106d3565b6000546001600160a01b031633146104bd5760405162461bcd60e51b815260040161043690610f71565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146105225760405162461bcd60e51b815260040161043690610f71565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105775760405162461bcd60e51b815260040161043690610f71565b61058160006109d1565b565b60606005805461030e90610f16565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610436565b61062133858584036106d3565b5060019392505050565b600061039e3384846107f7565b6000546001600160a01b031633146106625760405162461bcd60e51b815260040161043690610f71565b6001600160a01b0381166106c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6106d0816109d1565b50565b6001600160a01b0383166107355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610436565b6001600160a01b0382166107965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610436565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661085b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610436565b6001600160a01b0382166108bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610436565b6108c8838383610a21565b6001600160a01b038316600090815260016020526040902054818110156109405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610436565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610977908490610f50565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c391815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03848116911614801590610a4d57506000546001600160a01b03838116911614155b15610ace576001600160a01b0383166000908152600a602052604090205460ff16158015610a9457506001600160a01b0382166000908152600a602052604090205460ff16155b610ace5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610436565b6009546001600160a01b0316610b4f576000546001600160a01b0384811691161480610b0757506000546001600160a01b038381169116145b610b4a5760405162461bcd60e51b81526020600482015260146024820152731d1c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610436565b505050565b600c5460ff1615610b8c576000610b668484610c4b565b9050610b7181610cd8565b6001600160a01b03166000908152600b602052604090204390555b60065460ff168015610bab57506009546001600160a01b038481169116145b15610b4a5760075481610bd3846001600160a01b031660009081526001602052604090205490565b610bdd9190610f50565b11158015610c16575060085481610c09846001600160a01b031660009081526001602052604090205490565b610c139190610f50565b10155b610b4a5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610436565b6000823b1515823b15158180610c5e5750805b610cb55760405162461bcd60e51b815260206004820152602260248201527f4f6e65206f662074686520616464726573736573206973206120636f6e74726160448201526118dd60f21b6064820152608401610436565b818015610cbf5750805b15610cce5784925050506103a2565b83925050506103a2565b6001600160a01b0381166000908152600b60205260408120541580610d295750610d03436001610f50565b6001600160a01b0383166000908152600b6020526040902054610d27906001610f50565b105b905080610d715760405162461bcd60e51b8152602060048201526016602482015275283632b0b9b2903a393c9030b3b0b4b7103630ba32b960511b6044820152606401610436565b5050565b600060208083528351808285015260005b81811015610da257858101830151858201604001528201610d86565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dda57600080fd5b919050565b60008060408385031215610df257600080fd5b610dfb83610dc3565b946020939093013593505050565b600080600060608486031215610e1e57600080fd5b610e2784610dc3565b9250610e3560208501610dc3565b9150604084013590509250925092565b80358015158114610dda57600080fd5b60008060008060808587031215610e6b57600080fd5b610e7485610e45565b9350610e8260208601610dc3565b93969395505050506040820135916060013590565b60008060408385031215610eaa57600080fd5b610eb383610dc3565b9150610ec160208401610e45565b90509250929050565b600060208284031215610edc57600080fd5b610ee582610dc3565b9392505050565b60008060408385031215610eff57600080fd5b610f0883610dc3565b9150610ec160208401610dc3565b600181811c90821680610f2a57607f821691505b602082108103610f4a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103a257634e487b7160e01b600052601160045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202fd4c51c1f9b48e557574cc25a579e174d44c1fa4e25bca5b2c2a08882233c8364736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000e133fb6a00c330df03800000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69696969696000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000e133fb6a00c330df03800000
Deployed Bytecode Sourcemap
18280:2729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8319:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10486:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10486:169:0;1004:187:1;9439:108:0;9527:12;;9439:108;;;1342:25:1;;;1330:2;1315:18;9439:108:0;1196:177:1;18409:31:0;;;;;;11137:492;;;;;;:::i;:::-;;:::i;9281:93::-;;;9364:2;1853:36:1;;1841:2;1826:18;9281:93:0;1711:184:1;12038:215:0;;;;;;:::i;:::-;;:::i;19848:301::-;;;;;;:::i;:::-;;:::i;:::-;;18790:136;;;;;;:::i;:::-;;:::i;18447:28::-;;;;;-1:-1:-1;;;;;18447:28:0;;;;;;-1:-1:-1;;;;;2884:32:1;;;2866:51;;2854:2;2839:18;18447:28:0;2720:203:1;9610:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;9711:18:0;9684:7;9711:18;;;:9;:18;;;;;;;9610:127;2543:103;;;:::i;18345:19::-;;;;;;;;;18371:31;;;;;;1892:87;1938:7;1965:6;-1:-1:-1;;;;;1965:6:0;1892:87;;8538:104;;;:::i;12756:413::-;;;;;;:::i;:::-;;:::i;9950:175::-;;;;;;:::i;:::-;;:::i;18623:39::-;;;;;;;;;10188:151;;;;;;:::i;:::-;-1:-1:-1;;;;;10304:18:0;;;10277:7;10304:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10188:151;2801:201;;;;;;:::i;:::-;;:::i;8319:100::-;8373:13;8406:5;8399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8319:100;:::o;10486:169::-;10569:4;10586:39;839:10;10609:7;10618:6;10586:8;:39::i;:::-;-1:-1:-1;10643:4:0;10486:169;;;;;:::o;11137:492::-;11277:4;11294:36;11304:6;11312:9;11323:6;11294:9;:36::i;:::-;-1:-1:-1;;;;;11370:19:0;;11343:24;11370:19;;;:11;:19;;;;;;;;839:10;11370:33;;;;;;;;11422:26;;;;11414:79;;;;-1:-1:-1;;;11414:79:0;;3971:2:1;11414:79:0;;;3953:21:1;4010:2;3990:18;;;3983:30;4049:34;4029:18;;;4022:62;-1:-1:-1;;;4100:18:1;;;4093:38;4148:19;;11414:79:0;;;;;;;;;11529:57;11538:6;839:10;11579:6;11560:16;:25;11529:8;:57::i;:::-;-1:-1:-1;11617:4:0;;11137:492;-1:-1:-1;;;;11137:492:0:o;12038:215::-;839:10;12126:4;12175:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12175:34:0;;;;;;;;;;12126:4;;12143:80;;12166:7;;12175:47;;12212:10;;12175:47;:::i;:::-;12143:8;:80::i;19848:301::-;1938:7;1965:6;-1:-1:-1;;;;;1965:6:0;839:10;2112:23;2104:68;;;;-1:-1:-1;;;2104:68:0;;;;;;;:::i;:::-;19988:7:::1;:18:::0;;-1:-1:-1;;19988:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20017:13:::1;:30:::0;;-1:-1:-1;;;;;;20017:30:0::1;-1:-1:-1::0;;;;;20017:30:0;;;::::1;::::0;;;::::1;::::0;;;20058:16:::1;:36:::0;20105:16:::1;:36:::0;19848:301::o;18790:136::-;1938:7;1965:6;-1:-1:-1;;;;;1965:6:0;839:10;2112:23;2104:68;;;;-1:-1:-1;;;2104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18878:23:0;;;::::1;;::::0;;;:13:::1;:23;::::0;;;;:40;;-1:-1:-1;;18878:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18790:136::o;2543:103::-;1938:7;1965:6;-1:-1:-1;;;;;1965:6:0;839:10;2112:23;2104:68;;;;-1:-1:-1;;;2104:68:0;;;;;;;:::i;:::-;2608:30:::1;2635:1;2608:18;:30::i;:::-;2543:103::o:0;8538:104::-;8594:13;8627:7;8620:14;;;;;:::i;12756:413::-;839:10;12849:4;12893:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12893:34:0;;;;;;;;;;12946:35;;;;12938:85;;;;-1:-1:-1;;;12938:85:0;;4968:2:1;12938:85:0;;;4950:21:1;5007:2;4987:18;;;4980:30;5046:34;5026:18;;;5019:62;-1:-1:-1;;;5097:18:1;;;5090:35;5142:19;;12938:85:0;4766:401:1;12938:85:0;13059:67;839:10;13082:7;13110:15;13091:16;:34;13059:8;:67::i;:::-;-1:-1:-1;13157:4:0;;12756:413;-1:-1:-1;;;12756:413:0:o;9950:175::-;10036:4;10053:42;839:10;10077:9;10088:6;10053:9;:42::i;2801:201::-;1938:7;1965:6;-1:-1:-1;;;;;1965:6:0;839:10;2112:23;2104:68;;;;-1:-1:-1;;;2104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2890:22:0;::::1;2882:73;;;::::0;-1:-1:-1;;;2882:73:0;;5374:2:1;2882:73:0::1;::::0;::::1;5356:21:1::0;5413:2;5393:18;;;5386:30;5452:34;5432:18;;;5425:62;-1:-1:-1;;;5503:18:1;;;5496:36;5549:19;;2882:73:0::1;5172:402:1::0;2882:73:0::1;2966:28;2985:8;2966:18;:28::i;:::-;2801:201:::0;:::o;16440:380::-;-1:-1:-1;;;;;16576:19:0;;16568:68;;;;-1:-1:-1;;;16568:68:0;;5781:2:1;16568:68:0;;;5763:21:1;5820:2;5800:18;;;5793:30;5859:34;5839:18;;;5832:62;-1:-1:-1;;;5910:18:1;;;5903:34;5954:19;;16568:68:0;5579:400:1;16568:68:0;-1:-1:-1;;;;;16655:21:0;;16647:68;;;;-1:-1:-1;;;16647:68:0;;6186:2:1;16647:68:0;;;6168:21:1;6225:2;6205:18;;;6198:30;6264:34;6244:18;;;6237:62;-1:-1:-1;;;6315:18:1;;;6308:32;6357:19;;16647:68:0;5984:398:1;16647:68:0;-1:-1:-1;;;;;16728:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16780:32;;1342:25:1;;;16780:32:0;;1315:18:1;16780:32:0;;;;;;;16440:380;;;:::o;13659:733::-;-1:-1:-1;;;;;13799:20:0;;13791:70;;;;-1:-1:-1;;;13791:70:0;;6589:2:1;13791:70:0;;;6571:21:1;6628:2;6608:18;;;6601:30;6667:34;6647:18;;;6640:62;-1:-1:-1;;;6718:18:1;;;6711:35;6763:19;;13791:70:0;6387:401:1;13791:70:0;-1:-1:-1;;;;;13880:23:0;;13872:71;;;;-1:-1:-1;;;13872:71:0;;6995:2:1;13872:71:0;;;6977:21:1;7034:2;7014:18;;;7007:30;7073:34;7053:18;;;7046:62;-1:-1:-1;;;7124:18:1;;;7117:33;7167:19;;13872:71:0;6793:399:1;13872:71:0;13956:47;13977:6;13985:9;13996:6;13956:20;:47::i;:::-;-1:-1:-1;;;;;14040:17:0;;14016:21;14040:17;;;:9;:17;;;;;;14076:23;;;;14068:74;;;;-1:-1:-1;;;14068:74:0;;7399:2:1;14068:74:0;;;7381:21:1;7438:2;7418:18;;;7411:30;7477:34;7457:18;;;7450:62;-1:-1:-1;;;7528:18:1;;;7521:36;7574:19;;14068:74:0;7197:402:1;14068:74:0;-1:-1:-1;;;;;14178:17:0;;;;;;;:9;:17;;;;;;14198:22;;;14178:42;;14242:20;;;;;;;;:30;;14214:6;;14178:17;14242:30;;14214:6;;14242:30;:::i;:::-;;;;;;;;14307:9;-1:-1:-1;;;;;14290:35:0;14299:6;-1:-1:-1;;;;;14290:35:0;;14318:6;14290:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;14290:35:0;;;;;;;;13780:612;13659:733;;;:::o;3162:191::-;3236:16;3255:6;;-1:-1:-1;;;;;3272:17:0;;;-1:-1:-1;;;;;;3272:17:0;;;;;;3305:40;;3255:6;;;;;;;3305:40;;3236:16;3305:40;3225:128;3162:191;:::o;20157:849::-;1938:7;1965:6;-1:-1:-1;;;;;20306:15:0;;;1965:6;;20306:15;;;;:32;;-1:-1:-1;1938:7:0;1965:6;-1:-1:-1;;;;;20325:13:0;;;1965:6;;20325:13;;20306:32;20302:131;;;-1:-1:-1;;;;;20364:19:0;;;;;;:13;:19;;;;;;;;20363:20;:42;;;;-1:-1:-1;;;;;;20388:17:0;;;;;;:13;:17;;;;;;;;20387:18;20363:42;20355:66;;;;-1:-1:-1;;;20355:66:0;;7806:2:1;20355:66:0;;;7788:21:1;7845:2;7825:18;;;7818:30;-1:-1:-1;;;7864:18:1;;;7857:41;7915:18;;20355:66:0;7604:335:1;20355:66:0;20449:13;;-1:-1:-1;;;;;20449:13:0;20445:146;;1938:7;1965:6;-1:-1:-1;;;;;20501:15:0;;;1965:6;;20501:15;;:32;;-1:-1:-1;1938:7:0;1965:6;-1:-1:-1;;;;;20520:13:0;;;1965:6;;20520:13;20501:32;20493:65;;;;-1:-1:-1;;;20493:65:0;;8146:2:1;20493:65:0;;;8128:21:1;8185:2;8165:18;;;8158:30;-1:-1:-1;;;8204:18:1;;;8197:50;8264:18;;20493:65:0;7944:344:1;20493:65:0;20157:849;;;:::o;20445:146::-;20607:20;;;;20603:192;;;20644:13;20660:23;20674:4;20680:2;20660:13;:23::i;:::-;20644:39;;20698:24;20716:5;20698:17;:24::i;:::-;-1:-1:-1;;;;;20737:31:0;;;;;:24;:31;;;;;20771:12;20737:46;;20603:192;20812:7;;;;:32;;;;-1:-1:-1;20831:13:0;;-1:-1:-1;;;;;20823:21:0;;;20831:13;;20823:21;20812:32;20808:191;;;20901:16;;20891:6;20869:19;20885:2;-1:-1:-1;;;;;9711:18:0;9684:7;9711:18;;;:9;:18;;;;;;;9610:127;20869:19;:28;;;;:::i;:::-;:48;;:100;;;;;20953:16;;20943:6;20921:19;20937:2;-1:-1:-1;;;;;9711:18:0;9684:7;9711:18;;;:9;:18;;;;;;;9610:127;20921:19;:28;;;;:::i;:::-;:48;;20869:100;20861:119;;;;-1:-1:-1;;;20861:119:0;;8495:2:1;20861:119:0;;;8477:21:1;8534:1;8514:18;;;8507:29;-1:-1:-1;;;8552:18:1;;;8545:36;8598:18;;20861:119:0;8293:329:1;19139:436:0;19210:7;19062:21;;19111:7;;19062:21;;19111:7;;;;19400:24;;;19415:9;19400:24;19392:71;;;;-1:-1:-1;;;19392:71:0;;8829:2:1;19392:71:0;;;8811:21:1;8868:2;8848:18;;;8841:30;8907:34;8887:18;;;8880:62;-1:-1:-1;;;8958:18:1;;;8951:32;9000:19;;19392:71:0;8627:398:1;19392:71:0;19478:11;:24;;;;;19493:9;19478:24;19474:93;;;19526:4;19519:11;;;;;;19474:93;19565:2;19558:9;;;;;;19583:257;-1:-1:-1;;;;;19666:32:0;;19650:13;19666:32;;;:24;:32;;;;;;:37;;:112;;-1:-1:-1;19760:16:0;:12;19775:1;19760:16;:::i;:::-;-1:-1:-1;;;;;19721:32:0;;;;;;:24;:32;;;;;;:36;;19756:1;19721:36;:::i;:::-;:55;19666:112;19650:128;;19797:8;19789:43;;;;-1:-1:-1;;;19789:43:0;;9232:2:1;19789:43:0;;;9214:21:1;9271:2;9251:18;;;9244:30;-1:-1:-1;;;9290:18:1;;;9283:52;9352:18;;19789:43:0;9030:346:1;19789:43:0;19639:201;19583:257;:::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:160::-;1965:20;;2021:13;;2014:21;2004:32;;1994:60;;2050:1;2047;2040:12;2065:391;2148:6;2156;2164;2172;2225:3;2213:9;2204:7;2200:23;2196:33;2193:53;;;2242:1;2239;2232:12;2193:53;2265:26;2281:9;2265:26;:::i;:::-;2255:36;;2310:38;2344:2;2333:9;2329:18;2310:38;:::i;:::-;2065:391;;2300:48;;-1:-1:-1;;;;2395:2:1;2380:18;;2367:32;;2446:2;2431:18;2418:32;;2065:391::o;2461:254::-;2526:6;2534;2587:2;2575:9;2566:7;2562:23;2558:32;2555:52;;;2603:1;2600;2593:12;2555:52;2626:29;2645:9;2626:29;:::i;:::-;2616:39;;2674:35;2705:2;2694:9;2690:18;2674:35;:::i;:::-;2664:45;;2461:254;;;;;:::o;2928:186::-;2987:6;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3079:29;3098:9;3079:29;:::i;:::-;3069:39;2928:186;-1:-1:-1;;;2928:186:1:o;3119:260::-;3187:6;3195;3248:2;3236:9;3227:7;3223:23;3219:32;3216:52;;;3264:1;3261;3254:12;3216:52;3287:29;3306:9;3287:29;:::i;:::-;3277:39;;3335:38;3369:2;3358:9;3354:18;3335:38;:::i;3384:380::-;3463:1;3459:12;;;;3506;;;3527:61;;3581:4;3573:6;3569:17;3559:27;;3527:61;3634:2;3626:6;3623:14;3603:18;3600:38;3597:161;;3680:10;3675:3;3671:20;3668:1;3661:31;3715:4;3712:1;3705:15;3743:4;3740:1;3733:15;3597:161;;3384:380;;;:::o;4178:222::-;4243:9;;;4264:10;;;4261:133;;;4316:10;4311:3;4307:20;4304:1;4297:31;4351:4;4348:1;4341:15;4379:4;4376:1;4369:15;4405:356;4607:2;4589:21;;;4626:18;;;4619:30;4685:34;4680:2;4665:18;;4658:62;4752:2;4737:18;;4405:356::o
Swarm Source
ipfs://2fd4c51c1f9b48e557574cc25a579e174d44c1fa4e25bca5b2c2a08882233c83
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.