ERC-20
Overview
Max Total Supply
69,696,969,696,969 BROKIE
Holders
147
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
254,950,796,610.262739597306412961 BROKIEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BrokieToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-23 */ /* Twitter: https://twitter.com/brokieforlife Telegram: https://t.me/brokieforlife Website: https://www.brokieforlife.com/ */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 {} } // File: BrokieTokenEth.sol pragma solidity ^0.8.9; contract BrokieToken is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; constructor(uint256 _totalSupply) ERC20("Brokie", "BROKIE") { _mint(msg.sender, _totalSupply); } 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 (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Transfer amount exceeds holding limit"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620012a5380380620012a5833981016040819052620000349162000428565b6040518060400160405280600681526020016542726f6b696560d01b8152506040518060400160405280600681526020016542524f4b494560d01b8152506200008c62000086620000d360201b60201c565b620000d7565b8151620000a190600490602085019062000382565b508051620000b790600590602084019062000382565b505050620000cc33826200012760201b60201c565b50620004a6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019160008383620001fe565b8060036000828254620001a5919062000442565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6009546001600160a01b03166200028c576000546001600160a01b03848116911614806200023957506000546001600160a01b038381169116145b620002875760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200017a565b505050565b60065460ff168015620002ac57506009546001600160a01b038481169116145b15620002875760075481620002cc846200036760201b620003eb1760201c565b620002d8919062000442565b111580156200030b575060085481620002fc846200036760201b620003eb1760201c565b62000308919062000442565b10155b620002875760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220616d6f756e74206578636565647320686f6c64696e67206044820152641b1a5b5a5d60da1b60648201526084016200017a565b6001600160a01b031660009081526001602052604090205490565b828054620003909062000469565b90600052602060002090601f016020900481019282620003b45760008555620003ff565b82601f10620003cf57805160ff1916838001178555620003ff565b82800160010185558215620003ff579182015b82811115620003ff578251825591602001919060010190620003e2565b506200040d92915062000411565b5090565b5b808211156200040d576000815560010162000412565b6000602082840312156200043b57600080fd5b5051919050565b600082198211156200046457634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200047e57607f821691505b60208210811415620004a057634e487b7160e01b600052602260045260246000fd5b50919050565b610def80620004b66000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610257578063a457c2d71461025f578063a9059cbb14610272578063dd62ed3e14610285578063f2fde38b1461029857600080fd5b806370a0823114610215578063715018a614610228578063860a32ec1461023057806389f9a1d31461023d5780638da5cb5b1461024657600080fd5b8063313ce567116100f4578063313ce567146101a057806339509351146101af5780633aa633aa146101c257806342966c68146101d757806349bd5a5e146101ea57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd146101725780631ab99e121461018457806323b872dd1461018d575b600080fd5b6101396102ab565b6040516101469190610bca565b60405180910390f35b61016261015d366004610c3b565b61033d565b6040519015158152602001610146565b6003545b604051908152602001610146565b61017660085481565b61016261019b366004610c65565b610355565b60405160128152602001610146565b6101626101bd366004610c3b565b610379565b6101d56101d0366004610ca1565b61039b565b005b6101d56101e5366004610cea565b6103de565b6009546101fd906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b610176610223366004610d03565b6103eb565b6101d5610406565b6006546101629060ff1681565b61017660075481565b6000546001600160a01b03166101fd565b61013961041a565b61016261026d366004610c3b565b610429565b610162610280366004610c3b565b6104a9565b610176610293366004610d25565b6104b7565b6101d56102a6366004610d03565b6104e2565b6060600480546102ba90610d58565b80601f01602080910402602001604051908101604052809291908181526020018280546102e690610d58565b80156103335780601f1061030857610100808354040283529160200191610333565b820191906000526020600020905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b60003361034b818585610558565b5060019392505050565b60003361036385828561067d565b61036e8585856106f7565b506001949350505050565b60003361034b81858561038c83836104b7565b6103969190610d93565b610558565b6103a36108ad565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6103e83382610907565b50565b6001600160a01b031660009081526001602052604090205490565b61040e6108ad565b6104186000610a44565b565b6060600580546102ba90610d58565b6000338161043782866104b7565b90508381101561049c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036e8286868403610558565b60003361034b8185856106f7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104ea6108ad565b6001600160a01b03811661054f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610493565b6103e881610a44565b6001600160a01b0383166105ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b03821661061b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061068984846104b7565b905060001981146106f157818110156106e45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610493565b6106f18484848403610558565b50505050565b6001600160a01b03831661075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b0382166107bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b6107c8838383610a94565b6001600160a01b038316600090815260016020526040902054818110156108405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610493565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108a09086815260200190565b60405180910390a36106f1565b6000546001600160a01b031633146104185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b6001600160a01b0382166109675760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610493565b61097382600083610a94565b6001600160a01b038216600090815260016020526040902054818110156109e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610493565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610670565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610b12576000546001600160a01b0384811691161480610acd57506000546001600160a01b038381169116145b610a3f5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610493565b60065460ff168015610b3157506009546001600160a01b038481169116145b15610a3f5760075481610b43846103eb565b610b4d9190610d93565b11158015610b70575060085481610b63846103eb565b610b6d9190610d93565b10155b610a3f5760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220616d6f756e74206578636565647320686f6c64696e67206044820152641b1a5b5a5d60da1b6064820152608401610493565b600060208083528351808285015260005b81811015610bf757858101830151858201604001528201610bdb565b81811115610c09576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c3657600080fd5b919050565b60008060408385031215610c4e57600080fd5b610c5783610c1f565b946020939093013593505050565b600080600060608486031215610c7a57600080fd5b610c8384610c1f565b9250610c9160208501610c1f565b9150604084013590509250925092565b60008060008060808587031215610cb757600080fd5b84358015158114610cc757600080fd5b9350610cd560208601610c1f565b93969395505050506040820135916060013590565b600060208284031215610cfc57600080fd5b5035919050565b600060208284031215610d1557600080fd5b610d1e82610c1f565b9392505050565b60008060408385031215610d3857600080fd5b610d4183610c1f565b9150610d4f60208401610c1f565b90509250929050565b600181811c90821680610d6c57607f821691505b60208210811415610d8d57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610db457634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220df3c4eec8580bfa4a864fd7d1517f22600fee2e53c3e9817ab99ccccf443718764736f6c63430008090033000000000000000000000000000000000000036fb30e1647820a752a45840000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610257578063a457c2d71461025f578063a9059cbb14610272578063dd62ed3e14610285578063f2fde38b1461029857600080fd5b806370a0823114610215578063715018a614610228578063860a32ec1461023057806389f9a1d31461023d5780638da5cb5b1461024657600080fd5b8063313ce567116100f4578063313ce567146101a057806339509351146101af5780633aa633aa146101c257806342966c68146101d757806349bd5a5e146101ea57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd146101725780631ab99e121461018457806323b872dd1461018d575b600080fd5b6101396102ab565b6040516101469190610bca565b60405180910390f35b61016261015d366004610c3b565b61033d565b6040519015158152602001610146565b6003545b604051908152602001610146565b61017660085481565b61016261019b366004610c65565b610355565b60405160128152602001610146565b6101626101bd366004610c3b565b610379565b6101d56101d0366004610ca1565b61039b565b005b6101d56101e5366004610cea565b6103de565b6009546101fd906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b610176610223366004610d03565b6103eb565b6101d5610406565b6006546101629060ff1681565b61017660075481565b6000546001600160a01b03166101fd565b61013961041a565b61016261026d366004610c3b565b610429565b610162610280366004610c3b565b6104a9565b610176610293366004610d25565b6104b7565b6101d56102a6366004610d03565b6104e2565b6060600480546102ba90610d58565b80601f01602080910402602001604051908101604052809291908181526020018280546102e690610d58565b80156103335780601f1061030857610100808354040283529160200191610333565b820191906000526020600020905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b60003361034b818585610558565b5060019392505050565b60003361036385828561067d565b61036e8585856106f7565b506001949350505050565b60003361034b81858561038c83836104b7565b6103969190610d93565b610558565b6103a36108ad565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6103e83382610907565b50565b6001600160a01b031660009081526001602052604090205490565b61040e6108ad565b6104186000610a44565b565b6060600580546102ba90610d58565b6000338161043782866104b7565b90508381101561049c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036e8286868403610558565b60003361034b8185856106f7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104ea6108ad565b6001600160a01b03811661054f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610493565b6103e881610a44565b6001600160a01b0383166105ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b03821661061b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061068984846104b7565b905060001981146106f157818110156106e45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610493565b6106f18484848403610558565b50505050565b6001600160a01b03831661075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b0382166107bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b6107c8838383610a94565b6001600160a01b038316600090815260016020526040902054818110156108405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610493565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108a09086815260200190565b60405180910390a36106f1565b6000546001600160a01b031633146104185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b6001600160a01b0382166109675760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610493565b61097382600083610a94565b6001600160a01b038216600090815260016020526040902054818110156109e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610493565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610670565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610b12576000546001600160a01b0384811691161480610acd57506000546001600160a01b038381169116145b610a3f5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610493565b60065460ff168015610b3157506009546001600160a01b038481169116145b15610a3f5760075481610b43846103eb565b610b4d9190610d93565b11158015610b70575060085481610b63846103eb565b610b6d9190610d93565b10155b610a3f5760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220616d6f756e74206578636565647320686f6c64696e67206044820152641b1a5b5a5d60da1b6064820152608401610493565b600060208083528351808285015260005b81811015610bf757858101830151858201604001528201610bdb565b81811115610c09576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c3657600080fd5b919050565b60008060408385031215610c4e57600080fd5b610c5783610c1f565b946020939093013593505050565b600080600060608486031215610c7a57600080fd5b610c8384610c1f565b9250610c9160208501610c1f565b9150604084013590509250925092565b60008060008060808587031215610cb757600080fd5b84358015158114610cc757600080fd5b9350610cd560208601610c1f565b93969395505050506040820135916060013590565b600060208284031215610cfc57600080fd5b5035919050565b600060208284031215610d1557600080fd5b610d1e82610c1f565b9392505050565b60008060408385031215610d3857600080fd5b610d4183610c1f565b9150610d4f60208401610c1f565b90509250929050565b600181811c90821680610d6c57607f821691505b60208210811415610d8d57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610db457634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220df3c4eec8580bfa4a864fd7d1517f22600fee2e53c3e9817ab99ccccf443718764736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000036fb30e1647820a752a45840000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69696969696969000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000036fb30e1647820a752a45840000
Deployed Bytecode Sourcemap
20876:1229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9624:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11975:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11975:201:0;1053:187:1;10744:108:0;10832:12;;10744:108;;;1391:25:1;;;1379:2;1364:18;10744:108:0;1245:177:1;20986:31:0;;;;;;12756:295;;;;;;:::i;:::-;;:::i;10586:93::-;;;10669:2;1902:36:1;;1890:2;1875:18;10586:93:0;1760:184:1;13460:238:0;;;;;;:::i;:::-;;:::i;21179:301::-;;;;;;:::i;:::-;;:::i;:::-;;22021:81;;;;;;:::i;:::-;;:::i;21024:28::-;;;;;-1:-1:-1;;;;;21024:28:0;;;;;;-1:-1:-1;;;;;2787:32:1;;;2769:51;;2757:2;2742:18;21024:28:0;2623:203:1;10915:127:0;;;;;;:::i;:::-;;:::i;3049:103::-;;;:::i;20922:19::-;;;;;;;;;20948:31;;;;;;2401:87;2447:7;2474:6;-1:-1:-1;;;;;2474:6:0;2401:87;;9843:104;;;:::i;14201:436::-;;;;;;:::i;:::-;;:::i;11248:193::-;;;;;;:::i;:::-;;:::i;11504:151::-;;;;;;:::i;:::-;;:::i;3307:201::-;;;;;;:::i;:::-;;:::i;9624:100::-;9678:13;9711:5;9704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9624:100;:::o;11975:201::-;12058:4;1032:10;12114:32;1032:10;12130:7;12139:6;12114:8;:32::i;:::-;-1:-1:-1;12164:4:0;;11975:201;-1:-1:-1;;;11975:201:0:o;12756:295::-;12887:4;1032:10;12945:38;12961:4;1032:10;12976:6;12945:15;:38::i;:::-;12994:27;13004:4;13010:2;13014:6;12994:9;:27::i;:::-;-1:-1:-1;13039:4:0;;12756:295;-1:-1:-1;;;;12756:295:0:o;13460:238::-;13548:4;1032:10;13604:64;1032:10;13620:7;13657:10;13629:25;1032:10;13620:7;13629:9;:25::i;:::-;:38;;;;:::i;:::-;13604:8;:64::i;21179:301::-;2287:13;:11;:13::i;:::-;21319:7:::1;:18:::0;;-1:-1:-1;;21319:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21348:13:::1;:30:::0;;-1:-1:-1;;;;;;21348:30:0::1;-1:-1:-1::0;;;;;21348:30:0;;;::::1;::::0;;;::::1;::::0;;;21389:16:::1;:36:::0;21436:16:::1;:36:::0;21179:301::o;22021:81::-;22070:24;22076:10;22088:5;22070;:24::i;:::-;22021:81;:::o;10915:127::-;-1:-1:-1;;;;;11016:18:0;10989:7;11016:18;;;:9;:18;;;;;;;10915:127::o;3049:103::-;2287:13;:11;:13::i;:::-;3114:30:::1;3141:1;3114:18;:30::i;:::-;3049:103::o:0;9843:104::-;9899:13;9932:7;9925:14;;;;;:::i;14201:436::-;14294:4;1032:10;14294:4;14377:25;1032:10;14394:7;14377:9;:25::i;:::-;14350:52;;14441:15;14421:16;:35;;14413:85;;;;-1:-1:-1;;;14413:85:0;;4104:2:1;14413:85:0;;;4086:21:1;4143:2;4123:18;;;4116:30;4182:34;4162:18;;;4155:62;-1:-1:-1;;;4233:18:1;;;4226:35;4278:19;;14413:85:0;;;;;;;;;14534:60;14543:5;14550:7;14578:15;14559:16;:34;14534:8;:60::i;11248:193::-;11327:4;1032:10;11383:28;1032:10;11400:2;11404:6;11383:9;:28::i;11504:151::-;-1:-1:-1;;;;;11620:18:0;;;11593:7;11620:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11504:151::o;3307:201::-;2287:13;:11;:13::i;:::-;-1:-1:-1;;;;;3396:22:0;::::1;3388:73;;;::::0;-1:-1:-1;;;3388:73:0;;4510:2:1;3388:73:0::1;::::0;::::1;4492:21:1::0;4549:2;4529:18;;;4522:30;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:18:1;;;4632:36;4685:19;;3388:73:0::1;4308:402:1::0;3388:73:0::1;3472:28;3491:8;3472:18;:28::i;18228:380::-:0;-1:-1:-1;;;;;18364:19:0;;18356:68;;;;-1:-1:-1;;;18356:68:0;;4917:2:1;18356:68:0;;;4899:21:1;4956:2;4936:18;;;4929:30;4995:34;4975:18;;;4968:62;-1:-1:-1;;;5046:18:1;;;5039:34;5090:19;;18356:68:0;4715:400:1;18356:68:0;-1:-1:-1;;;;;18443:21:0;;18435:68;;;;-1:-1:-1;;;18435:68:0;;5322:2:1;18435:68:0;;;5304:21:1;5361:2;5341:18;;;5334:30;5400:34;5380:18;;;5373:62;-1:-1:-1;;;5451:18:1;;;5444:32;5493:19;;18435:68:0;5120:398:1;18435:68:0;-1:-1:-1;;;;;18516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18568:32;;1391:25:1;;;18568:32:0;;1364:18:1;18568:32:0;;;;;;;;18228:380;;;:::o;18899:453::-;19034:24;19061:25;19071:5;19078:7;19061:9;:25::i;:::-;19034:52;;-1:-1:-1;;19101:16:0;:37;19097:248;;19183:6;19163:16;:26;;19155:68;;;;-1:-1:-1;;;19155:68:0;;5725:2:1;19155:68:0;;;5707:21:1;5764:2;5744:18;;;5737:30;5803:31;5783:18;;;5776:59;5852:18;;19155:68:0;5523:353:1;19155:68:0;19267:51;19276:5;19283:7;19311:6;19292:16;:25;19267:8;:51::i;:::-;19023:329;18899:453;;;:::o;15107:840::-;-1:-1:-1;;;;;15238:18:0;;15230:68;;;;-1:-1:-1;;;15230:68:0;;6083:2:1;15230:68:0;;;6065:21:1;6122:2;6102:18;;;6095:30;6161:34;6141:18;;;6134:62;-1:-1:-1;;;6212:18:1;;;6205:35;6257:19;;15230:68:0;5881:401:1;15230:68:0;-1:-1:-1;;;;;15317:16:0;;15309:64;;;;-1:-1:-1;;;15309:64:0;;6489:2:1;15309:64:0;;;6471:21:1;6528:2;6508:18;;;6501:30;6567:34;6547:18;;;6540:62;-1:-1:-1;;;6618:18:1;;;6611:33;6661:19;;15309:64:0;6287:399:1;15309:64:0;15386:38;15407:4;15413:2;15417:6;15386:20;:38::i;:::-;-1:-1:-1;;;;;15459:15:0;;15437:19;15459:15;;;:9;:15;;;;;;15493:21;;;;15485:72;;;;-1:-1:-1;;;15485:72:0;;6893:2:1;15485:72:0;;;6875:21:1;6932:2;6912:18;;;6905:30;6971:34;6951:18;;;6944:62;-1:-1:-1;;;7022:18:1;;;7015:36;7068:19;;15485:72:0;6691:402:1;15485:72:0;-1:-1:-1;;;;;15593:15:0;;;;;;;:9;:15;;;;;;15611:20;;;15593:38;;15811:13;;;;;;;;;;:23;;;;;;15863:26;;;;;;15625:6;1391:25:1;;1379:2;1364:18;;1245:177;15863:26:0;;;;;;;;15902:37;17115:675;2566:132;2447:7;2474:6;-1:-1:-1;;;;;2474:6:0;1032:10;2630:23;2622:68;;;;-1:-1:-1;;;2622:68:0;;7300:2:1;2622:68:0;;;7282:21:1;;;7319:18;;;7312:30;7378:34;7358:18;;;7351:62;7430:18;;2622:68:0;7098:356:1;17115:675:0;-1:-1:-1;;;;;17199:21:0;;17191:67;;;;-1:-1:-1;;;17191:67:0;;7661:2:1;17191:67:0;;;7643:21:1;7700:2;7680:18;;;7673:30;7739:34;7719:18;;;7712:62;-1:-1:-1;;;7790:18:1;;;7783:31;7831:19;;17191:67:0;7459:397:1;17191:67:0;17271:49;17292:7;17309:1;17313:6;17271:20;:49::i;:::-;-1:-1:-1;;;;;17358:18:0;;17333:22;17358:18;;;:9;:18;;;;;;17395:24;;;;17387:71;;;;-1:-1:-1;;;17387:71:0;;8063:2:1;17387:71:0;;;8045:21:1;8102:2;8082:18;;;8075:30;8141:34;8121:18;;;8114:62;-1:-1:-1;;;8192:18:1;;;8185:32;8234:19;;17387:71:0;7861:398:1;17387:71:0;-1:-1:-1;;;;;17494:18:0;;;;;;:9;:18;;;;;;;;17515:23;;;17494:44;;17633:12;:22;;;;;;;17684:37;1391:25:1;;;17494:18:0;;;17684:37;;1364:18:1;17684:37:0;1245:177:1;17734:48:0;17180:610;17115:675;;:::o;3668:191::-;3742:16;3761:6;;-1:-1:-1;;;;;3778:17:0;;;-1:-1:-1;;;;;;3778:17:0;;;;;;3811:40;;3761:6;;;;;;;3811:40;;3742:16;3811:40;3731:128;3668:191;:::o;21488:525::-;21635:13;;-1:-1:-1;;;;;21635:13:0;21631:148;;2447:7;2474:6;-1:-1:-1;;;;;21687:15:0;;;2474:6;;21687:15;;:32;;-1:-1:-1;2447:7:0;2474:6;-1:-1:-1;;;;;21706:13:0;;;2474:6;;21706:13;21687:32;21679:67;;;;-1:-1:-1;;;21679:67:0;;8466:2:1;21679:67:0;;;8448:21:1;8505:2;8485:18;;;8478:30;-1:-1:-1;;;8524:18:1;;;8517:52;8586:18;;21679:67:0;8264:346:1;21631:148:0;21795:7;;;;:32;;;;-1:-1:-1;21814:13:0;;-1:-1:-1;;;;;21806:21:0;;;21814:13;;21806:21;21795:32;21791:215;;;21884:16;;21874:6;21852:19;21868:2;21852:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21936:16;;21926:6;21904:19;21920:2;21904:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21852:100;21844:150;;;;-1:-1:-1;;;21844:150:0;;8817:2:1;21844:150:0;;;8799:21:1;8856:2;8836:18;;;8829:30;8895:34;8875:18;;;8868:62;-1:-1:-1;;;8946:18:1;;;8939:35;8991:19;;21844:150:0;8615:401:1;14:597;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:484::-;2032:6;2040;2048;2056;2109:3;2097:9;2088:7;2084:23;2080:33;2077:53;;;2126:1;2123;2116:12;2077:53;2165:9;2152:23;2218:5;2211:13;2204:21;2197:5;2194:32;2184:60;;2240:1;2237;2230:12;2184:60;2263:5;-1:-1:-1;2287:38:1;2321:2;2306:18;;2287:38;:::i;:::-;1949:484;;2277:48;;-1:-1:-1;;;;2372:2:1;2357:18;;2344:32;;2423:2;2408:18;2395:32;;1949:484::o;2438:180::-;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;-1:-1:-1;2589:23:1;;2438:180;-1:-1:-1;2438:180:1:o;2831:186::-;2890:6;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2982:29;3001:9;2982:29;:::i;:::-;2972:39;2831:186;-1:-1:-1;;;2831:186:1:o;3022:260::-;3090:6;3098;3151:2;3139:9;3130:7;3126:23;3122:32;3119:52;;;3167:1;3164;3157:12;3119:52;3190:29;3209:9;3190:29;:::i;:::-;3180:39;;3238:38;3272:2;3261:9;3257:18;3238:38;:::i;:::-;3228:48;;3022:260;;;;;:::o;3287:380::-;3366:1;3362:12;;;;3409;;;3430:61;;3484:4;3476:6;3472:17;3462:27;;3430:61;3537:2;3529:6;3526:14;3506:18;3503:38;3500:161;;;3583:10;3578:3;3574:20;3571:1;3564:31;3618:4;3615:1;3608:15;3646:4;3643:1;3636:15;3500:161;;3287:380;;;:::o;3672:225::-;3712:3;3743:1;3739:6;3736:1;3733:13;3730:136;;;3788:10;3783:3;3779:20;3776:1;3769:31;3823:4;3820:1;3813:15;3851:4;3848:1;3841:15;3730:136;-1:-1:-1;3882:9:1;;3672:225::o
Swarm Source
ipfs://df3c4eec8580bfa4a864fd7d1517f22600fee2e53c3e9817ab99ccccf4437187
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.