ERC-20
Gaming
Overview
Max Total Supply
999,999,999.996216499985284228 WBOND
Holders
2,894 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 FTM
Onchain Market Cap
$184,300.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
WBond
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-12-22 */ /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: 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); } /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity ^0.8.0; ////import "./IERC20.sol"; ////import "../../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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 { } } /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity ^0.8.0; ////import "../ERC20.sol"; ////import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * SourceUnit: c:\Projects\tankwars\smart-contracts\contracts\WBond.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity ^0.8.0; ////import "@openzeppelin/contracts/access/Ownable.sol"; ////import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; interface IBPContract { function protect(address sender, address receiver, uint256 amount) external; } contract WBond is Ownable, ERC20Burnable { IBPContract public bpContract; bool public bpEnabled; bool public bpDisabledForever; constructor(string memory name, string memory symbol, uint256 initialSupply) ERC20(name, symbol) { _mint(_msgSender(), initialSupply); } function setBPContract(address addr) public onlyOwner { require(address(bpContract) == address(0), "WBond: can only be initialized once"); bpContract = IBPContract(addr); } function setBPEnabled(bool enabled) public onlyOwner { bpEnabled = enabled; } function setBPDisableForever() public onlyOwner { require(!bpDisabledForever, "WBond: bot protection disabled"); bpDisabledForever = true; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (bpEnabled && !bpDisabledForever) { bpContract.protect(from, to, amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpContract","outputs":[{"internalType":"contract IBPContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpDisabledForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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":"address","name":"addr","type":"address"}],"name":"setBPContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBPDisableForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setBPEnabled","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
60806040523480156200001157600080fd5b5060405162001514380380620015148339810160408190526200003491620003d8565b600080546001600160a01b03191633908117825560405185928592918291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200008e90600490602085019062000265565b508051620000a490600590602084019062000265565b505050620000c2620000bb620000cb60201b60201c565b82620000cf565b505050620004af565b3390565b6001600160a01b0382166200012a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200013860008383620001c5565b80600360008282546200014c91906200044b565b90915550506001600160a01b038216600090815260016020526040812080548392906200017b9084906200044b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600654600160a01b900460ff168015620001e95750600654600160a81b900460ff16155b156200026057600654604051637e2f3afd60e01b81526001600160a01b03858116600483015284811660248301526044820184905290911690637e2f3afd90606401600060405180830381600087803b1580156200024657600080fd5b505af11580156200025b573d6000803e3d6000fd5b505050505b505050565b828054620002739062000472565b90600052602060002090601f016020900481019282620002975760008555620002e2565b82601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b50620002f0929150620002f4565b5090565b5b80821115620002f05760008155600101620002f5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200033357600080fd5b81516001600160401b03808211156200035057620003506200030b565b604051601f8301601f19908116603f011681019082821181831017156200037b576200037b6200030b565b816040528381526020925086838588010111156200039857600080fd5b600091505b83821015620003bc57858201830151818301840152908201906200039d565b83821115620003ce5760008385830101525b9695505050505050565b600080600060608486031215620003ee57600080fd5b83516001600160401b03808211156200040657600080fd5b620004148783880162000321565b945060208601519150808211156200042b57600080fd5b506200043a8682870162000321565b925050604084015190509250925092565b600082198211156200046d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200048757607f821691505b60208210811415620004a957634e487b7160e01b600052602260045260246000fd5b50919050565b61105580620004bf6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d7146102a7578063a9059cbb146102ba578063af200252146102cd578063c17d2a06146102e0578063dd62ed3e146102e8578063f2fde38b1461032157600080fd5b8063715018a61461026057806378f745601461026857806379cc67901461027b5780638da5cb5b1461028e57806395d89b411461029f57600080fd5b8063313ce5671161010a578063313ce567146101c157806339509351146101d057806342966c68146101e35780634aaee112146101f857806359c002271461020c57806370a082311461023757600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a57806326898da9146101ad575b600080fd5b61014f610334565b60405161015c9190610e03565b60405180910390f35b610178610173366004610e74565b6103c6565b604051901515815260200161015c565b6003545b60405190815260200161015c565b6101786101a8366004610e9e565b6103dc565b60065461017890600160a01b900460ff1681565b6040516012815260200161015c565b6101786101de366004610e74565b610492565b6101f66101f1366004610eda565b6104c9565b005b60065461017890600160a81b900460ff1681565b60065461021f906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b61018c610245366004610ef3565b6001600160a01b031660009081526001602052604090205490565b6101f66104d6565b6101f6610276366004610ef3565b61054a565b6101f6610289366004610e74565b6105fb565b6000546001600160a01b031661021f565b61014f610683565b6101786102b5366004610e74565b610692565b6101786102c8366004610e74565b61072d565b6101f66102db366004610f15565b61073a565b6101f6610782565b61018c6102f6366004610f37565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f661032f366004610ef3565b61081b565b60606004805461034390610f6a565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90610f6a565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d3338484610905565b50600192915050565b60006103e9848484610a2a565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61048785336104828685610fbb565b610905565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103d3918590610482908690610fd2565b6104d33382610c0d565b50565b6000546001600160a01b031633146105005760405162461bcd60e51b815260040161046a90610fea565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105745760405162461bcd60e51b815260040161046a90610fea565b6006546001600160a01b0316156105d95760405162461bcd60e51b815260206004820152602360248201527f57426f6e643a2063616e206f6e6c7920626520696e697469616c697a6564206f6044820152626e636560e81b606482015260840161046a565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600061060783336102f6565b9050818110156106655760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161046a565b61067483336104828585610fbb565b61067e8383610c0d565b505050565b60606005805461034390610f6a565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161046a565b61072333856104828685610fbb565b5060019392505050565b60006103d3338484610a2a565b6000546001600160a01b031633146107645760405162461bcd60e51b815260040161046a90610fea565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146107ac5760405162461bcd60e51b815260040161046a90610fea565b600654600160a81b900460ff16156108065760405162461bcd60e51b815260206004820152601e60248201527f57426f6e643a20626f742070726f74656374696f6e2064697361626c65640000604482015260640161046a565b6006805460ff60a81b1916600160a81b179055565b6000546001600160a01b031633146108455760405162461bcd60e51b815260040161046a90610fea565b6001600160a01b0381166108aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046a565b6001600160a01b0382166109c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046a565b6001600160a01b038216610af05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046a565b610afb838383610d68565b6001600160a01b03831660009081526001602052604090205481811015610b735760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161046a565b610b7d8282610fbb565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610bb3908490610fd2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bff91815260200190565b60405180910390a350505050565b6001600160a01b038216610c6d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161046a565b610c7982600083610d68565b6001600160a01b03821660009081526001602052604090205481811015610ced5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161046a565b610cf78282610fbb565b6001600160a01b03841660009081526001602052604081209190915560038054849290610d25908490610fbb565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a1d565b600654600160a01b900460ff168015610d8b5750600654600160a81b900460ff16155b1561067e57600654604051637e2f3afd60e01b81526001600160a01b03858116600483015284811660248301526044820184905290911690637e2f3afd90606401600060405180830381600087803b158015610de657600080fd5b505af1158015610dfa573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015610e3057858101830151858201604001528201610e14565b81811115610e42576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610e6f57600080fd5b919050565b60008060408385031215610e8757600080fd5b610e9083610e58565b946020939093013593505050565b600080600060608486031215610eb357600080fd5b610ebc84610e58565b9250610eca60208501610e58565b9150604084013590509250925092565b600060208284031215610eec57600080fd5b5035919050565b600060208284031215610f0557600080fd5b610f0e82610e58565b9392505050565b600060208284031215610f2757600080fd5b81358015158114610f0e57600080fd5b60008060408385031215610f4a57600080fd5b610f5383610e58565b9150610f6160208401610e58565b90509250929050565b600181811c90821680610f7e57607f821691505b60208210811415610f9f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610fcd57610fcd610fa5565b500390565b60008219821115610fe557610fe5610fa5565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220373e8bed659755e185e6a9444d9d57885f9c137a92fc39214c7973c5aec3d5a464736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000e57617220426f6e6420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000557424f4e44000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d7146102a7578063a9059cbb146102ba578063af200252146102cd578063c17d2a06146102e0578063dd62ed3e146102e8578063f2fde38b1461032157600080fd5b8063715018a61461026057806378f745601461026857806379cc67901461027b5780638da5cb5b1461028e57806395d89b411461029f57600080fd5b8063313ce5671161010a578063313ce567146101c157806339509351146101d057806342966c68146101e35780634aaee112146101f857806359c002271461020c57806370a082311461023757600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a57806326898da9146101ad575b600080fd5b61014f610334565b60405161015c9190610e03565b60405180910390f35b610178610173366004610e74565b6103c6565b604051901515815260200161015c565b6003545b60405190815260200161015c565b6101786101a8366004610e9e565b6103dc565b60065461017890600160a01b900460ff1681565b6040516012815260200161015c565b6101786101de366004610e74565b610492565b6101f66101f1366004610eda565b6104c9565b005b60065461017890600160a81b900460ff1681565b60065461021f906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b61018c610245366004610ef3565b6001600160a01b031660009081526001602052604090205490565b6101f66104d6565b6101f6610276366004610ef3565b61054a565b6101f6610289366004610e74565b6105fb565b6000546001600160a01b031661021f565b61014f610683565b6101786102b5366004610e74565b610692565b6101786102c8366004610e74565b61072d565b6101f66102db366004610f15565b61073a565b6101f6610782565b61018c6102f6366004610f37565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f661032f366004610ef3565b61081b565b60606004805461034390610f6a565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90610f6a565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d3338484610905565b50600192915050565b60006103e9848484610a2a565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61048785336104828685610fbb565b610905565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103d3918590610482908690610fd2565b6104d33382610c0d565b50565b6000546001600160a01b031633146105005760405162461bcd60e51b815260040161046a90610fea565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105745760405162461bcd60e51b815260040161046a90610fea565b6006546001600160a01b0316156105d95760405162461bcd60e51b815260206004820152602360248201527f57426f6e643a2063616e206f6e6c7920626520696e697469616c697a6564206f6044820152626e636560e81b606482015260840161046a565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600061060783336102f6565b9050818110156106655760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161046a565b61067483336104828585610fbb565b61067e8383610c0d565b505050565b60606005805461034390610f6a565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161046a565b61072333856104828685610fbb565b5060019392505050565b60006103d3338484610a2a565b6000546001600160a01b031633146107645760405162461bcd60e51b815260040161046a90610fea565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146107ac5760405162461bcd60e51b815260040161046a90610fea565b600654600160a81b900460ff16156108065760405162461bcd60e51b815260206004820152601e60248201527f57426f6e643a20626f742070726f74656374696f6e2064697361626c65640000604482015260640161046a565b6006805460ff60a81b1916600160a81b179055565b6000546001600160a01b031633146108455760405162461bcd60e51b815260040161046a90610fea565b6001600160a01b0381166108aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046a565b6001600160a01b0382166109c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046a565b6001600160a01b038216610af05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046a565b610afb838383610d68565b6001600160a01b03831660009081526001602052604090205481811015610b735760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161046a565b610b7d8282610fbb565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610bb3908490610fd2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bff91815260200190565b60405180910390a350505050565b6001600160a01b038216610c6d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161046a565b610c7982600083610d68565b6001600160a01b03821660009081526001602052604090205481811015610ced5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161046a565b610cf78282610fbb565b6001600160a01b03841660009081526001602052604081209190915560038054849290610d25908490610fbb565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a1d565b600654600160a01b900460ff168015610d8b5750600654600160a81b900460ff16155b1561067e57600654604051637e2f3afd60e01b81526001600160a01b03858116600483015284811660248301526044820184905290911690637e2f3afd90606401600060405180830381600087803b158015610de657600080fd5b505af1158015610dfa573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015610e3057858101830151858201604001528201610e14565b81811115610e42576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610e6f57600080fd5b919050565b60008060408385031215610e8757600080fd5b610e9083610e58565b946020939093013593505050565b600080600060608486031215610eb357600080fd5b610ebc84610e58565b9250610eca60208501610e58565b9150604084013590509250925092565b600060208284031215610eec57600080fd5b5035919050565b600060208284031215610f0557600080fd5b610f0e82610e58565b9392505050565b600060208284031215610f2757600080fd5b81358015158114610f0e57600080fd5b60008060408385031215610f4a57600080fd5b610f5383610e58565b9150610f6160208401610e58565b90509250929050565b600181811c90821680610f7e57607f821691505b60208210811415610f9f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610fcd57610fcd610fa5565b500390565b60008219821115610fe557610fe5610fa5565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220373e8bed659755e185e6a9444d9d57885f9c137a92fc39214c7973c5aec3d5a464736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000e57617220426f6e6420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000557424f4e44000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): War Bond Token
Arg [1] : symbol (string): WBOND
Arg [2] : initialSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 57617220426f6e6420546f6b656e000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 57424f4e44000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
19226:1108:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8348:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8348:169:0;1053:187:1;7301:108:0;7389:12;;7301:108;;;1391:25:1;;;1379:2;1364:18;7301:108:0;1245:177:1;8999:422:0;;;;;;:::i;:::-;;:::i;19314:21::-;;;;;-1:-1:-1;;;19314:21:0;;;;;;7152:84;;;7226:2;1902:36:1;;1890:2;1875:18;7152:84:0;1760:184:1;9830:215:0;;;;;;:::i;:::-;;:::i;15598:91::-;;;;;;:::i;:::-;;:::i;:::-;;19342:29;;;;;-1:-1:-1;;;19342:29:0;;;;;;19276;;;;;-1:-1:-1;;;;;19276:29:0;;;;;;-1:-1:-1;;;;;2317:32:1;;;2299:51;;2287:2;2272:18;19276:29:0;2134:222:1;7472:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7573:18:0;7546:7;7573:18;;;:9;:18;;;;;;;7472:127;18237:148;;;:::i;19552:220::-;;;;;;:::i;:::-;;:::i;16008:332::-;;;;;;:::i;:::-;;:::i;17586:87::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;17586:87;;6418:95;;;:::i;10548:377::-;;;;;;:::i;:::-;;:::i;7812:175::-;;;;;;:::i;:::-;;:::i;19780:114::-;;;;;;:::i;:::-;;:::i;19902:188::-;;;:::i;8050:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8166:18:0;;;8139:7;8166:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8050:151;18540:244;;;;;;:::i;:::-;;:::i;6208:91::-;6253:13;6286:5;6279:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208:91;:::o;8348:169::-;8431:4;8448:39;808:10;8471:7;8480:6;8448:8;:39::i;:::-;-1:-1:-1;8505:4:0;8348:169;;;;:::o;8999:422::-;9105:4;9122:36;9132:6;9140:9;9151:6;9122:9;:36::i;:::-;-1:-1:-1;;;;;9198:19:0;;9171:24;9198:19;;;:11;:19;;;;;;;;808:10;9198:33;;;;;;;;9250:26;;;;9242:79;;;;-1:-1:-1;;;9242:79:0;;3890:2:1;9242:79:0;;;3872:21:1;3929:2;3909:18;;;3902:30;3968:34;3948:18;;;3941:62;-1:-1:-1;;;4019:18:1;;;4012:38;4067:19;;9242:79:0;;;;;;;;;9332:57;9341:6;808:10;9363:25;9382:6;9363:16;:25;:::i;:::-;9332:8;:57::i;:::-;-1:-1:-1;9409:4:0;;8999:422;-1:-1:-1;;;;8999:422:0:o;9830:215::-;808:10;9918:4;9967:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9967:34:0;;;;;;;;;;9918:4;;9935:80;;9958:7;;9967:47;;10004:10;;9967:47;:::i;15598:91::-;15654:27;808:10;15674:6;15654:5;:27::i;:::-;15598:91;:::o;18237:148::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;808:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;18344:1:::1;18328:6:::0;;18307:40:::1;::::0;-1:-1:-1;;;;;18328:6:0;;::::1;::::0;18307:40:::1;::::0;18344:1;;18307:40:::1;18375:1;18358:19:::0;;-1:-1:-1;;;;;;18358:19:0::1;::::0;;18237:148::o;19552:220::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;808:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;19656:10:::1;::::0;-1:-1:-1;;;;;19656:10:0::1;19648:33:::0;19640:81:::1;;;::::0;-1:-1:-1;;;19640:81:0;;5055:2:1;19640:81:0::1;::::0;::::1;5037:21:1::0;5094:2;5074:18;;;5067:30;5133:34;5113:18;;;5106:62;-1:-1:-1;;;5184:18:1;;;5177:33;5227:19;;19640:81:0::1;4853:399:1::0;19640:81:0::1;19734:10;:30:::0;;-1:-1:-1;;;;;;19734:30:0::1;-1:-1:-1::0;;;;;19734:30:0;;;::::1;::::0;;;::::1;::::0;;19552:220::o;16008:332::-;16085:24;16112:32;16122:7;808:10;8050:151;:::i;16112:32::-;16085:59;;16183:6;16163:16;:26;;16155:75;;;;-1:-1:-1;;;16155:75:0;;5459:2:1;16155:75:0;;;5441:21:1;5498:2;5478:18;;;5471:30;5537:34;5517:18;;;5510:62;-1:-1:-1;;;5588:18:1;;;5581:34;5632:19;;16155:75:0;5257:400:1;16155:75:0;16241:58;16250:7;808:10;16273:25;16292:6;16273:16;:25;:::i;16241:58::-;16310:22;16316:7;16325:6;16310:5;:22::i;:::-;16074:266;16008:332;;:::o;6418:95::-;6465:13;6498:7;6491:14;;;;;:::i;10548:377::-;808:10;10641:4;10685:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10685:34:0;;;;;;;;;;10738:35;;;;10730:85;;;;-1:-1:-1;;;10730:85:0;;5864:2:1;10730:85:0;;;5846:21:1;5903:2;5883:18;;;5876:30;5942:34;5922:18;;;5915:62;-1:-1:-1;;;5993:18:1;;;5986:35;6038:19;;10730:85:0;5662:401:1;10730:85:0;10826:67;808:10;10849:7;10858:34;10877:15;10858:16;:34;:::i;10826:67::-;-1:-1:-1;10913:4:0;;10548:377;-1:-1:-1;;;10548:377:0:o;7812:175::-;7898:4;7915:42;808:10;7939:9;7950:6;7915:9;:42::i;19780:114::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;808:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;19867:9:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;19867:19:0::1;-1:-1:-1::0;;;;19867:19:0;;::::1;::::0;;;::::1;::::0;;19780:114::o;19902:188::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;808:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;19993:17:::1;::::0;-1:-1:-1;;;19993:17:0;::::1;;;19992:18;19984:61;;;::::0;-1:-1:-1;;;19984:61:0;;6270:2:1;19984:61:0::1;::::0;::::1;6252:21:1::0;6309:2;6289:18;;;6282:30;6348:32;6328:18;;;6321:60;6398:18;;19984:61:0::1;6068:354:1::0;19984:61:0::1;20058:17;:24:::0;;-1:-1:-1;;;;20058:24:0::1;-1:-1:-1::0;;;20058:24:0::1;::::0;;19902:188::o;18540:244::-;17632:7;17659:6;-1:-1:-1;;;;;17659:6:0;808:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18629:22:0;::::1;18621:73;;;::::0;-1:-1:-1;;;18621:73:0;;6629:2:1;18621:73:0::1;::::0;::::1;6611:21:1::0;6668:2;6648:18;;;6641:30;6707:34;6687:18;;;6680:62;-1:-1:-1;;;6758:18:1;;;6751:36;6804:19;;18621:73:0::1;6427:402:1::0;18621:73:0::1;18731:6;::::0;;18710:38:::1;::::0;-1:-1:-1;;;;;18710:38:0;;::::1;::::0;18731:6;::::1;::::0;18710:38:::1;::::0;::::1;18759:6;:17:::0;;-1:-1:-1;;;;;;18759:17:0::1;-1:-1:-1::0;;;;;18759:17:0;;;::::1;::::0;;;::::1;::::0;;18540:244::o;13904:346::-;-1:-1:-1;;;;;14006:19:0;;13998:68;;;;-1:-1:-1;;;13998:68:0;;7036:2:1;13998:68:0;;;7018:21:1;7075:2;7055:18;;;7048:30;7114:34;7094:18;;;7087:62;-1:-1:-1;;;7165:18:1;;;7158:34;7209:19;;13998:68:0;6834:400:1;13998:68:0;-1:-1:-1;;;;;14085:21:0;;14077:68;;;;-1:-1:-1;;;14077:68:0;;7441:2:1;14077:68:0;;;7423:21:1;7480:2;7460:18;;;7453:30;7519:34;7499:18;;;7492:62;-1:-1:-1;;;7570:18:1;;;7563:32;7612:19;;14077:68:0;7239:398:1;14077:68:0;-1:-1:-1;;;;;14158:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14210:32;;1391:25:1;;;14210:32:0;;1364:18:1;14210:32:0;;;;;;;;13904:346;;;:::o;11415:604::-;-1:-1:-1;;;;;11521:20:0;;11513:70;;;;-1:-1:-1;;;11513:70:0;;7844:2:1;11513:70:0;;;7826:21:1;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:35;8018:19;;11513:70:0;7642:401:1;11513:70:0;-1:-1:-1;;;;;11602:23:0;;11594:71;;;;-1:-1:-1;;;11594:71:0;;8250:2:1;11594:71:0;;;8232:21:1;8289:2;8269:18;;;8262:30;8328:34;8308:18;;;8301:62;-1:-1:-1;;;8379:18:1;;;8372:33;8422:19;;11594:71:0;8048:399:1;11594:71:0;11678:47;11699:6;11707:9;11718:6;11678:20;:47::i;:::-;-1:-1:-1;;;;;11762:17:0;;11738:21;11762:17;;;:9;:17;;;;;;11798:23;;;;11790:74;;;;-1:-1:-1;;;11790:74:0;;8654:2:1;11790:74:0;;;8636:21:1;8693:2;8673:18;;;8666:30;8732:34;8712:18;;;8705:62;-1:-1:-1;;;8783:18:1;;;8776:36;8829:19;;11790:74:0;8452:402:1;11790:74:0;11895:22;11911:6;11895:13;:22;:::i;:::-;-1:-1:-1;;;;;11875:17:0;;;;;;;:9;:17;;;;;;:42;;;;11928:20;;;;;;;;:30;;11952:6;;11875:17;11928:30;;11952:6;;11928:30;:::i;:::-;;;;;;;;11993:9;-1:-1:-1;;;;;11976:35:0;11985:6;-1:-1:-1;;;;;11976:35:0;;12004:6;11976:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;11976:35:0;;;;;;;;11502:517;11415:604;;;:::o;12972:494::-;-1:-1:-1;;;;;13056:21:0;;13048:67;;;;-1:-1:-1;;;13048:67:0;;9061:2:1;13048:67:0;;;9043:21:1;9100:2;9080:18;;;9073:30;9139:34;9119:18;;;9112:62;-1:-1:-1;;;9190:18:1;;;9183:31;9231:19;;13048:67:0;8859:397:1;13048:67:0;13128:49;13149:7;13166:1;13170:6;13128:20;:49::i;:::-;-1:-1:-1;;;;;13215:18:0;;13190:22;13215:18;;;:9;:18;;;;;;13252:24;;;;13244:71;;;;-1:-1:-1;;;13244:71:0;;9463:2:1;13244:71:0;;;9445:21:1;9502:2;9482:18;;;9475:30;9541:34;9521:18;;;9514:62;-1:-1:-1;;;9592:18:1;;;9585:32;9634:19;;13244:71:0;9261:398:1;13244:71:0;13347:23;13364:6;13347:14;:23;:::i;:::-;-1:-1:-1;;;;;13326:18:0;;;;;;:9;:18;;;;;:44;;;;13381:12;:22;;13397:6;;13326:18;13381:22;;13397:6;;13381:22;:::i;:::-;;;;-1:-1:-1;;13421:37:0;;1391:25:1;;;13447:1:0;;-1:-1:-1;;;;;13421:37:0;;;;;1379:2:1;1364:18;13421:37:0;1245:177:1;20098:231:0;20226:9;;-1:-1:-1;;;20226:9:0;;;;:31;;;;-1:-1:-1;20240:17:0;;-1:-1:-1;;;20240:17:0;;;;20239:18;20226:31;20222:100;;;20274:10;;:36;;-1:-1:-1;;;20274:36:0;;-1:-1:-1;;;;;9922:15:1;;;20274:36:0;;;9904:34:1;9974:15;;;9954:18;;;9947:43;10006:18;;;9999:34;;;20274:10:0;;;;:18;;9839::1;;20274:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20098:231;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2361:186::-;2420:6;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;2361:186;-1:-1:-1;;;2361:186:1:o;2760:273::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2977:5;2970:13;2963:21;2956:5;2953:32;2943:60;;2999:1;2996;2989:12;3038:260;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3206:29;3225:9;3206:29;:::i;:::-;3196:39;;3254:38;3288:2;3277:9;3273:18;3254:38;:::i;:::-;3244:48;;3038:260;;;;;:::o;3303:380::-;3382:1;3378:12;;;;3425;;;3446:61;;3500:4;3492:6;3488:17;3478:27;;3446:61;3553:2;3545:6;3542:14;3522:18;3519:38;3516:161;;;3599:10;3594:3;3590:20;3587:1;3580:31;3634:4;3631:1;3624:15;3662:4;3659:1;3652:15;3516:161;;3303:380;;;:::o;4097:127::-;4158:10;4153:3;4149:20;4146:1;4139:31;4189:4;4186:1;4179:15;4213:4;4210:1;4203:15;4229:125;4269:4;4297:1;4294;4291:8;4288:34;;;4302:18;;:::i;:::-;-1:-1:-1;4339:9:1;;4229:125::o;4359:128::-;4399:3;4430:1;4426:6;4423:1;4420:13;4417:39;;;4436:18;;:::i;:::-;-1:-1:-1;4472:9:1;;4359:128::o;4492:356::-;4694:2;4676:21;;;4713:18;;;4706:30;4772:34;4767:2;4752:18;;4745:62;4839:2;4824:18;;4492:356::o
Swarm Source
ipfs://373e8bed659755e185e6a9444d9d57885f9c137a92fc39214c7973c5aec3d5a4
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.