ERC-20
Overview
Max Total Supply
498,446.221999999999899992 ROBOTNIK
Holders
49
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
27,801.869626357326299185 ROBOTNIKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DrEggmanToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-07 */ // Sources flattened with hardhat v2.22.17 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/DrEggmanToken.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract DrEggmanToken is ERC20, Ownable { constructor() ERC20("Dr. Eggman", "ROBOTNIK") { _mint(msg.sender, 1000000 * 10 ** decimals()); } // --- Standard functionality --- function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function burn(uint256 amount) public { _burn(msg.sender, amount); } // --- Evil functions --- function laser() public pure returns (string memory) { return "Pew Pew!"; } function evilLaugh() public pure returns (string memory) { return "Mwahaha! Fear the genius of Dr. Eggman!"; } function whatIsThePlan() public pure returns (string memory) { return "Step 1: Build robots. Step 2: Capture animals. Step 3: Rule the world!"; } function callMinions() public pure returns (string memory) { return "Badniks, assemble!"; } function tauntSonic() public pure returns (string memory) { return "You'll never catch me this time, hedgehog!"; } function selfDestructWarning() public pure returns (string memory) { return "Warning: Initiating self-destruct sequence... Just kidding!"; } function eggThemeSong() public pure returns (string memory) { return "I am the Eggman, that's what I am! I am the Eggman, I've got the master plan!"; } function robotUpgrade() public pure returns (string memory) { return "Robots upgraded to version 2.0. Sonic won't stand a chance!"; } function eggCatchphrase() public pure returns (string memory) { return "Bow before the might of Eggman Empire!"; } function battleCry() public pure returns (string memory) { return "Charge! For science, and the Eggman Empire!"; } function mockSonicSpeed() public pure returns (string memory) { return "Sonic? Fast? Ha! My machines will outrun him this time!"; } function captureAnimals() public pure returns (string memory) { return "Another forest cleared! More animals for my army!"; } function chaosEmeraldHunt() public pure returns (string memory) { return "Only one Chaos Emerald left... Then ultimate power will be mine!"; } function buildDeathEgg() public pure returns (string memory) { return "Construction of the Death Egg is at 95%. Soon, it will be unstoppable!"; } function teamDarkSupport() public pure returns (string memory) { return "Shadow knows the truth... Join me, and we can defeat Sonic together!"; } function ringCollector() public pure returns (string memory) { return "Why does Sonic need so many rings anyway? I'll take them for science!"; } function eggMobileStatus() public pure returns (string memory) { return "Egg Mobile fully operational. Sonic stands no chance!"; } function robotArmyCount() public pure returns (uint256) { return 1000000; // A massive fake army } function destroyGreenHill() public pure returns (string memory) { return "Green Hill Zone will be no more! My empire will rise in its place!"; } }
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":"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":"battleCry","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"buildDeathEgg","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callMinions","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"captureAnimals","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"chaosEmeraldHunt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"name":"destroyGreenHill","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"eggCatchphrase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"eggMobileStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"eggThemeSong","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"evilLaugh","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"laser","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mockSonicSpeed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"name":"ringCollector","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"robotArmyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"robotUpgrade","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"selfDestructWarning","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tauntSonic","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"teamDarkSupport","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whatIsThePlan","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f44722e204567676d616e000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f524f424f544e494b00000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000366565b508060049080519060200190620000af92919062000366565b505050620000d2620000c66200011760201b60201c565b6200011f60201b60201c565b6200011133620000e7620001e560201b60201c565b600a620000f5919062000571565b620f4240620001059190620006ae565b620001ee60201b60201c565b620007c7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002589062000469565b60405180910390fd5b62000275600083836200035c60201b60201c565b8060026000828254620002899190620004b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c91906200048b565b60405180910390a362000358600083836200036160201b60201c565b5050565b505050565b505050565b828054620003749062000726565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b600062000425601f83620004a8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000463816200070f565b82525050565b60006020820190508181036000830152620004848162000416565b9050919050565b6000602082019050620004a2600083018462000458565b92915050565b600082825260208201905092915050565b6000620004c6826200070f565b9150620004d3836200070f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200050b576200050a6200075c565b5b828201905092915050565b6000808291508390505b6001851115620005685780860481111562000540576200053f6200075c565b5b6001851615620005505780820291505b80810290506200056085620007ba565b945062000520565b94509492505050565b60006200057e826200070f565b91506200058b8362000719565b9250620005ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005c2565b905092915050565b600082620005d45760019050620006a7565b81620005e45760009050620006a7565b8160018114620005fd576002811462000608576200063e565b6001915050620006a7565b60ff8411156200061d576200061c6200075c565b5b8360020a9150848211156200063757620006366200075c565b5b50620006a7565b5060208310610133831016604e8410600b8410161715620006785782820a9050838111156200067257620006716200075c565b5b620006a7565b62000687848484600162000516565b92509050818404811115620006a157620006a06200075c565b5b81810290505b9392505050565b6000620006bb826200070f565b9150620006c8836200070f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070457620007036200075c565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200073f57607f821691505b602082108114156200075657620007556200078b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b61242580620007d76000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063cb7235ca116100ad578063e00ab8eb1161007c578063e00ab8eb14610600578063f29832451461061e578063f2fde38b1461063c578063fb0134c114610658578063ff3e1dd71461067657610211565b8063cb7235ca14610576578063cf90eaa014610594578063daedfe06146105b2578063dd62ed3e146105d057610211565b8063a9059cbb116100f4578063a9059cbb146104ce578063b39630b9146104fe578063bb68f2741461051c578063c288d4481461053a578063c5054c6c1461055857610211565b8063715018a6146104585780638da5cb5b1461046257806395d89b4114610480578063a457c2d71461049e57610211565b80632c7dfdbd116101a857806340c10f191161017757806340c10f19146103b457806342966c68146103d0578063494a1ab8146103ec57806370a082311461040a57806370ea76091461043a57610211565b80632c7dfdbd1461032a5780632f8a5dad14610348578063313ce56714610366578063395093511461038457610211565b80631c1e82c8116101e45780631c1e82c8146102a05780631f4cdc19146102be57806323b872dd146102dc5780632a994a651461030c57610211565b806306fdde0314610216578063095ea7b31461023457806318160ddd146102645780631844899014610282575b600080fd5b61021e610694565b60405161022b9190611cb5565b60405180910390f35b61024e6004803603810190610249919061174f565b610726565b60405161025b9190611c9a565b60405180910390f35b61026c610749565b6040516102799190611e57565b60405180910390f35b61028a610753565b6040516102979190611e57565b60405180910390f35b6102a861075e565b6040516102b59190611cb5565b60405180910390f35b6102c661079b565b6040516102d39190611cb5565b60405180910390f35b6102f660048036038101906102f19190611700565b6107bb565b6040516103039190611c9a565b60405180910390f35b6103146107ea565b6040516103219190611cb5565b60405180910390f35b61033261080a565b60405161033f9190611cb5565b60405180910390f35b61035061082a565b60405161035d9190611cb5565b60405180910390f35b61036e61084a565b60405161037b9190611e72565b60405180910390f35b61039e6004803603810190610399919061174f565b610853565b6040516103ab9190611c9a565b60405180910390f35b6103ce60048036038101906103c9919061174f565b61088a565b005b6103ea60048036038101906103e5919061178b565b6108a0565b005b6103f46108ad565b6040516104019190611cb5565b60405180910390f35b610424600480360381019061041f919061169b565b6108cd565b6040516104319190611e57565b60405180910390f35b610442610915565b60405161044f9190611cb5565b60405180910390f35b610460610935565b005b61046a610949565b6040516104779190611c7f565b60405180910390f35b610488610973565b6040516104959190611cb5565b60405180910390f35b6104b860048036038101906104b3919061174f565b610a05565b6040516104c59190611c9a565b60405180910390f35b6104e860048036038101906104e3919061174f565b610a7c565b6040516104f59190611c9a565b60405180910390f35b610506610a9f565b6040516105139190611cb5565b60405180910390f35b610524610abf565b6040516105319190611cb5565b60405180910390f35b610542610adf565b60405161054f9190611cb5565b60405180910390f35b610560610aff565b60405161056d9190611cb5565b60405180910390f35b61057e610b1f565b60405161058b9190611cb5565b60405180910390f35b61059c610b3f565b6040516105a99190611cb5565b60405180910390f35b6105ba610b5f565b6040516105c79190611cb5565b60405180910390f35b6105ea60048036038101906105e591906116c4565b610b7f565b6040516105f79190611e57565b60405180910390f35b610608610c06565b6040516106159190611cb5565b60405180910390f35b610626610c26565b6040516106339190611cb5565b60405180910390f35b6106566004803603810190610651919061169b565b610c46565b005b610660610cca565b60405161066d9190611cb5565b60405180910390f35b61067e610cea565b60405161068b9190611cb5565b60405180910390f35b6060600380546106a390611f87565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90611f87565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b5050505050905090565b600080610731610d27565b905061073e818585610d2f565b600191505092915050565b6000600254905090565b6000620f4240905090565b60606040518060400160405280600881526020017f5065772050657721000000000000000000000000000000000000000000000000815250905090565b60606040518060600160405280603b81526020016122bd603b9139905090565b6000806107c6610d27565b90506107d3858285610efa565b6107de858585610f86565b60019150509392505050565b606060405180608001604052806046815260200161227760469139905090565b60606040518060600160405280602a8152602001612144602a9139905090565b606060405180606001604052806040815260200161205760409139905090565b60006012905090565b60008061085e610d27565b905061087f8185856108708589610b7f565b61087a9190611ea9565b610d2f565b600191505092915050565b6108926111fe565b61089c828261127c565b5050565b6108aa33826113d3565b50565b60606040518060800160405280604481526020016120d960449139905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060600160405280603581526020016123bb60359139905090565b61093d6111fe565b61094760006115a1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098290611f87565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90611f87565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b600080610a10610d27565b90506000610a1e8286610b7f565b905083811015610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90611e17565b60405180910390fd5b610a708286868403610d2f565b60019250505092915050565b600080610a87610d27565b9050610a94818585610f86565b600191505092915050565b60606040518060600160405280602b815260200161216e602b9139905090565b606060405180606001604052806027815260200161211d60279139905090565b606060405180608001604052806046815260200161223160469139905090565b606060405180606001604052806031815260200161238a60319139905090565b60606040518060800160405280604d81526020016122f8604d9139905090565b606060405180608001604052806045815260200161234560459139905090565b60606040518060600160405280603b8152602001612199603b9139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606040518060600160405280603781526020016121d460379139905090565b606060405180608001604052806042815260200161209760429139905090565b610c4e6111fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611d17565b60405180910390fd5b610cc7816115a1565b50565b606060405180606001604052806026815260200161220b60269139905090565b60606040518060400160405280601281526020017f4261646e696b732c20617373656d626c65210000000000000000000000000000815250905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611d37565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eed9190611e57565b60405180910390a3505050565b6000610f068484610b7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f805781811015610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611d57565b60405180910390fd5b610f7f8484848403610d2f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611cd7565b60405180910390fd5b611071838383611667565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90611d77565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e59190611e57565b60405180910390a36111f884848461166c565b50505050565b611206610d27565b73ffffffffffffffffffffffffffffffffffffffff16611224610949565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611d97565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611e37565b60405180910390fd5b6112f860008383611667565b806002600082825461130a9190611ea9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113bb9190611e57565b60405180910390a36113cf6000838361166c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90611db7565b60405180910390fd5b61144f82600083611667565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611cf7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115889190611e57565b60405180910390a361159c8360008461166c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061168081612028565b92915050565b6000813590506116958161203f565b92915050565b6000602082840312156116ad57600080fd5b60006116bb84828501611671565b91505092915050565b600080604083850312156116d757600080fd5b60006116e585828601611671565b92505060206116f685828601611671565b9150509250929050565b60008060006060848603121561171557600080fd5b600061172386828701611671565b935050602061173486828701611671565b925050604061174586828701611686565b9150509250925092565b6000806040838503121561176257600080fd5b600061177085828601611671565b925050602061178185828601611686565b9150509250929050565b60006020828403121561179d57600080fd5b60006117ab84828501611686565b91505092915050565b6117bd81611eff565b82525050565b6117cc81611f11565b82525050565b60006117dd82611e8d565b6117e78185611e98565b93506117f7818560208601611f54565b61180081612017565b840191505092915050565b6000611818602383611e98565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187e602283611e98565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e4602683611e98565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061194a602283611e98565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119b0601d83611e98565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006119f0602683611e98565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a56602083611e98565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a96602183611e98565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611afc602583611e98565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b62602483611e98565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bc8602583611e98565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2e601f83611e98565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611c6a81611f3d565b82525050565b611c7981611f47565b82525050565b6000602082019050611c9460008301846117b4565b92915050565b6000602082019050611caf60008301846117c3565b92915050565b60006020820190508181036000830152611ccf81846117d2565b905092915050565b60006020820190508181036000830152611cf08161180b565b9050919050565b60006020820190508181036000830152611d1081611871565b9050919050565b60006020820190508181036000830152611d30816118d7565b9050919050565b60006020820190508181036000830152611d508161193d565b9050919050565b60006020820190508181036000830152611d70816119a3565b9050919050565b60006020820190508181036000830152611d90816119e3565b9050919050565b60006020820190508181036000830152611db081611a49565b9050919050565b60006020820190508181036000830152611dd081611a89565b9050919050565b60006020820190508181036000830152611df081611aef565b9050919050565b60006020820190508181036000830152611e1081611b55565b9050919050565b60006020820190508181036000830152611e3081611bbb565b9050919050565b60006020820190508181036000830152611e5081611c21565b9050919050565b6000602082019050611e6c6000830184611c61565b92915050565b6000602082019050611e876000830184611c70565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611eb482611f3d565b9150611ebf83611f3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ef457611ef3611fb9565b5b828201905092915050565b6000611f0a82611f1d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f72578082015181840152602081019050611f57565b83811115611f81576000848401525b50505050565b60006002820490506001821680611f9f57607f821691505b60208210811415611fb357611fb2611fe8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61203181611eff565b811461203c57600080fd5b50565b61204881611f3d565b811461205357600080fd5b5056fe4f6e6c79206f6e65204368616f7320456d6572616c64206c6566742e2e2e205468656e20756c74696d61746520706f7765722077696c6c206265206d696e6521477265656e2048696c6c205a6f6e652077696c6c206265206e6f206d6f726521204d7920656d706972652077696c6c207269736520696e2069747320706c61636521536861646f77206b6e6f7773207468652074727574682e2e2e204a6f696e206d652c20616e642077652063616e2064656665617420536f6e696320746f676574686572214d776168616861212046656172207468652067656e697573206f662044722e204567676d616e21596f75276c6c206e65766572206361746368206d6520746869732074696d652c206865646765686f67214368617267652120466f7220736369656e63652c20616e6420746865204567676d616e20456d7069726521526f626f747320757067726164656420746f2076657273696f6e20322e302e20536f6e696320776f6e2774207374616e642061206368616e636521536f6e69633f20466173743f20486121204d79206d616368696e65732077696c6c206f757472756e2068696d20746869732074696d6521426f77206265666f726520746865206d69676874206f66204567676d616e20456d7069726521436f6e737472756374696f6e206f662074686520446561746820456767206973206174203935252e20536f6f6e2c2069742077696c6c20626520756e73746f707061626c65215374657020313a204275696c6420726f626f74732e205374657020323a204361707475726520616e696d616c732e205374657020333a2052756c652074686520776f726c64215761726e696e673a20496e6974696174696e672073656c662d64657374727563742073657175656e63652e2e2e204a757374206b696464696e67214920616d20746865204567676d616e2c207468617427732077686174204920616d21204920616d20746865204567676d616e2c204927766520676f7420746865206d617374657220706c616e2157687920646f657320536f6e6963206e65656420736f206d616e792072696e677320616e797761793f2049276c6c2074616b65207468656d20666f7220736369656e636521416e6f7468657220666f7265737420636c656172656421204d6f726520616e696d616c7320666f72206d792061726d7921456767204d6f62696c652066756c6c79206f7065726174696f6e616c2e20536f6e6963207374616e6473206e6f206368616e636521a2646970667358221220708e7a47604022948354f6c2317c4b2fb8d0b9a9c54c6c9ca99164271abf46ae64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063cb7235ca116100ad578063e00ab8eb1161007c578063e00ab8eb14610600578063f29832451461061e578063f2fde38b1461063c578063fb0134c114610658578063ff3e1dd71461067657610211565b8063cb7235ca14610576578063cf90eaa014610594578063daedfe06146105b2578063dd62ed3e146105d057610211565b8063a9059cbb116100f4578063a9059cbb146104ce578063b39630b9146104fe578063bb68f2741461051c578063c288d4481461053a578063c5054c6c1461055857610211565b8063715018a6146104585780638da5cb5b1461046257806395d89b4114610480578063a457c2d71461049e57610211565b80632c7dfdbd116101a857806340c10f191161017757806340c10f19146103b457806342966c68146103d0578063494a1ab8146103ec57806370a082311461040a57806370ea76091461043a57610211565b80632c7dfdbd1461032a5780632f8a5dad14610348578063313ce56714610366578063395093511461038457610211565b80631c1e82c8116101e45780631c1e82c8146102a05780631f4cdc19146102be57806323b872dd146102dc5780632a994a651461030c57610211565b806306fdde0314610216578063095ea7b31461023457806318160ddd146102645780631844899014610282575b600080fd5b61021e610694565b60405161022b9190611cb5565b60405180910390f35b61024e6004803603810190610249919061174f565b610726565b60405161025b9190611c9a565b60405180910390f35b61026c610749565b6040516102799190611e57565b60405180910390f35b61028a610753565b6040516102979190611e57565b60405180910390f35b6102a861075e565b6040516102b59190611cb5565b60405180910390f35b6102c661079b565b6040516102d39190611cb5565b60405180910390f35b6102f660048036038101906102f19190611700565b6107bb565b6040516103039190611c9a565b60405180910390f35b6103146107ea565b6040516103219190611cb5565b60405180910390f35b61033261080a565b60405161033f9190611cb5565b60405180910390f35b61035061082a565b60405161035d9190611cb5565b60405180910390f35b61036e61084a565b60405161037b9190611e72565b60405180910390f35b61039e6004803603810190610399919061174f565b610853565b6040516103ab9190611c9a565b60405180910390f35b6103ce60048036038101906103c9919061174f565b61088a565b005b6103ea60048036038101906103e5919061178b565b6108a0565b005b6103f46108ad565b6040516104019190611cb5565b60405180910390f35b610424600480360381019061041f919061169b565b6108cd565b6040516104319190611e57565b60405180910390f35b610442610915565b60405161044f9190611cb5565b60405180910390f35b610460610935565b005b61046a610949565b6040516104779190611c7f565b60405180910390f35b610488610973565b6040516104959190611cb5565b60405180910390f35b6104b860048036038101906104b3919061174f565b610a05565b6040516104c59190611c9a565b60405180910390f35b6104e860048036038101906104e3919061174f565b610a7c565b6040516104f59190611c9a565b60405180910390f35b610506610a9f565b6040516105139190611cb5565b60405180910390f35b610524610abf565b6040516105319190611cb5565b60405180910390f35b610542610adf565b60405161054f9190611cb5565b60405180910390f35b610560610aff565b60405161056d9190611cb5565b60405180910390f35b61057e610b1f565b60405161058b9190611cb5565b60405180910390f35b61059c610b3f565b6040516105a99190611cb5565b60405180910390f35b6105ba610b5f565b6040516105c79190611cb5565b60405180910390f35b6105ea60048036038101906105e591906116c4565b610b7f565b6040516105f79190611e57565b60405180910390f35b610608610c06565b6040516106159190611cb5565b60405180910390f35b610626610c26565b6040516106339190611cb5565b60405180910390f35b6106566004803603810190610651919061169b565b610c46565b005b610660610cca565b60405161066d9190611cb5565b60405180910390f35b61067e610cea565b60405161068b9190611cb5565b60405180910390f35b6060600380546106a390611f87565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90611f87565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b5050505050905090565b600080610731610d27565b905061073e818585610d2f565b600191505092915050565b6000600254905090565b6000620f4240905090565b60606040518060400160405280600881526020017f5065772050657721000000000000000000000000000000000000000000000000815250905090565b60606040518060600160405280603b81526020016122bd603b9139905090565b6000806107c6610d27565b90506107d3858285610efa565b6107de858585610f86565b60019150509392505050565b606060405180608001604052806046815260200161227760469139905090565b60606040518060600160405280602a8152602001612144602a9139905090565b606060405180606001604052806040815260200161205760409139905090565b60006012905090565b60008061085e610d27565b905061087f8185856108708589610b7f565b61087a9190611ea9565b610d2f565b600191505092915050565b6108926111fe565b61089c828261127c565b5050565b6108aa33826113d3565b50565b60606040518060800160405280604481526020016120d960449139905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060600160405280603581526020016123bb60359139905090565b61093d6111fe565b61094760006115a1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098290611f87565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90611f87565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b600080610a10610d27565b90506000610a1e8286610b7f565b905083811015610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90611e17565b60405180910390fd5b610a708286868403610d2f565b60019250505092915050565b600080610a87610d27565b9050610a94818585610f86565b600191505092915050565b60606040518060600160405280602b815260200161216e602b9139905090565b606060405180606001604052806027815260200161211d60279139905090565b606060405180608001604052806046815260200161223160469139905090565b606060405180606001604052806031815260200161238a60319139905090565b60606040518060800160405280604d81526020016122f8604d9139905090565b606060405180608001604052806045815260200161234560459139905090565b60606040518060600160405280603b8152602001612199603b9139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606040518060600160405280603781526020016121d460379139905090565b606060405180608001604052806042815260200161209760429139905090565b610c4e6111fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611d17565b60405180910390fd5b610cc7816115a1565b50565b606060405180606001604052806026815260200161220b60269139905090565b60606040518060400160405280601281526020017f4261646e696b732c20617373656d626c65210000000000000000000000000000815250905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611d37565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eed9190611e57565b60405180910390a3505050565b6000610f068484610b7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f805781811015610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611d57565b60405180910390fd5b610f7f8484848403610d2f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611cd7565b60405180910390fd5b611071838383611667565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90611d77565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e59190611e57565b60405180910390a36111f884848461166c565b50505050565b611206610d27565b73ffffffffffffffffffffffffffffffffffffffff16611224610949565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611d97565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611e37565b60405180910390fd5b6112f860008383611667565b806002600082825461130a9190611ea9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113bb9190611e57565b60405180910390a36113cf6000838361166c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90611db7565b60405180910390fd5b61144f82600083611667565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611cf7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115889190611e57565b60405180910390a361159c8360008461166c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061168081612028565b92915050565b6000813590506116958161203f565b92915050565b6000602082840312156116ad57600080fd5b60006116bb84828501611671565b91505092915050565b600080604083850312156116d757600080fd5b60006116e585828601611671565b92505060206116f685828601611671565b9150509250929050565b60008060006060848603121561171557600080fd5b600061172386828701611671565b935050602061173486828701611671565b925050604061174586828701611686565b9150509250925092565b6000806040838503121561176257600080fd5b600061177085828601611671565b925050602061178185828601611686565b9150509250929050565b60006020828403121561179d57600080fd5b60006117ab84828501611686565b91505092915050565b6117bd81611eff565b82525050565b6117cc81611f11565b82525050565b60006117dd82611e8d565b6117e78185611e98565b93506117f7818560208601611f54565b61180081612017565b840191505092915050565b6000611818602383611e98565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187e602283611e98565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e4602683611e98565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061194a602283611e98565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119b0601d83611e98565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006119f0602683611e98565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a56602083611e98565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a96602183611e98565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611afc602583611e98565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b62602483611e98565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bc8602583611e98565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2e601f83611e98565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611c6a81611f3d565b82525050565b611c7981611f47565b82525050565b6000602082019050611c9460008301846117b4565b92915050565b6000602082019050611caf60008301846117c3565b92915050565b60006020820190508181036000830152611ccf81846117d2565b905092915050565b60006020820190508181036000830152611cf08161180b565b9050919050565b60006020820190508181036000830152611d1081611871565b9050919050565b60006020820190508181036000830152611d30816118d7565b9050919050565b60006020820190508181036000830152611d508161193d565b9050919050565b60006020820190508181036000830152611d70816119a3565b9050919050565b60006020820190508181036000830152611d90816119e3565b9050919050565b60006020820190508181036000830152611db081611a49565b9050919050565b60006020820190508181036000830152611dd081611a89565b9050919050565b60006020820190508181036000830152611df081611aef565b9050919050565b60006020820190508181036000830152611e1081611b55565b9050919050565b60006020820190508181036000830152611e3081611bbb565b9050919050565b60006020820190508181036000830152611e5081611c21565b9050919050565b6000602082019050611e6c6000830184611c61565b92915050565b6000602082019050611e876000830184611c70565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611eb482611f3d565b9150611ebf83611f3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ef457611ef3611fb9565b5b828201905092915050565b6000611f0a82611f1d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f72578082015181840152602081019050611f57565b83811115611f81576000848401525b50505050565b60006002820490506001821680611f9f57607f821691505b60208210811415611fb357611fb2611fe8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61203181611eff565b811461203c57600080fd5b50565b61204881611f3d565b811461205357600080fd5b5056fe4f6e6c79206f6e65204368616f7320456d6572616c64206c6566742e2e2e205468656e20756c74696d61746520706f7765722077696c6c206265206d696e6521477265656e2048696c6c205a6f6e652077696c6c206265206e6f206d6f726521204d7920656d706972652077696c6c207269736520696e2069747320706c61636521536861646f77206b6e6f7773207468652074727574682e2e2e204a6f696e206d652c20616e642077652063616e2064656665617420536f6e696320746f676574686572214d776168616861212046656172207468652067656e697573206f662044722e204567676d616e21596f75276c6c206e65766572206361746368206d6520746869732074696d652c206865646765686f67214368617267652120466f7220736369656e63652c20616e6420746865204567676d616e20456d7069726521526f626f747320757067726164656420746f2076657273696f6e20322e302e20536f6e696320776f6e2774207374616e642061206368616e636521536f6e69633f20466173743f20486121204d79206d616368696e65732077696c6c206f757472756e2068696d20746869732074696d6521426f77206265666f726520746865206d69676874206f66204567676d616e20456d7069726521436f6e737472756374696f6e206f662074686520446561746820456767206973206174203935252e20536f6f6e2c2069742077696c6c20626520756e73746f707061626c65215374657020313a204275696c6420726f626f74732e205374657020323a204361707475726520616e696d616c732e205374657020333a2052756c652074686520776f726c64215761726e696e673a20496e6974696174696e672073656c662d64657374727563742073657175656e63652e2e2e204a757374206b696464696e67214920616d20746865204567676d616e2c207468617427732077686174204920616d21204920616d20746865204567676d616e2c204927766520676f7420746865206d617374657220706c616e2157687920646f657320536f6e6963206e65656420736f206d616e792072696e677320616e797761793f2049276c6c2074616b65207468656d20666f7220736369656e636521416e6f7468657220666f7265737420636c656172656421204d6f726520616e696d616c7320666f72206d792061726d7921456767204d6f62696c652066756c6c79206f7065726174696f6e616c2e20536f6e6963207374616e6473206e6f206368616e636521a2646970667358221220708e7a47604022948354f6c2317c4b2fb8d0b9a9c54c6c9ca99164271abf46ae64736f6c63430008000033
Deployed Bytecode Sourcemap
21038:3232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12080:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10849:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23989:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21466:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22111:154;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12861:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21695:159;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21975:128;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23173:156;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10691:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13565:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21243:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21346:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23504:159;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11020:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23837:144;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2987:103;;;:::i;:::-;;2339:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9948:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14306:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11353:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22737:128;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21563:124;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23337:159;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23026:139;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22273:165;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23671:158;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22446:147;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11609:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22873:145;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24109:158;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3245:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22601:128;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21862:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9729:100;9783:13;9816:5;9809:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729:100;:::o;12080:201::-;12163:4;12180:13;12196:12;:10;:12::i;:::-;12180:28;;12219:32;12228:5;12235:7;12244:6;12219:8;:32::i;:::-;12269:4;12262:11;;;12080:201;;;;:::o;10849:108::-;10910:7;10937:12;;10930:19;;10849:108;:::o;23989:112::-;24036:7;24063;24056:14;;23989:112;:::o;21466:89::-;21504:13;21530:17;;;;;;;;;;;;;;;;;;;21466:89;:::o;22111:154::-;22163:13;22189:68;;;;;;;;;;;;;;;;;;;22111:154;:::o;12861:295::-;12992:4;13009:15;13027:12;:10;:12::i;:::-;13009:30;;13050:38;13066:4;13072:7;13081:6;13050:15;:38::i;:::-;13099:27;13109:4;13115:2;13119:6;13099:9;:27::i;:::-;13144:4;13137:11;;;12861:295;;;;;:::o;21695:159::-;21741:13;21767:79;;;;;;;;;;;;;;;;;;;21695:159;:::o;21975:128::-;22018:13;22044:51;;;;;;;;;;;;;;;;;;;21975:128;:::o;23173:156::-;23222:13;23248:73;;;;;;;;;;;;;;;;;;;23173:156;:::o;10691:93::-;10749:5;10774:2;10767:9;;10691:93;:::o;13565:238::-;13653:4;13670:13;13686:12;:10;:12::i;:::-;13670:28;;13709:64;13718:5;13725:7;13762:10;13734:25;13744:5;13751:7;13734:9;:25::i;:::-;:38;;;;:::i;:::-;13709:8;:64::i;:::-;13791:4;13784:11;;;13565:238;;;;:::o;21243:95::-;2225:13;:11;:13::i;:::-;21313:17:::1;21319:2;21323:6;21313:5;:17::i;:::-;21243:95:::0;;:::o;21346:81::-;21394:25;21400:10;21412:6;21394:5;:25::i;:::-;21346:81;:::o;23504:159::-;23552:13;23578:77;;;;;;;;;;;;;;;;;;;23504:159;:::o;11020:127::-;11094:7;11121:9;:18;11131:7;11121:18;;;;;;;;;;;;;;;;11114:25;;11020:127;;;:::o;23837:144::-;23885:13;23911:62;;;;;;;;;;;;;;;;;;;23837:144;:::o;2987:103::-;2225:13;:11;:13::i;:::-;3052:30:::1;3079:1;3052:18;:30::i;:::-;2987:103::o:0;2339:87::-;2385:7;2412:6;;;;;;;;;;;2405:13;;2339:87;:::o;9948:104::-;10004:13;10037:7;10030:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9948:104;:::o;14306:436::-;14399:4;14416:13;14432:12;:10;:12::i;:::-;14416:28;;14455:24;14482:25;14492:5;14499:7;14482:9;:25::i;:::-;14455:52;;14546:15;14526:16;:35;;14518:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14639:60;14648:5;14655:7;14683:15;14664:16;:34;14639:8;:60::i;:::-;14730:4;14723:11;;;;14306:436;;;;:::o;11353:193::-;11432:4;11449:13;11465:12;:10;:12::i;:::-;11449:28;;11488;11498:5;11505:2;11509:6;11488:9;:28::i;:::-;11534:4;11527:11;;;11353:193;;;;:::o;22737:128::-;22779:13;22805:52;;;;;;;;;;;;;;;;;;;22737:128;:::o;21563:124::-;21605:13;21631:48;;;;;;;;;;;;;;;;;;;21563:124;:::o;23337:159::-;23383:13;23409:79;;;;;;;;;;;;;;;;;;;23337:159;:::o;23026:139::-;23073:13;23099:58;;;;;;;;;;;;;;;;;;;23026:139;:::o;22273:165::-;22318:13;22344:86;;;;;;;;;;;;;;;;;;;22273:165;:::o;23671:158::-;23717:13;23743:78;;;;;;;;;;;;;;;;;;;23671:158;:::o;22446:147::-;22491:13;22517:68;;;;;;;;;;;;;;;;;;;22446:147;:::o;11609:151::-;11698:7;11725:11;:18;11737:5;11725:18;;;;;;;;;;;;;;;:27;11744:7;11725:27;;;;;;;;;;;;;;;;11718:34;;11609:151;;;;:::o;22873:145::-;22920:13;22946:64;;;;;;;;;;;;;;;;;;;22873:145;:::o;24109:158::-;24158:13;24184:75;;;;;;;;;;;;;;;;;;;24109:158;:::o;3245:201::-;2225:13;:11;:13::i;:::-;3354:1:::1;3334:22;;:8;:22;;;;3326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3410:28;3429:8;3410:18;:28::i;:::-;3245:201:::0;:::o;22601:128::-;22648:13;22674:47;;;;;;;;;;;;;;;;;;;22601:128;:::o;21862:105::-;21906:13;21932:27;;;;;;;;;;;;;;;;;;;21862:105;:::o;835:98::-;888:7;915:10;908:17;;835:98;:::o;18333:380::-;18486:1;18469:19;;:5;:19;;;;18461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18567:1;18548:21;;:7;:21;;;;18540:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18651:6;18621:11;:18;18633:5;18621:18;;;;;;;;;;;;;;;:27;18640:7;18621:27;;;;;;;;;;;;;;;:36;;;;18689:7;18673:32;;18682:5;18673:32;;;18698:6;18673:32;;;;;;:::i;:::-;;;;;;;;18333:380;;;:::o;19004:453::-;19139:24;19166:25;19176:5;19183:7;19166:9;:25::i;:::-;19139:52;;19226:17;19206:16;:37;19202:248;;19288:6;19268:16;:26;;19260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19372:51;19381:5;19388:7;19416:6;19397:16;:25;19372:8;:51::i;:::-;19202:248;19004:453;;;;:::o;15212:840::-;15359:1;15343:18;;:4;:18;;;;15335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15436:1;15422:16;;:2;:16;;;;15414:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15491:38;15512:4;15518:2;15522:6;15491:20;:38::i;:::-;15542:19;15564:9;:15;15574:4;15564:15;;;;;;;;;;;;;;;;15542:37;;15613:6;15598:11;:21;;15590:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15730:6;15716:11;:20;15698:9;:15;15708:4;15698:15;;;;;;;;;;;;;;;:38;;;;15933:6;15916:9;:13;15926:2;15916:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15983:2;15968:26;;15977:4;15968:26;;;15987:6;15968:26;;;;;;:::i;:::-;;;;;;;;16007:37;16027:4;16033:2;16037:6;16007:19;:37::i;:::-;15212:840;;;;:::o;2504:132::-;2579:12;:10;:12::i;:::-;2568:23;;:7;:5;:7::i;:::-;:23;;;2560:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2504:132::o;16339:548::-;16442:1;16423:21;;:7;:21;;;;16415:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16493:49;16522:1;16526:7;16535:6;16493:20;:49::i;:::-;16571:6;16555:12;;:22;;;;;;;:::i;:::-;;;;;;;;16748:6;16726:9;:18;16736:7;16726:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16802:7;16781:37;;16798:1;16781:37;;;16811:6;16781:37;;;;;;:::i;:::-;;;;;;;;16831:48;16859:1;16863:7;16872:6;16831:19;:48::i;:::-;16339:548;;:::o;17220:675::-;17323:1;17304:21;;:7;:21;;;;17296:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17376:49;17397:7;17414:1;17418:6;17376:20;:49::i;:::-;17438:22;17463:9;:18;17473:7;17463:18;;;;;;;;;;;;;;;;17438:43;;17518:6;17500:14;:24;;17492:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17637:6;17620:14;:23;17599:9;:18;17609:7;17599:18;;;;;;;;;;;;;;;:44;;;;17754:6;17738:12;;:22;;;;;;;;;;;17815:1;17789:37;;17798:7;17789:37;;;17819:6;17789:37;;;;;;:::i;:::-;;;;;;;;17839:48;17859:7;17876:1;17880:6;17839:19;:48::i;:::-;17220:675;;;:::o;3606:191::-;3680:16;3699:6;;;;;;;;;;;3680:25;;3725:8;3716:6;;:17;;;;;;;;;;;;;;;;;;3780:8;3749:40;;3770:8;3749:40;;;;;;;;;;;;3606:191;;:::o;20057:125::-;;;;:::o;20786:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:370::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:8;4973:2;4968:3;4964:12;4957:30;5013:2;5008:3;5004:12;4997:19;;4798:224;;;:::o;5028:330::-;;5191:67;5255:2;5250:3;5191:67;:::i;:::-;5184:74;;5288:34;5284:1;5279:3;5275:11;5268:55;5349:2;5344:3;5340:12;5333:19;;5174:184;;;:::o;5364:365::-;;5527:67;5591:2;5586:3;5527:67;:::i;:::-;5520:74;;5624:34;5620:1;5615:3;5611:11;5604:55;5690:3;5685:2;5680:3;5676:12;5669:25;5720:2;5715:3;5711:12;5704:19;;5510:219;;;:::o;5735:369::-;;5898:67;5962:2;5957:3;5898:67;:::i;:::-;5891:74;;5995:34;5991:1;5986:3;5982:11;5975:55;6061:7;6056:2;6051:3;6047:12;6040:29;6095:2;6090:3;6086:12;6079:19;;5881:223;;;:::o;6110:368::-;;6273:67;6337:2;6332:3;6273:67;:::i;:::-;6266:74;;6370:34;6366:1;6361:3;6357:11;6350:55;6436:6;6431:2;6426:3;6422:12;6415:28;6469:2;6464:3;6460:12;6453:19;;6256:222;;;:::o;6484:369::-;;6647:67;6711:2;6706:3;6647:67;:::i;:::-;6640:74;;6744:34;6740:1;6735:3;6731:11;6724:55;6810:7;6805:2;6800:3;6796:12;6789:29;6844:2;6839:3;6835:12;6828:19;;6630:223;;;:::o;6859:329::-;;7022:67;7086:2;7081:3;7022:67;:::i;:::-;7015:74;;7119:33;7115:1;7110:3;7106:11;7099:54;7179:2;7174:3;7170:12;7163:19;;7005:183;;;:::o;7194:118::-;7281:24;7299:5;7281:24;:::i;:::-;7276:3;7269:37;7259:53;;:::o;7318:112::-;7401:22;7417:5;7401:22;:::i;:::-;7396:3;7389:35;7379:51;;:::o;7436:222::-;;7567:2;7556:9;7552:18;7544:26;;7580:71;7648:1;7637:9;7633:17;7624:6;7580:71;:::i;:::-;7534:124;;;;:::o;7664:210::-;;7789:2;7778:9;7774:18;7766:26;;7802:65;7864:1;7853:9;7849:17;7840:6;7802:65;:::i;:::-;7756:118;;;;:::o;7880:313::-;;8031:2;8020:9;8016:18;8008:26;;8080:9;8074:4;8070:20;8066:1;8055:9;8051:17;8044:47;8108:78;8181:4;8172:6;8108:78;:::i;:::-;8100:86;;7998:195;;;;:::o;8199:419::-;;8403:2;8392:9;8388:18;8380:26;;8452:9;8446:4;8442:20;8438:1;8427:9;8423:17;8416:47;8480:131;8606:4;8480:131;:::i;:::-;8472:139;;8370:248;;;:::o;8624:419::-;;8828:2;8817:9;8813:18;8805:26;;8877:9;8871:4;8867:20;8863:1;8852:9;8848:17;8841:47;8905:131;9031:4;8905:131;:::i;:::-;8897:139;;8795:248;;;:::o;9049:419::-;;9253:2;9242:9;9238:18;9230:26;;9302:9;9296:4;9292:20;9288:1;9277:9;9273:17;9266:47;9330:131;9456:4;9330:131;:::i;:::-;9322:139;;9220:248;;;:::o;9474:419::-;;9678:2;9667:9;9663:18;9655:26;;9727:9;9721:4;9717:20;9713:1;9702:9;9698:17;9691:47;9755:131;9881:4;9755:131;:::i;:::-;9747:139;;9645:248;;;:::o;9899:419::-;;10103:2;10092:9;10088:18;10080:26;;10152:9;10146:4;10142:20;10138:1;10127:9;10123:17;10116:47;10180:131;10306:4;10180:131;:::i;:::-;10172:139;;10070:248;;;:::o;10324:419::-;;10528:2;10517:9;10513:18;10505:26;;10577:9;10571:4;10567:20;10563:1;10552:9;10548:17;10541:47;10605:131;10731:4;10605:131;:::i;:::-;10597:139;;10495:248;;;:::o;10749:419::-;;10953:2;10942:9;10938:18;10930:26;;11002:9;10996:4;10992:20;10988:1;10977:9;10973:17;10966:47;11030:131;11156:4;11030:131;:::i;:::-;11022:139;;10920:248;;;:::o;11174:419::-;;11378:2;11367:9;11363:18;11355:26;;11427:9;11421:4;11417:20;11413:1;11402:9;11398:17;11391:47;11455:131;11581:4;11455:131;:::i;:::-;11447:139;;11345:248;;;:::o;11599:419::-;;11803:2;11792:9;11788:18;11780:26;;11852:9;11846:4;11842:20;11838:1;11827:9;11823:17;11816:47;11880:131;12006:4;11880:131;:::i;:::-;11872:139;;11770:248;;;:::o;12024:419::-;;12228:2;12217:9;12213:18;12205:26;;12277:9;12271:4;12267:20;12263:1;12252:9;12248:17;12241:47;12305:131;12431:4;12305:131;:::i;:::-;12297:139;;12195:248;;;:::o;12449:419::-;;12653:2;12642:9;12638:18;12630:26;;12702:9;12696:4;12692:20;12688:1;12677:9;12673:17;12666:47;12730:131;12856:4;12730:131;:::i;:::-;12722:139;;12620:248;;;:::o;12874:419::-;;13078:2;13067:9;13063:18;13055:26;;13127:9;13121:4;13117:20;13113:1;13102:9;13098:17;13091:47;13155:131;13281:4;13155:131;:::i;:::-;13147:139;;13045:248;;;:::o;13299:222::-;;13430:2;13419:9;13415:18;13407:26;;13443:71;13511:1;13500:9;13496:17;13487:6;13443:71;:::i;:::-;13397:124;;;;:::o;13527:214::-;;13654:2;13643:9;13639:18;13631:26;;13667:67;13731:1;13720:9;13716:17;13707:6;13667:67;:::i;:::-;13621:120;;;;:::o;13747:99::-;;13833:5;13827:12;13817:22;;13806:40;;;:::o;13852:169::-;;13970:6;13965:3;13958:19;14010:4;14005:3;14001:14;13986:29;;13948:73;;;;:::o;14027:305::-;;14086:20;14104:1;14086:20;:::i;:::-;14081:25;;14120:20;14138:1;14120:20;:::i;:::-;14115:25;;14274:1;14206:66;14202:74;14199:1;14196:81;14193:2;;;14280:18;;:::i;:::-;14193:2;14324:1;14321;14317:9;14310:16;;14071:261;;;;:::o;14338:96::-;;14404:24;14422:5;14404:24;:::i;:::-;14393:35;;14383:51;;;:::o;14440:90::-;;14517:5;14510:13;14503:21;14492:32;;14482:48;;;:::o;14536:126::-;;14613:42;14606:5;14602:54;14591:65;;14581:81;;;:::o;14668:77::-;;14734:5;14723:16;;14713:32;;;:::o;14751:86::-;;14826:4;14819:5;14815:16;14804:27;;14794:43;;;:::o;14843:307::-;14911:1;14921:113;14935:6;14932:1;14929:13;14921:113;;;15020:1;15015:3;15011:11;15005:18;15001:1;14996:3;14992:11;14985:39;14957:2;14954:1;14950:10;14945:15;;14921:113;;;15052:6;15049:1;15046:13;15043:2;;;15132:1;15123:6;15118:3;15114:16;15107:27;15043:2;14892:258;;;;:::o;15156:320::-;;15237:1;15231:4;15227:12;15217:22;;15284:1;15278:4;15274:12;15305:18;15295:2;;15361:4;15353:6;15349:17;15339:27;;15295:2;15423;15415:6;15412:14;15392:18;15389:38;15386:2;;;15442:18;;:::i;:::-;15386:2;15207:269;;;;:::o;15482:180::-;15530:77;15527:1;15520:88;15627:4;15624:1;15617:15;15651:4;15648:1;15641:15;15668:180;15716:77;15713:1;15706:88;15813:4;15810:1;15803:15;15837:4;15834:1;15827:15;15854:102;;15946:2;15942:7;15937:2;15930:5;15926:14;15922:28;15912:38;;15902:54;;;:::o;15962:122::-;16035:24;16053:5;16035:24;:::i;:::-;16028:5;16025:35;16015:2;;16074:1;16071;16064:12;16015:2;16005:79;:::o;16090:122::-;16163:24;16181:5;16163:24;:::i;:::-;16156:5;16153:35;16143:2;;16202:1;16199;16192:12;16143:2;16133:79;:::o
Swarm Source
ipfs://708e7a47604022948354f6c2317c4b2fb8d0b9a9c54c6c9ca99164271abf46ae
[ 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.