ERC-20
Overview
Max Total Supply
668,168.931365740752740739 DRACO
Holders
12
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
600 DRACOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Draco
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-15 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Draco.sol //SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; contract Draco is ERC20, ERC20Burnable, Ownable { mapping(address => bool) controllers; constructor() ERC20("Draco", "DRACO") { _mint(msg.sender, 12000000); } function mint(address to, uint256 amount) external { require(controllers[msg.sender], "Only controllers can mint"); _mint(to, amount); } function burnFrom(address account, uint256 amount) public override { if (controllers[msg.sender]) { _burn(account, amount); } else { super.burnFrom(account, amount); } } function addController(address controller) external onlyOwner { controllers[controller] = true; } function removeController(address controller) external onlyOwner { controllers[controller] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"controller","type":"address"}],"name":"addController","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":[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806005815260200164447261636f60d81b81525060405180604001604052806005815260200164445241434f60d81b815250816003908051906020019062000066929190620001ec565b5080516200007c906004906020840190620001ec565b5050506200009962000093620000ae60201b60201c565b620000b2565b620000a83362b71b0062000104565b620002f4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200015f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000173919062000292565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a290849062000292565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001fa90620002b7565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b60008219821115620002b257634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620002cc57607f821691505b60208210811415620002ee57634e487b7160e01b600052602260045260246000fd5b50919050565b610e9680620003046000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a7fc7a0711610071578063a7fc7a0714610250578063a9059cbb14610263578063dd62ed3e14610276578063f2fde38b14610289578063f6a74ed71461029c57600080fd5b8063715018a6146101ff57806379cc6790146102075780638da5cb5b1461021a57806395d89b4114610235578063a457c2d71461023d57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806340c10f19146101ae57806342966c68146101c357806370a08231146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102af565b60405161013b9190610d58565b60405180910390f35b610157610152366004610d17565b610341565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610cdc565b610359565b6040516012815260200161013b565b6101576101a9366004610d17565b61037d565b6101c16101bc366004610d17565b61039f565b005b6101c16101d1366004610d40565b610411565b61016b6101e4366004610c89565b6001600160a01b031660009081526020819052604090205490565b6101c161041e565b6101c1610215366004610d17565b610454565b6005546040516001600160a01b03909116815260200161013b565b61012e610480565b61015761024b366004610d17565b61048f565b6101c161025e366004610c89565b61050a565b610157610271366004610d17565b610558565b61016b610284366004610caa565b610566565b6101c1610297366004610c89565b610591565b6101c16102aa366004610c89565b610629565b6060600380546102be90610e0f565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e0f565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b5050505050905090565b60003361034f818585610674565b5060019392505050565b600033610367858285610799565b610372858585610813565b506001949350505050565b60003361034f8185856103908383610566565b61039a9190610de0565b610674565b3360009081526006602052604090205460ff166104035760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b61040d82826109e1565b5050565b61041b3382610ac0565b50565b6005546001600160a01b031633146104485760405162461bcd60e51b81526004016103fa90610dab565b6104526000610c06565b565b3360009081526006602052604090205460ff16156104765761040d8282610ac0565b61040d8282610c58565b6060600480546102be90610e0f565b6000338161049d8286610566565b9050838110156104fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fa565b6103728286868403610674565b6005546001600160a01b031633146105345760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60003361034f818585610813565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105bb5760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b0381166106205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fa565b61041b81610c06565b6005546001600160a01b031633146106535760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b0383166106d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fa565b6001600160a01b0382166107375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107a58484610566565b9050600019811461080d57818110156108005760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fa565b61080d8484848403610674565b50505050565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fa565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fa565b6001600160a01b038316600090815260208190526040902054818110156109515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610988908490610de0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109d491815260200190565b60405180910390a361080d565b6001600160a01b038216610a375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fa565b8060026000828254610a499190610de0565b90915550506001600160a01b03821660009081526020819052604081208054839290610a76908490610de0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610b205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fa565b6001600160a01b03821660009081526020819052604090205481811015610b945760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fa565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610bc3908490610df8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c63823383610799565b61040d8282610ac0565b80356001600160a01b0381168114610c8457600080fd5b919050565b600060208284031215610c9a578081fd5b610ca382610c6d565b9392505050565b60008060408385031215610cbc578081fd5b610cc583610c6d565b9150610cd360208401610c6d565b90509250929050565b600080600060608486031215610cf0578081fd5b610cf984610c6d565b9250610d0760208501610c6d565b9150604084013590509250925092565b60008060408385031215610d29578182fd5b610d3283610c6d565b946020939093013593505050565b600060208284031215610d51578081fd5b5035919050565b6000602080835283518082850152825b81811015610d8457858101830151858201604001528201610d68565b81811115610d955783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610df357610df3610e4a565b500190565b600082821015610e0a57610e0a610e4a565b500390565b600181811c90821680610e2357607f821691505b60208210811415610e4457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200330120b9713c2a07d4dde552c3c752ff04203dc46d857e95c1475a7d756e68964736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a7fc7a0711610071578063a7fc7a0714610250578063a9059cbb14610263578063dd62ed3e14610276578063f2fde38b14610289578063f6a74ed71461029c57600080fd5b8063715018a6146101ff57806379cc6790146102075780638da5cb5b1461021a57806395d89b4114610235578063a457c2d71461023d57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806340c10f19146101ae57806342966c68146101c357806370a08231146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102af565b60405161013b9190610d58565b60405180910390f35b610157610152366004610d17565b610341565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610cdc565b610359565b6040516012815260200161013b565b6101576101a9366004610d17565b61037d565b6101c16101bc366004610d17565b61039f565b005b6101c16101d1366004610d40565b610411565b61016b6101e4366004610c89565b6001600160a01b031660009081526020819052604090205490565b6101c161041e565b6101c1610215366004610d17565b610454565b6005546040516001600160a01b03909116815260200161013b565b61012e610480565b61015761024b366004610d17565b61048f565b6101c161025e366004610c89565b61050a565b610157610271366004610d17565b610558565b61016b610284366004610caa565b610566565b6101c1610297366004610c89565b610591565b6101c16102aa366004610c89565b610629565b6060600380546102be90610e0f565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e0f565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b5050505050905090565b60003361034f818585610674565b5060019392505050565b600033610367858285610799565b610372858585610813565b506001949350505050565b60003361034f8185856103908383610566565b61039a9190610de0565b610674565b3360009081526006602052604090205460ff166104035760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b61040d82826109e1565b5050565b61041b3382610ac0565b50565b6005546001600160a01b031633146104485760405162461bcd60e51b81526004016103fa90610dab565b6104526000610c06565b565b3360009081526006602052604090205460ff16156104765761040d8282610ac0565b61040d8282610c58565b6060600480546102be90610e0f565b6000338161049d8286610566565b9050838110156104fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fa565b6103728286868403610674565b6005546001600160a01b031633146105345760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60003361034f818585610813565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105bb5760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b0381166106205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fa565b61041b81610c06565b6005546001600160a01b031633146106535760405162461bcd60e51b81526004016103fa90610dab565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b0383166106d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fa565b6001600160a01b0382166107375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107a58484610566565b9050600019811461080d57818110156108005760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fa565b61080d8484848403610674565b50505050565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fa565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fa565b6001600160a01b038316600090815260208190526040902054818110156109515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610988908490610de0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109d491815260200190565b60405180910390a361080d565b6001600160a01b038216610a375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fa565b8060026000828254610a499190610de0565b90915550506001600160a01b03821660009081526020819052604081208054839290610a76908490610de0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610b205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fa565b6001600160a01b03821660009081526020819052604090205481811015610b945760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fa565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610bc3908490610df8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c63823383610799565b61040d8282610ac0565b80356001600160a01b0381168114610c8457600080fd5b919050565b600060208284031215610c9a578081fd5b610ca382610c6d565b9392505050565b60008060408385031215610cbc578081fd5b610cc583610c6d565b9150610cd360208401610c6d565b90509250929050565b600080600060608486031215610cf0578081fd5b610cf984610c6d565b9250610d0760208501610c6d565b9150604084013590509250925092565b60008060408385031215610d29578182fd5b610d3283610c6d565b946020939093013593505050565b600060208284031215610d51578081fd5b5035919050565b6000602080835283518082850152825b81811015610d8457858101830151858201604001528201610d68565b81811115610d955783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610df357610df3610e4a565b500190565b600082821015610e0a57610e0a610e4a565b500390565b600181811c90821680610e2357607f821691505b60208210811415610e4457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200330120b9713c2a07d4dde552c3c752ff04203dc46d857e95c1475a7d756e68964736f6c63430008040033
Deployed Bytecode Sourcemap
21247:793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9004:201;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;9004:201:0;1778:92:1;7773:108:0;7861:12;;7773:108;;;7705:25:1;;;7693:2;7678:18;7773:108:0;7660:76:1;9785:295:0;;;;;;:::i;:::-;;:::i;7615:93::-;;;7698:2;7883:36:1;;7871:2;7856:18;7615:93:0;7838:87:1;10489:238:0;;;;;;:::i;:::-;;:::i;21434:149::-;;;;;;:::i;:::-;;:::i;:::-;;18031:91;;;;;;:::i;:::-;;:::i;7944:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8045:18:0;8018:7;8045:18;;;;;;;;;;;;7944:127;20325:103;;;:::i;21589:222::-;;;;;;:::i;:::-;;:::i;19674:87::-;19747:6;;19674:87;;-1:-1:-1;;;;;19747:6:0;;;1621:51:1;;1609:2;1594:18;19674:87:0;1576:102:1;6872:104:0;;;:::i;11230:436::-;;;;;;:::i;:::-;;:::i;21817:105::-;;;;;;:::i;:::-;;:::i;8277:193::-;;;;;;:::i;:::-;;:::i;8533:151::-;;;;;;:::i;:::-;;:::i;20583:201::-;;;;;;:::i;:::-;;:::i;21928:109::-;;;;;;:::i;:::-;;:::i;6653:100::-;6707:13;6740:5;6733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:100;:::o;9004:201::-;9087:4;4373:10;9143:32;4373:10;9159:7;9168:6;9143:8;:32::i;:::-;-1:-1:-1;9193:4:0;;9004:201;-1:-1:-1;;;9004:201:0:o;9785:295::-;9916:4;4373:10;9974:38;9990:4;4373:10;10005:6;9974:15;:38::i;:::-;10023:27;10033:4;10039:2;10043:6;10023:9;:27::i;:::-;-1:-1:-1;10068:4:0;;9785:295;-1:-1:-1;;;;9785:295:0:o;10489:238::-;10577:4;4373:10;10633:64;4373:10;10649:7;10686:10;10658:25;4373:10;10649:7;10658:9;:25::i;:::-;:38;;;;:::i;:::-;10633:8;:64::i;21434:149::-;21512:10;21500:23;;;;:11;:23;;;;;;;;21492:61;;;;-1:-1:-1;;;21492:61:0;;5067:2:1;21492:61:0;;;5049:21:1;5106:2;5086:18;;;5079:30;5145:27;5125:18;;;5118:55;5190:18;;21492:61:0;;;;;;;;;21560:17;21566:2;21570:6;21560:5;:17::i;:::-;21434:149;;:::o;18031:91::-;18087:27;4373:10;18107:6;18087:5;:27::i;:::-;18031:91;:::o;20325:103::-;19747:6;;-1:-1:-1;;;;;19747:6:0;4373:10;19894:23;19886:68;;;;-1:-1:-1;;;19886:68:0;;;;;;;:::i;:::-;20390:30:::1;20417:1;20390:18;:30::i;:::-;20325:103::o:0;21589:222::-;21681:10;21669:23;;;;:11;:23;;;;;;;;21665:141;;;21707:22;21713:7;21722:6;21707:5;:22::i;21665:141::-;21765:31;21780:7;21789:6;21765:14;:31::i;6872:104::-;6928:13;6961:7;6954:14;;;;;:::i;11230:436::-;11323:4;4373:10;11323:4;11406:25;4373:10;11423:7;11406:9;:25::i;:::-;11379:52;;11470:15;11450:16;:35;;11442:85;;;;-1:-1:-1;;;11442:85:0;;6995:2:1;11442:85:0;;;6977:21:1;7034:2;7014:18;;;7007:30;7073:34;7053:18;;;7046:62;-1:-1:-1;;;7124:18:1;;;7117:35;7169:19;;11442:85:0;6967:227:1;11442:85:0;11563:60;11572:5;11579:7;11607:15;11588:16;:34;11563:8;:60::i;21817:105::-;19747:6;;-1:-1:-1;;;;;19747:6:0;4373:10;19894:23;19886:68;;;;-1:-1:-1;;;19886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21886:23:0::1;;::::0;;;:11:::1;:23;::::0;;;;:30;;-1:-1:-1;;21886:30:0::1;21912:4;21886:30;::::0;;21817:105::o;8277:193::-;8356:4;4373:10;8412:28;4373:10;8429:2;8433:6;8412:9;:28::i;8533:151::-;-1:-1:-1;;;;;8649:18:0;;;8622:7;8649:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8533:151::o;20583:201::-;19747:6;;-1:-1:-1;;;;;19747:6:0;4373:10;19894:23;19886:68;;;;-1:-1:-1;;;19886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20672:22:0;::::1;20664:73;;;::::0;-1:-1:-1;;;20664:73:0;;3492:2:1;20664:73:0::1;::::0;::::1;3474:21:1::0;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:36;3667:19;;20664:73:0::1;3464:228:1::0;20664:73:0::1;20748:28;20767:8;20748:18;:28::i;21928:109::-:0;19747:6;;-1:-1:-1;;;;;19747:6:0;4373:10;19894:23;19886:68;;;;-1:-1:-1;;;19886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22000:23:0::1;22026:5;22000:23:::0;;;:11:::1;:23;::::0;;;;:31;;-1:-1:-1;;22000:31:0::1;::::0;;21928:109::o;14864:380::-;-1:-1:-1;;;;;15000:19:0;;14992:68;;;;-1:-1:-1;;;14992:68:0;;6590:2:1;14992:68:0;;;6572:21:1;6629:2;6609:18;;;6602:30;6668:34;6648:18;;;6641:62;-1:-1:-1;;;6719:18:1;;;6712:34;6763:19;;14992:68:0;6562:226:1;14992:68:0;-1:-1:-1;;;;;15079:21:0;;15071:68;;;;-1:-1:-1;;;15071:68:0;;3899:2:1;15071:68:0;;;3881:21:1;3938:2;3918:18;;;3911:30;3977:34;3957:18;;;3950:62;-1:-1:-1;;;4028:18:1;;;4021:32;4070:19;;15071:68:0;3871:224:1;15071:68:0;-1:-1:-1;;;;;15152:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15204:32;;7705:25:1;;;15204:32:0;;7678:18:1;15204:32:0;;;;;;;;14864:380;;;:::o;15535:453::-;15670:24;15697:25;15707:5;15714:7;15697:9;:25::i;:::-;15670:52;;-1:-1:-1;;15737:16:0;:37;15733:248;;15819:6;15799:16;:26;;15791:68;;;;-1:-1:-1;;;15791:68:0;;4302:2:1;15791:68:0;;;4284:21:1;4341:2;4321:18;;;4314:30;4380:31;4360:18;;;4353:59;4429:18;;15791:68:0;4274:179:1;15791:68:0;15903:51;15912:5;15919:7;15947:6;15928:16;:25;15903:8;:51::i;:::-;15535:453;;;;:::o;12145:671::-;-1:-1:-1;;;;;12276:18:0;;12268:68;;;;-1:-1:-1;;;12268:68:0;;6184:2:1;12268:68:0;;;6166:21:1;6223:2;6203:18;;;6196:30;6262:34;6242:18;;;6235:62;-1:-1:-1;;;6313:18:1;;;6306:35;6358:19;;12268:68:0;6156:227:1;12268:68:0;-1:-1:-1;;;;;12355:16:0;;12347:64;;;;-1:-1:-1;;;12347:64:0;;2685:2:1;12347:64:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;12347:64:0;2657:225:1;12347:64:0;-1:-1:-1;;;;;12497:15:0;;12475:19;12497:15;;;;;;;;;;;12531:21;;;;12523:72;;;;-1:-1:-1;;;12523:72:0;;4660:2:1;12523:72:0;;;4642:21:1;4699:2;4679:18;;;4672:30;4738:34;4718:18;;;4711:62;-1:-1:-1;;;4789:18:1;;;4782:36;4835:19;;12523:72:0;4632:228:1;12523:72:0;-1:-1:-1;;;;;12631:15:0;;;:9;:15;;;;;;;;;;;12649:20;;;12631:38;;12691:13;;;;;;;;:23;;12663:6;;12631:9;12691:23;;12663:6;;12691:23;:::i;:::-;;;;;;;;12747:2;-1:-1:-1;;;;;12732:26:0;12741:4;-1:-1:-1;;;;;12732:26:0;;12751:6;12732:26;;;;7705:25:1;;7693:2;7678:18;;7660:76;12732:26:0;;;;;;;;12771:37;13835:591;13103:399;-1:-1:-1;;;;;13187:21:0;;13179:65;;;;-1:-1:-1;;;13179:65:0;;7401:2:1;13179:65:0;;;7383:21:1;7440:2;7420:18;;;7413:30;7479:33;7459:18;;;7452:61;7530:18;;13179:65:0;7373:181:1;13179:65:0;13335:6;13319:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13352:18:0;;:9;:18;;;;;;;;;;:28;;13374:6;;13352:9;:28;;13374:6;;13352:28;:::i;:::-;;;;-1:-1:-1;;13396:37:0;;7705:25:1;;;-1:-1:-1;;;;;13396:37:0;;;13413:1;;13396:37;;7693:2:1;7678:18;13396:37:0;;;;;;;21434:149;;:::o;13835:591::-;-1:-1:-1;;;;;13919:21:0;;13911:67;;;;-1:-1:-1;;;13911:67:0;;5782:2:1;13911:67:0;;;5764:21:1;5821:2;5801:18;;;5794:30;5860:34;5840:18;;;5833:62;-1:-1:-1;;;5911:18:1;;;5904:31;5952:19;;13911:67:0;5754:223:1;13911:67:0;-1:-1:-1;;;;;14078:18:0;;14053:22;14078:18;;;;;;;;;;;14115:24;;;;14107:71;;;;-1:-1:-1;;;14107:71:0;;3089:2:1;14107:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;14107:71:0;3061:224:1;14107:71:0;-1:-1:-1;;;;;14214:18:0;;:9;:18;;;;;;;;;;14235:23;;;14214:44;;14280:12;:22;;14252:6;;14214:9;14280:22;;14252:6;;14280:22;:::i;:::-;;;;-1:-1:-1;;14320:37:0;;7705:25:1;;;14346:1:0;;-1:-1:-1;;;;;14320:37:0;;;;;7693:2:1;7678:18;14320:37:0;7660:76:1;20944:191:0;21037:6;;;-1:-1:-1;;;;;21054:17:0;;;-1:-1:-1;;;;;;21054:17:0;;;;;;;21087:40;;21037:6;;;21054:17;21037:6;;21087:40;;21018:16;;21087:40;20944:191;;:::o;18441:164::-;18518:46;18534:7;4373:10;18557:6;18518:15;:46::i;:::-;18575:22;18581:7;18590:6;18575:5;:22::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;5219:356::-;5421:2;5403:21;;;5440:18;;;5433:30;5499:34;5494:2;5479:18;;5472:62;5566:2;5551:18;;5393:182::o;7930:128::-;7970:3;8001:1;7997:6;7994:1;7991:13;7988:2;;;8007:18;;:::i;:::-;-1:-1:-1;8043:9:1;;7978:80::o;8063:125::-;8103:4;8131:1;8128;8125:8;8122:2;;;8136:18;;:::i;:::-;-1:-1:-1;8173:9:1;;8112:76::o;8193:380::-;8272:1;8268:12;;;;8315;;;8336:2;;8390:4;8382:6;8378:17;8368:27;;8336:2;8443;8435:6;8432:14;8412:18;8409:38;8406:2;;;8489:10;8484:3;8480:20;8477:1;8470:31;8524:4;8521:1;8514:15;8552:4;8549:1;8542:15;8406:2;;8248:325;;;:::o;8578:127::-;8639:10;8634:3;8630:20;8627:1;8620:31;8670:4;8667:1;8660:15;8694:4;8691:1;8684:15
Swarm Source
ipfs://0330120b9713c2a07d4dde552c3c752ff04203dc46d857e95c1475a7d756e689
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.