ERC-20
Overview
Max Total Supply
100,000,000,000 WAR
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,616,566,923.751094950226770685 WARValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MEMEWAR
Compiler Version
v0.8.1+commit.df193b15
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/GLDToken.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.1; import "./erc20tax.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MEMEWAR is ERC20, Ownable { mapping (address => bool) public isBlackListed; event DestroyedBlackFunds(address _blackListedUser, uint _balance); event AddedBlackList(address _user); event RemovedBlackList(address _user); constructor() ERC20("MEMEWAR", "WAR") { _mint(msg.sender, 100000000000000000000000000000); } function getBlackListStatus(address _maker) external view returns (bool) { return isBlackListed[_maker]; } function addBlackList (address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; emit AddedBlackList(_evilUser); } function removeBlackList (address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; emit RemovedBlackList(_clearedUser); } function setTaxWallet(address wallet) external onlyOwner{ _setTaxWallet(wallet); } function setTax(uint256 taxPercentage) external onlyOwner{ _setTax(taxPercentage); } function excludeFromTax(address excluded) external onlyOwner{ _setExcluded(excluded, true); } function includeInTax(address included) external onlyOwner{ _setExcluded(included, false); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { require(!isBlackListed[from],"Blocked User"); super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping (address => bool) public isExcludedFromTax; address public tax_wallet = 0x5E001e0FA5F6ceE27E2891f7085CEC45506A3ddB; uint256 public tax = 0; 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; } function _setTaxWallet(address newWallet) internal virtual{ tax_wallet = newWallet; } function _setTax(uint256 taxPercentage) internal virtual{ require(taxPercentage <= 1000, "ERC20: tax too high"); tax = taxPercentage; } function _setExcluded(address taxableAddress, bool state) internal virtual{ isExcludedFromTax[taxableAddress]=state; } /** * @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"); _balances[from] = fromBalance - amount; if(!isExcludedFromTax[from]){ _balances[to] += amount - ((amount * tax) / 10000); _balances[tax_wallet] += (amount * tax) / 10000; }else{ _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 {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","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":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"excluded","type":"address"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"included","type":"address"}],"name":"includeInTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","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":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxPercentage","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax_wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]
Contract Creation Code
6080604052735e001e0fa5f6cee27e2891f7085cec45506a3ddb600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006004553480156200006b57600080fd5b506040518060400160405280600781526020017f4d454d45574152000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57415200000000000000000000000000000000000000000000000000000000008152508160069080519060200190620000f092919062000444565b5080600790805190602001906200010992919062000444565b5050506200012c620001206200015160201b60201c565b6200015960201b60201c565b6200014b336c01431e0fae6d7217caa00000006200021f60201b60201c565b62000712565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002899062000575565b60405180910390fd5b620002a6600083836200038d60201b60201c565b8060056000828254620002ba9190620005c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036d919062000597565b60405180910390a362000389600083836200043a60201b60201c565b5050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156200041d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004149062000553565b60405180910390fd5b620004358383836200043f60201b62000b2d1760201c565b505050565b505050565b505050565b82805462000452906200062c565b90600052602060002090601f016020900481019282620004765760008555620004c2565b82601f106200049157805160ff1916838001178555620004c2565b82800160010185558215620004c2579182015b82811115620004c1578251825591602001919060010190620004a4565b5b509050620004d19190620004d5565b5090565b5b80821115620004f0576000816000905550600101620004d6565b5090565b600062000503600c83620005b4565b91506200051082620006c0565b602082019050919050565b60006200052a601f83620005b4565b91506200053782620006e9565b602082019050919050565b6200054d8162000622565b82525050565b600060208201905081810360008301526200056e81620004f4565b9050919050565b6000602082019050818103600083015262000590816200051b565b9050919050565b6000602082019050620005ae600083018462000542565b92915050565b600082825260208201905092915050565b6000620005d28262000622565b9150620005df8362000622565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000617576200061662000662565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200064557607f821691505b602082108114156200065c576200065b62000691565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f426c6f636b656420557365720000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611f3280620007226000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063dd62ed3e11610097578063e4997dc511610071578063e4997dc514610486578063ea414b28146104a2578063f2fde38b146104be578063fd85e5ab146104da57610173565b8063dd62ed3e1461040a578063e17c4c741461043a578063e47d60601461045657610173565b80638da5cb5b1461032057806395d89b411461033e57806399c8d5561461035c578063a457c2d71461037a578063a9059cbb146103aa578063cb4ca631146103da57610173565b8063313ce56711610130578063313ce5671461024c578063395093511461026a57806359bf1abe1461029a57806360d1259e146102ca57806370a08231146102e6578063715018a61461031657610173565b806306fdde0314610178578063095ea7b3146101965780630ecb93c0146101c657806318160ddd146101e257806323b872dd146102005780632e5bb6ff14610230575b600080fd5b6101806104f8565b60405161018d91906117c0565b60405180910390f35b6101b060048036038101906101ab919061152f565b61058a565b6040516101bd91906117a5565b60405180910390f35b6101e060048036038101906101db919061147b565b6105ad565b005b6101ea610647565b6040516101f79190611942565b60405180910390f35b61021a600480360381019061021591906114e0565b610651565b60405161022791906117a5565b60405180910390f35b61024a6004803603810190610245919061156b565b610680565b005b610254610694565b604051610261919061195d565b60405180910390f35b610284600480360381019061027f919061152f565b61069d565b60405161029191906117a5565b60405180910390f35b6102b460048036038101906102af919061147b565b6106d4565b6040516102c191906117a5565b60405180910390f35b6102e460048036038101906102df919061147b565b61072a565b005b61030060048036038101906102fb919061147b565b610740565b60405161030d9190611942565b60405180910390f35b61031e610788565b005b61032861079c565b604051610335919061178a565b60405180910390f35b6103466107c6565b60405161035391906117c0565b60405180910390f35b610364610858565b6040516103719190611942565b60405180910390f35b610394600480360381019061038f919061152f565b61085e565b6040516103a191906117a5565b60405180910390f35b6103c460048036038101906103bf919061152f565b6108d5565b6040516103d191906117a5565b60405180910390f35b6103f460048036038101906103ef919061147b565b6108f8565b60405161040191906117a5565b60405180910390f35b610424600480360381019061041f91906114a4565b610918565b6040516104319190611942565b60405180910390f35b610454600480360381019061044f919061147b565b61099f565b005b610470600480360381019061046b919061147b565b6109b5565b60405161047d91906117a5565b60405180910390f35b6104a0600480360381019061049b919061147b565b6109d5565b005b6104bc60048036038101906104b7919061147b565b610a6f565b005b6104d860048036038101906104d3919061147b565b610a83565b005b6104e2610b07565b6040516104ef919061178a565b60405180910390f35b60606006805461050790611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611b31565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600080610595610b32565b90506105a2818585610b3a565b600191505092915050565b6105b5610d05565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc8160405161063c919061178a565b60405180910390a150565b6000600554905090565b60008061065c610b32565b9050610669858285610d83565b610674858585610e0f565b60019150509392505050565b610688610d05565b610691816111fb565b50565b60006012905090565b6000806106a8610b32565b90506106c98185856106ba8589610918565b6106c49190611994565b610b3a565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610732610d05565b61073d81600161124a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610790610d05565b61079a60006112a5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107d590611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461080190611b31565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b60045481565b600080610869610b32565b905060006108778286610918565b9050838110156108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390611922565b60405180910390fd5b6108c98286868403610b3a565b60019250505092915050565b6000806108e0610b32565b90506108ed818585610e0f565b600191505092915050565b60026020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a7610d05565b6109b281600061124a565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b6109dd610d05565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051610a64919061178a565b60405180910390a150565b610a77610d05565b610a808161136b565b50565b610a8b610d05565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611802565b60405180910390fd5b610b04816112a5565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190611902565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611822565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf89190611942565b60405180910390a3505050565b610d0d610b32565b73ffffffffffffffffffffffffffffffffffffffff16610d2b61079c565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906118a2565b60405180910390fd5b565b6000610d8f8484610918565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e095781811015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611842565b60405180910390fd5b610e088484848403610b3a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906118e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906117e2565b60405180910390fd5b610efa8383836113af565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611862565b60405180910390fd5b8181610f8c9190611a75565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661112f57612710600454836110309190611a1b565b61103a91906119ea565b826110459190611a75565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110929190611994565b92505081905550612710600454836110aa9190611a1b565b6110b491906119ea565b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111239190611994565b92505081905550611185565b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117d9190611994565b925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e29190611942565b60405180910390a36111f584848461144c565b50505050565b6103e8811115611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906118c2565b60405180910390fd5b8060048190555050565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390611882565b60405180910390fd5b611447838383610b2d565b505050565b505050565b60008135905061146081611ece565b92915050565b60008135905061147581611ee5565b92915050565b60006020828403121561148d57600080fd5b600061149b84828501611451565b91505092915050565b600080604083850312156114b757600080fd5b60006114c585828601611451565b92505060206114d685828601611451565b9150509250929050565b6000806000606084860312156114f557600080fd5b600061150386828701611451565b935050602061151486828701611451565b925050604061152586828701611466565b9150509250925092565b6000806040838503121561154257600080fd5b600061155085828601611451565b925050602061156185828601611466565b9150509250929050565b60006020828403121561157d57600080fd5b600061158b84828501611466565b91505092915050565b61159d81611aa9565b82525050565b6115ac81611abb565b82525050565b60006115bd82611978565b6115c78185611983565b93506115d7818560208601611afe565b6115e081611bf0565b840191505092915050565b60006115f8602383611983565b915061160382611c01565b604082019050919050565b600061161b602683611983565b915061162682611c50565b604082019050919050565b600061163e602283611983565b915061164982611c9f565b604082019050919050565b6000611661601d83611983565b915061166c82611cee565b602082019050919050565b6000611684602683611983565b915061168f82611d17565b604082019050919050565b60006116a7600c83611983565b91506116b282611d66565b602082019050919050565b60006116ca602083611983565b91506116d582611d8f565b602082019050919050565b60006116ed601383611983565b91506116f882611db8565b602082019050919050565b6000611710602583611983565b915061171b82611de1565b604082019050919050565b6000611733602483611983565b915061173e82611e30565b604082019050919050565b6000611756602583611983565b915061176182611e7f565b604082019050919050565b61177581611ae7565b82525050565b61178481611af1565b82525050565b600060208201905061179f6000830184611594565b92915050565b60006020820190506117ba60008301846115a3565b92915050565b600060208201905081810360008301526117da81846115b2565b905092915050565b600060208201905081810360008301526117fb816115eb565b9050919050565b6000602082019050818103600083015261181b8161160e565b9050919050565b6000602082019050818103600083015261183b81611631565b9050919050565b6000602082019050818103600083015261185b81611654565b9050919050565b6000602082019050818103600083015261187b81611677565b9050919050565b6000602082019050818103600083015261189b8161169a565b9050919050565b600060208201905081810360008301526118bb816116bd565b9050919050565b600060208201905081810360008301526118db816116e0565b9050919050565b600060208201905081810360008301526118fb81611703565b9050919050565b6000602082019050818103600083015261191b81611726565b9050919050565b6000602082019050818103600083015261193b81611749565b9050919050565b6000602082019050611957600083018461176c565b92915050565b6000602082019050611972600083018461177b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061199f82611ae7565b91506119aa83611ae7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119df576119de611b63565b5b828201905092915050565b60006119f582611ae7565b9150611a0083611ae7565b925082611a1057611a0f611b92565b5b828204905092915050565b6000611a2682611ae7565b9150611a3183611ae7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a6a57611a69611b63565b5b828202905092915050565b6000611a8082611ae7565b9150611a8b83611ae7565b925082821015611a9e57611a9d611b63565b5b828203905092915050565b6000611ab482611ac7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b1c578082015181840152602081019050611b01565b83811115611b2b576000848401525b50505050565b60006002820490506001821680611b4957607f821691505b60208210811415611b5d57611b5c611bc1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f426c6f636b656420557365720000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a2074617820746f6f206869676800000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ed781611aa9565b8114611ee257600080fd5b50565b611eee81611ae7565b8114611ef957600080fd5b5056fea2646970667358221220088073ffa0a25f6e59ef9756283cf7a066dc67764aea9b72153811b0bf2c5c6e64736f6c63430008010033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063dd62ed3e11610097578063e4997dc511610071578063e4997dc514610486578063ea414b28146104a2578063f2fde38b146104be578063fd85e5ab146104da57610173565b8063dd62ed3e1461040a578063e17c4c741461043a578063e47d60601461045657610173565b80638da5cb5b1461032057806395d89b411461033e57806399c8d5561461035c578063a457c2d71461037a578063a9059cbb146103aa578063cb4ca631146103da57610173565b8063313ce56711610130578063313ce5671461024c578063395093511461026a57806359bf1abe1461029a57806360d1259e146102ca57806370a08231146102e6578063715018a61461031657610173565b806306fdde0314610178578063095ea7b3146101965780630ecb93c0146101c657806318160ddd146101e257806323b872dd146102005780632e5bb6ff14610230575b600080fd5b6101806104f8565b60405161018d91906117c0565b60405180910390f35b6101b060048036038101906101ab919061152f565b61058a565b6040516101bd91906117a5565b60405180910390f35b6101e060048036038101906101db919061147b565b6105ad565b005b6101ea610647565b6040516101f79190611942565b60405180910390f35b61021a600480360381019061021591906114e0565b610651565b60405161022791906117a5565b60405180910390f35b61024a6004803603810190610245919061156b565b610680565b005b610254610694565b604051610261919061195d565b60405180910390f35b610284600480360381019061027f919061152f565b61069d565b60405161029191906117a5565b60405180910390f35b6102b460048036038101906102af919061147b565b6106d4565b6040516102c191906117a5565b60405180910390f35b6102e460048036038101906102df919061147b565b61072a565b005b61030060048036038101906102fb919061147b565b610740565b60405161030d9190611942565b60405180910390f35b61031e610788565b005b61032861079c565b604051610335919061178a565b60405180910390f35b6103466107c6565b60405161035391906117c0565b60405180910390f35b610364610858565b6040516103719190611942565b60405180910390f35b610394600480360381019061038f919061152f565b61085e565b6040516103a191906117a5565b60405180910390f35b6103c460048036038101906103bf919061152f565b6108d5565b6040516103d191906117a5565b60405180910390f35b6103f460048036038101906103ef919061147b565b6108f8565b60405161040191906117a5565b60405180910390f35b610424600480360381019061041f91906114a4565b610918565b6040516104319190611942565b60405180910390f35b610454600480360381019061044f919061147b565b61099f565b005b610470600480360381019061046b919061147b565b6109b5565b60405161047d91906117a5565b60405180910390f35b6104a0600480360381019061049b919061147b565b6109d5565b005b6104bc60048036038101906104b7919061147b565b610a6f565b005b6104d860048036038101906104d3919061147b565b610a83565b005b6104e2610b07565b6040516104ef919061178a565b60405180910390f35b60606006805461050790611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611b31565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600080610595610b32565b90506105a2818585610b3a565b600191505092915050565b6105b5610d05565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc8160405161063c919061178a565b60405180910390a150565b6000600554905090565b60008061065c610b32565b9050610669858285610d83565b610674858585610e0f565b60019150509392505050565b610688610d05565b610691816111fb565b50565b60006012905090565b6000806106a8610b32565b90506106c98185856106ba8589610918565b6106c49190611994565b610b3a565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610732610d05565b61073d81600161124a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610790610d05565b61079a60006112a5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107d590611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461080190611b31565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b60045481565b600080610869610b32565b905060006108778286610918565b9050838110156108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390611922565b60405180910390fd5b6108c98286868403610b3a565b60019250505092915050565b6000806108e0610b32565b90506108ed818585610e0f565b600191505092915050565b60026020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a7610d05565b6109b281600061124a565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b6109dd610d05565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051610a64919061178a565b60405180910390a150565b610a77610d05565b610a808161136b565b50565b610a8b610d05565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611802565b60405180910390fd5b610b04816112a5565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190611902565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611822565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf89190611942565b60405180910390a3505050565b610d0d610b32565b73ffffffffffffffffffffffffffffffffffffffff16610d2b61079c565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906118a2565b60405180910390fd5b565b6000610d8f8484610918565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e095781811015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611842565b60405180910390fd5b610e088484848403610b3a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906118e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906117e2565b60405180910390fd5b610efa8383836113af565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611862565b60405180910390fd5b8181610f8c9190611a75565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661112f57612710600454836110309190611a1b565b61103a91906119ea565b826110459190611a75565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110929190611994565b92505081905550612710600454836110aa9190611a1b565b6110b491906119ea565b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111239190611994565b92505081905550611185565b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117d9190611994565b925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e29190611942565b60405180910390a36111f584848461144c565b50505050565b6103e8811115611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906118c2565b60405180910390fd5b8060048190555050565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390611882565b60405180910390fd5b611447838383610b2d565b505050565b505050565b60008135905061146081611ece565b92915050565b60008135905061147581611ee5565b92915050565b60006020828403121561148d57600080fd5b600061149b84828501611451565b91505092915050565b600080604083850312156114b757600080fd5b60006114c585828601611451565b92505060206114d685828601611451565b9150509250929050565b6000806000606084860312156114f557600080fd5b600061150386828701611451565b935050602061151486828701611451565b925050604061152586828701611466565b9150509250925092565b6000806040838503121561154257600080fd5b600061155085828601611451565b925050602061156185828601611466565b9150509250929050565b60006020828403121561157d57600080fd5b600061158b84828501611466565b91505092915050565b61159d81611aa9565b82525050565b6115ac81611abb565b82525050565b60006115bd82611978565b6115c78185611983565b93506115d7818560208601611afe565b6115e081611bf0565b840191505092915050565b60006115f8602383611983565b915061160382611c01565b604082019050919050565b600061161b602683611983565b915061162682611c50565b604082019050919050565b600061163e602283611983565b915061164982611c9f565b604082019050919050565b6000611661601d83611983565b915061166c82611cee565b602082019050919050565b6000611684602683611983565b915061168f82611d17565b604082019050919050565b60006116a7600c83611983565b91506116b282611d66565b602082019050919050565b60006116ca602083611983565b91506116d582611d8f565b602082019050919050565b60006116ed601383611983565b91506116f882611db8565b602082019050919050565b6000611710602583611983565b915061171b82611de1565b604082019050919050565b6000611733602483611983565b915061173e82611e30565b604082019050919050565b6000611756602583611983565b915061176182611e7f565b604082019050919050565b61177581611ae7565b82525050565b61178481611af1565b82525050565b600060208201905061179f6000830184611594565b92915050565b60006020820190506117ba60008301846115a3565b92915050565b600060208201905081810360008301526117da81846115b2565b905092915050565b600060208201905081810360008301526117fb816115eb565b9050919050565b6000602082019050818103600083015261181b8161160e565b9050919050565b6000602082019050818103600083015261183b81611631565b9050919050565b6000602082019050818103600083015261185b81611654565b9050919050565b6000602082019050818103600083015261187b81611677565b9050919050565b6000602082019050818103600083015261189b8161169a565b9050919050565b600060208201905081810360008301526118bb816116bd565b9050919050565b600060208201905081810360008301526118db816116e0565b9050919050565b600060208201905081810360008301526118fb81611703565b9050919050565b6000602082019050818103600083015261191b81611726565b9050919050565b6000602082019050818103600083015261193b81611749565b9050919050565b6000602082019050611957600083018461176c565b92915050565b6000602082019050611972600083018461177b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061199f82611ae7565b91506119aa83611ae7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119df576119de611b63565b5b828201905092915050565b60006119f582611ae7565b9150611a0083611ae7565b925082611a1057611a0f611b92565b5b828204905092915050565b6000611a2682611ae7565b9150611a3183611ae7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a6a57611a69611b63565b5b828202905092915050565b6000611a8082611ae7565b9150611a8b83611ae7565b925082821015611a9e57611a9d611b63565b5b828203905092915050565b6000611ab482611ac7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b1c578082015181840152602081019050611b01565b83811115611b2b576000848401525b50505050565b60006002820490506001821680611b4957607f821691505b60208210811415611b5d57611b5c611bc1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f426c6f636b656420557365720000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a2074617820746f6f206869676800000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ed781611aa9565b8114611ee257600080fd5b50565b611eee81611ae7565b8114611ef957600080fd5b5056fea2646970667358221220088073ffa0a25f6e59ef9756283cf7a066dc67764aea9b72153811b0bf2c5c6e64736f6c63430008010033
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.