BscScan - Sponsored slots available. Book your slot here!
BEP-20
Overview
Max Total Supply
168,000,000APPLE
Holders
3,431
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.07164 APPLEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
AppleToken
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2022-04-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 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 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; /** * @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: * * - `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 {} } /** * @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() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract AppleToken is ERC20("APPLE Token", "APPLE"), Ownable { bool public isPurchaseEnable = false; mapping(address => bool) internal isSwapPair; constructor(uint256 _total, address _recipient) { _mint(_recipient, _total); } function setSwapPair(address pair, bool limited) external onlyOwner { isSwapPair[pair] = limited; } function setPurchaseEnable(bool enable) external onlyOwner { isPurchaseEnable = enable; } function renounceOwnership() public virtual override onlyOwner { super.renounceOwnership(); isPurchaseEnable = true; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { if (to != address(0xdead) && !isPurchaseEnable) { require(!isSwapPair[from], "purchase is paused"); } super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"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":"isPurchaseEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setPurchaseEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"limited","type":"bool"}],"name":"setSwapPair","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":[{"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"}]
Contract Creation Code
60806040526005805460ff60a01b191690553480156200001e57600080fd5b50604051620014d1380380620014d1833981016040819052620000419162000374565b604080518082018252600b81526a20a8282622902a37b5b2b760a91b6020808301918252835180850190945260058452644150504c4560d81b9084015281519192916200009191600391620002ce565b508051620000a7906004906020840190620002ce565b505050620000c4620000be620000d860201b60201c565b620000dc565b620000d081836200012e565b505062000417565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200018a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001986000838362000225565b8060026000828254620001ac9190620003b3565b90915550506001600160a01b03821660009081526020819052604081208054839290620001db908490620003b3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661dead148015906200024b5750600554600160a01b900460ff16155b15620002b1576001600160a01b03831660009081526006602052604090205460ff1615620002b15760405162461bcd60e51b81526020600482015260126024820152711c1d5c98da185cd9481a5cc81c185d5cd95960721b604482015260640162000181565b620002c9838383620002c960201b620008981760201c565b505050565b828054620002dc90620003da565b90600052602060002090601f0160209004810192826200030057600085556200034b565b82601f106200031b57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034b5782518255916020019190600101906200032e565b50620003599291506200035d565b5090565b5b808211156200035957600081556001016200035e565b600080604083850312156200038857600080fd5b825160208401519092506001600160a01b0381168114620003a857600080fd5b809150509250929050565b60008219821115620003d557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003ef57607f821691505b602082108114156200041157634e487b7160e01b600052602260045260246000fd5b50919050565b6110aa80620004276000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806370a08231116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb14610276578063dd62ed3e14610289578063f2fde38b146102cf57600080fd5b806395d89b411461025b578063a457c2d71461026357600080fd5b806370a08231146101e2578063715018a6146102185780638348a288146102205780638da5cb5b1461023357600080fd5b806326a8770e116100ee57806326a8770e146101865780632c3119e31461019b578063313ce567146101c057806339509351146101cf57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102e2565b6040516101359190610e35565b60405180910390f35b61015161014c366004610ed1565b610374565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610efb565b61038a565b610199610194366004610f47565b61045b565b005b6005546101519074010000000000000000000000000000000000000000900460ff1681565b60405160128152602001610135565b6101516101dd366004610ed1565b61050c565b6101656101f0366004610f69565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610199610555565b61019961022e366004610f84565b610605565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b6101286106c2565b610151610271366004610ed1565b6106d1565b610151610284366004610ed1565b61078f565b610165610297366004610fb7565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101996102dd366004610f69565b61079c565b6060600380546102f190610fe1565b80601f016020809104026020016040519081016040528092919081815260200182805461031d90610fe1565b801561036a5780601f1061033f5761010080835404028352916020019161036a565b820191906000526020600020905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b600061038133848461089d565b50600192915050565b6000610397848484610a1c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610450853385840361089d565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b6005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610381918590610550908690611035565b61089d565b60055473ffffffffffffffffffffffffffffffffffffffff1633146105bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b6105c4610c8d565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461066c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600480546102f190610fe1565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156107785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161043a565b610785338585840361089d565b5060019392505050565b6000610381338484610a1c565b60055473ffffffffffffffffffffffffffffffffffffffff1633146108035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b73ffffffffffffffffffffffffffffffffffffffff811661088c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043a565b61089581610d00565b50565b505050565b73ffffffffffffffffffffffffffffffffffffffff83166109255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff82166109ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610aa55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff8216610b2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161043a565b610b39838383610d77565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610bd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610c19908490611035565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7f91815260200190565b60405180910390a350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cf45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b610cfe6000610d00565b565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821661dead14801590610dba575060055474010000000000000000000000000000000000000000900460ff16155b156108985773ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff16156108985760405162461bcd60e51b815260206004820152601260248201527f7075726368617365206973207061757365640000000000000000000000000000604482015260640161043a565b600060208083528351808285015260005b81811015610e6257858101830151858201604001528201610e46565b81811115610e74576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ecc57600080fd5b919050565b60008060408385031215610ee457600080fd5b610eed83610ea8565b946020939093013593505050565b600080600060608486031215610f1057600080fd5b610f1984610ea8565b9250610f2760208501610ea8565b9150604084013590509250925092565b80358015158114610ecc57600080fd5b600060208284031215610f5957600080fd5b610f6282610f37565b9392505050565b600060208284031215610f7b57600080fd5b610f6282610ea8565b60008060408385031215610f9757600080fd5b610fa083610ea8565b9150610fae60208401610f37565b90509250929050565b60008060408385031215610fca57600080fd5b610fd383610ea8565b9150610fae60208401610ea8565b600181811c90821680610ff557607f821691505b6020821081141561102f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561106f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fea2646970667358221220ce80581c46c6e803aecba5268aeff9920270aa249d9463d77a41786b45b0cace64736f6c634300080a00330000000000000000000000000000000000000000008af7623fb67bf1a8000000000000000000000000000000f44aca017cdc628b42d110de369dbc855f3d9173
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c806370a08231116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb14610276578063dd62ed3e14610289578063f2fde38b146102cf57600080fd5b806395d89b411461025b578063a457c2d71461026357600080fd5b806370a08231146101e2578063715018a6146102185780638348a288146102205780638da5cb5b1461023357600080fd5b806326a8770e116100ee57806326a8770e146101865780632c3119e31461019b578063313ce567146101c057806339509351146101cf57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102e2565b6040516101359190610e35565b60405180910390f35b61015161014c366004610ed1565b610374565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610efb565b61038a565b610199610194366004610f47565b61045b565b005b6005546101519074010000000000000000000000000000000000000000900460ff1681565b60405160128152602001610135565b6101516101dd366004610ed1565b61050c565b6101656101f0366004610f69565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610199610555565b61019961022e366004610f84565b610605565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b6101286106c2565b610151610271366004610ed1565b6106d1565b610151610284366004610ed1565b61078f565b610165610297366004610fb7565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101996102dd366004610f69565b61079c565b6060600380546102f190610fe1565b80601f016020809104026020016040519081016040528092919081815260200182805461031d90610fe1565b801561036a5780601f1061033f5761010080835404028352916020019161036a565b820191906000526020600020905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b600061038133848461089d565b50600192915050565b6000610397848484610a1c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610450853385840361089d565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b6005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610381918590610550908690611035565b61089d565b60055473ffffffffffffffffffffffffffffffffffffffff1633146105bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b6105c4610c8d565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461066c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600480546102f190610fe1565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156107785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161043a565b610785338585840361089d565b5060019392505050565b6000610381338484610a1c565b60055473ffffffffffffffffffffffffffffffffffffffff1633146108035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b73ffffffffffffffffffffffffffffffffffffffff811661088c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043a565b61089581610d00565b50565b505050565b73ffffffffffffffffffffffffffffffffffffffff83166109255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff82166109ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610aa55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff8216610b2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161043a565b610b39838383610d77565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610bd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161043a565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610c19908490611035565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7f91815260200190565b60405180910390a350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cf45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043a565b610cfe6000610d00565b565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821661dead14801590610dba575060055474010000000000000000000000000000000000000000900460ff16155b156108985773ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff16156108985760405162461bcd60e51b815260206004820152601260248201527f7075726368617365206973207061757365640000000000000000000000000000604482015260640161043a565b600060208083528351808285015260005b81811015610e6257858101830151858201604001528201610e46565b81811115610e74576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ecc57600080fd5b919050565b60008060408385031215610ee457600080fd5b610eed83610ea8565b946020939093013593505050565b600080600060608486031215610f1057600080fd5b610f1984610ea8565b9250610f2760208501610ea8565b9150604084013590509250925092565b80358015158114610ecc57600080fd5b600060208284031215610f5957600080fd5b610f6282610f37565b9392505050565b600060208284031215610f7b57600080fd5b610f6282610ea8565b60008060408385031215610f9757600080fd5b610fa083610ea8565b9150610fae60208401610f37565b90509250929050565b60008060408385031215610fca57600080fd5b610fd383610ea8565b9150610fae60208401610ea8565b600181811c90821680610ff557607f821691505b6020821081141561102f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561106f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fea2646970667358221220ce80581c46c6e803aecba5268aeff9920270aa249d9463d77a41786b45b0cace64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000008af7623fb67bf1a8000000000000000000000000000000f44aca017cdc628b42d110de369dbc855f3d9173
-----Decoded View---------------
Arg [0] : _total (uint256): 168000000000000000000000000
Arg [1] : _recipient (address): 0xf44Aca017Cdc628b42d110DE369DbC855F3D9173
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000008af7623fb67bf1a8000000
Arg [1] : 000000000000000000000000f44aca017cdc628b42d110de369dbc855f3d9173
Deployed Bytecode Sourcemap
18784:981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8472:210;;;;;;:::i;:::-;;:::i;:::-;;;1300:14:1;;1293:22;1275:41;;1263:2;1248:18;8472:210:0;1135:187:1;7284:108:0;7372:12;;7284:108;;;1473:25:1;;;1461:2;1446:18;7284:108:0;1327:177:1;9164:529:0;;;;;;:::i;:::-;;:::i;19172:103::-;;;;;;:::i;:::-;;:::i;:::-;;18853:36;;;;;;;;;;;;7126:93;;;7209:2;2334:36:1;;2322:2;2307:18;7126:93:0;2192:184:1;10102:297:0;;;;;;:::i;:::-;;:::i;7455:177::-;;;;;;:::i;:::-;7606:18;;7574:7;7606:18;;;;;;;;;;;;7455:177;19283:141;;;:::i;19051:113::-;;;;;;:::i;:::-;;:::i;17467:87::-;17540:6;;17467:87;;17540:6;;;;2977:74:1;;2965:2;2950:18;17467:87:0;2831:226:1;6383:104:0;;;:::i;10902:482::-;;;;;;:::i;:::-;;:::i;7845:216::-;;;;;;:::i;:::-;;:::i;8124:201::-;;;;;;:::i;:::-;8290:18;;;;8258:7;8290:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8124:201;18367:229;;;;;;:::i;:::-;;:::i;6164:100::-;6218:13;6251:5;6244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:100;:::o;8472:210::-;8591:4;8613:39;4052:10;8636:7;8645:6;8613:8;:39::i;:::-;-1:-1:-1;8670:4:0;8472:210;;;;:::o;9164:529::-;9304:4;9321:36;9331:6;9339:9;9350:6;9321:9;:36::i;:::-;9397:19;;;9370:24;9397:19;;;:11;:19;;;;;;;;4052:10;9397:33;;;;;;;;9463:26;;;;9441:116;;;;-1:-1:-1;;;9441:116:0;;3971:2:1;9441:116:0;;;3953:21:1;4010:2;3990:18;;;3983:30;4049:34;4029:18;;;4022:62;4120:10;4100:18;;;4093:38;4148:19;;9441:116:0;;;;;;;;;9593:57;9602:6;4052:10;9643:6;9624:16;:25;9593:8;:57::i;:::-;-1:-1:-1;9681:4:0;;9164:529;-1:-1:-1;;;;9164:529:0:o;19172:103::-;17540:6;;17687:23;17540:6;4052:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;4380:2:1;17679:68:0;;;4362:21:1;;;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;4510:18;;17679:68:0;4178:356:1;17679:68:0;19242:16:::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;19172:103::o;10102:297::-;4052:10;10217:4;10311:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10217:4;;10239:130;;10289:7;;10311:47;;10348:10;;10311:47;:::i;:::-;10239:8;:130::i;19283:141::-;17540:6;;17687:23;17540:6;4052:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;4380:2:1;17679:68:0;;;4362:21:1;;;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;4510:18;;17679:68:0;4178:356:1;17679:68:0;19357:25:::1;:23;:25::i;:::-;19393:16;:23:::0;;;::::1;::::0;::::1;::::0;;19283:141::o;19051:113::-;17540:6;;17687:23;17540:6;4052:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;4380:2:1;17679:68:0;;;4362:21:1;;;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;4510:18;;17679:68:0;4178:356:1;17679:68:0;19130:16:::1;::::0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:26;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;19051:113::o;6383:104::-;6439:13;6472:7;6465:14;;;;;:::i;10902:482::-;4052:10;11022:4;11071:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11138:35;;;;11116:122;;;;-1:-1:-1;;;11116:122:0;;5028:2:1;11116:122:0;;;5010:21:1;5067:2;5047:18;;;5040:30;5106:34;5086:18;;;5079:62;5177:7;5157:18;;;5150:35;5202:19;;11116:122:0;4826:401:1;11116:122:0;11274:67;4052:10;11297:7;11325:15;11306:16;:34;11274:8;:67::i;:::-;-1:-1:-1;11372:4:0;;10902:482;-1:-1:-1;;;10902:482:0:o;7845:216::-;7967:4;7989:42;4052:10;8013:9;8024:6;7989:9;:42::i;18367:229::-;17540:6;;17687:23;17540:6;4052:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;4380:2:1;17679:68:0;;;4362:21:1;;;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;4510:18;;17679:68:0;4178:356:1;17679:68:0;18470:22:::1;::::0;::::1;18448:110;;;::::0;-1:-1:-1;;;18448:110:0;;5434:2:1;18448:110:0::1;::::0;::::1;5416:21:1::0;5473:2;5453:18;;;5446:30;5512:34;5492:18;;;5485:62;5583:8;5563:18;;;5556:36;5609:19;;18448:110:0::1;5232:402:1::0;18448:110:0::1;18569:19;18579:8;18569:9;:19::i;:::-;18367:229:::0;:::o;15672:125::-;;;;:::o;14692:380::-;14828:19;;;14820:68;;;;-1:-1:-1;;;14820:68:0;;5841:2:1;14820:68:0;;;5823:21:1;5880:2;5860:18;;;5853:30;5919:34;5899:18;;;5892:62;5990:6;5970:18;;;5963:34;6014:19;;14820:68:0;5639:400:1;14820:68:0;14907:21;;;14899:68;;;;-1:-1:-1;;;14899:68:0;;6246:2:1;14899:68:0;;;6228:21:1;6285:2;6265:18;;;6258:30;6324:34;6304:18;;;6297:62;6395:4;6375:18;;;6368:32;6417:19;;14899:68:0;6044:398:1;14899:68:0;14980:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15032:32;;1473:25:1;;;15032:32:0;;1446:18:1;15032:32:0;;;;;;;14692:380;;;:::o;11874:770::-;12014:20;;;12006:70;;;;-1:-1:-1;;;12006:70:0;;6649:2:1;12006:70:0;;;6631:21:1;6688:2;6668:18;;;6661:30;6727:34;6707:18;;;6700:62;6798:7;6778:18;;;6771:35;6823:19;;12006:70:0;6447:401:1;12006:70:0;12095:23;;;12087:71;;;;-1:-1:-1;;;12087:71:0;;7055:2:1;12087:71:0;;;7037:21:1;7094:2;7074:18;;;7067:30;7133:34;7113:18;;;7106:62;7204:5;7184:18;;;7177:33;7227:19;;12087:71:0;6853:399:1;12087:71:0;12171:47;12192:6;12200:9;12211:6;12171:20;:47::i;:::-;12255:17;;;12231:21;12255:17;;;;;;;;;;;12305:23;;;;12283:111;;;;-1:-1:-1;;;12283:111:0;;7459:2:1;12283:111:0;;;7441:21:1;7498:2;7478:18;;;7471:30;7537:34;7517:18;;;7510:62;7608:8;7588:18;;;7581:36;7634:19;;12283:111:0;7257:402:1;12283:111:0;12430:17;;;;:9;:17;;;;;;;;;;;12450:22;;;12430:42;;12494:20;;;;;;;;:30;;12466:6;;12430:9;12494:30;;12466:6;;12494:30;:::i;:::-;;;;;;;;12559:9;12542:35;;12551:6;12542:35;;;12570:6;12542:35;;;;1473:25:1;;1461:2;1446:18;;1327:177;12542:35:0;;;;;;;;11995:649;11874:770;;;:::o;18118:94::-;17540:6;;17687:23;17540:6;4052:10;17687:23;17679:68;;;;-1:-1:-1;;;17679:68:0;;4380:2:1;17679:68:0;;;4362:21:1;;;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;4510:18;;17679:68:0;4178:356:1;17679:68:0;18183:21:::1;18201:1;18183:9;:21::i;:::-;18118:94::o:0;18604:173::-;18679:6;;;;18696:17;;;;;;;;;;;18729:40;;18679:6;;;18696:17;18679:6;;18729:40;;18660:16;;18729:40;18649:128;18604:173;:::o;19432:330::-;19579:21;;;19593:6;19579:21;;;;:42;;-1:-1:-1;19605:16:0;;;;;;;19604:17;19579:42;19575:123;;;19647:16;;;;;;;:10;:16;;;;;;;;19646:17;19638:48;;;;-1:-1:-1;;;19638:48:0;;7866:2:1;19638:48:0;;;7848:21:1;7905:2;7885:18;;;7878:30;7944:20;7924:18;;;7917:48;7982:18;;19638:48:0;7664:342:1;14:656;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;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:196::-;743:20;;803:42;792:54;;782:65;;772:93;;861:1;858;851:12;772:93;675:196;;;:::o;876:254::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;1120:2;1105:18;;;;1092:32;;-1:-1:-1;;;876:254:1:o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:160::-;1907:20;;1963:13;;1956:21;1946:32;;1936:60;;1992:1;1989;1982:12;2007:180;2063:6;2116:2;2104:9;2095:7;2091:23;2087:32;2084:52;;;2132:1;2129;2122:12;2084:52;2155:26;2171:9;2155:26;:::i;:::-;2145:36;2007:180;-1:-1:-1;;;2007:180:1:o;2381:186::-;2440:6;2493:2;2481:9;2472:7;2468:23;2464:32;2461:52;;;2509:1;2506;2499:12;2461:52;2532:29;2551:9;2532:29;:::i;2572:254::-;2637:6;2645;2698:2;2686:9;2677:7;2673:23;2669:32;2666:52;;;2714:1;2711;2704:12;2666:52;2737:29;2756:9;2737:29;:::i;:::-;2727:39;;2785:35;2816:2;2805:9;2801:18;2785:35;:::i;:::-;2775:45;;2572:254;;;;;:::o;3062:260::-;3130:6;3138;3191:2;3179:9;3170:7;3166:23;3162:32;3159:52;;;3207:1;3204;3197:12;3159:52;3230:29;3249:9;3230:29;:::i;:::-;3220:39;;3278:38;3312:2;3301:9;3297:18;3278:38;:::i;3327:437::-;3406:1;3402:12;;;;3449;;;3470:61;;3524:4;3516:6;3512:17;3502:27;;3470:61;3577:2;3569:6;3566:14;3546:18;3543:38;3540:218;;;3614:77;3611:1;3604:88;3715:4;3712:1;3705:15;3743:4;3740:1;3733:15;3540:218;;3327:437;;;:::o;4539:282::-;4579:3;4610:1;4606:6;4603:1;4600:13;4597:193;;;4646:77;4643:1;4636:88;4747:4;4744:1;4737:15;4775:4;4772:1;4765:15;4597:193;-1:-1:-1;4806:9:1;;4539:282::o
Swarm Source
ipfs://ce80581c46c6e803aecba5268aeff9920270aa249d9463d77a41786b45b0cace
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.