ERC-20
Overview
Max Total Supply
1,028,251.999999999999985 INKZ
Holders
223
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,036 INKZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
INKZ
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface iOctoHedz { function tokensOfOwner(address owner) external view returns (uint256[] memory); } contract INKZ is ERC20, ERC20Burnable, Ownable { iOctoHedz public OctoHedz; address constant public OctoHedzAddress = 0x6E5a65B5f9Dd7b1b08Ff212E210DCd642DE0db8B; mapping(uint => uint256) public lastUpdate; mapping(address => bool) public allowedAddresses; uint256 constant public INKZ_RATE = 8 ether; uint256 constant public START = 1639965380; uint256 constant public END = 1892771849; bool public saleIsActive = true; constructor() ERC20("INKz", "INKZ") { OctoHedz = iOctoHedz(OctoHedzAddress); } function setSaleState(bool newState) public onlyOwner { saleIsActive = newState; } function setAllowedAddresses(address _address, bool _access) public onlyOwner { allowedAddresses[_address] = _access; } function getTotalClaimable(address owner) public view returns (uint256) { uint[] memory octos = iOctoHedz(OctoHedzAddress).tokensOfOwner(owner); uint arrayLength = octos.length; uint256 rewards = 0; uint256 time = block.timestamp; for (uint i=0; i<arrayLength; i++) { uint256 octoid = octos[i]; uint256 lastTime = lastUpdate[octoid]; if (lastTime > 0){ rewards = rewards+(INKZ_RATE*((time-lastTime)/86400)); } else { rewards = rewards+(INKZ_RATE*((time-START)/86400)); } } return rewards; } function updateTime(address owner) private { uint[] memory octos = iOctoHedz(OctoHedzAddress).tokensOfOwner(owner); uint arrayLength = octos.length; uint256 time = block.timestamp; for (uint i=0; i<arrayLength; i++) { uint256 octoid = octos[i]; lastUpdate[octoid]=time; } } function claimReward() public payable { require(saleIsActive, "Sale must be active to claim INKz"); uint256 time = block.timestamp; require(time <= END, "Date exceeds the max limit"); uint[] memory octos = iOctoHedz(OctoHedzAddress).tokensOfOwner(msg.sender); uint arrayLength = octos.length; require(arrayLength > 0, "Not owner"); uint256 amount = getTotalClaimable(msg.sender); require(amount > 0, "Nothing to claim"); updateTime(msg.sender); _mint(msg.sender, amount); } function octoINKz(uint octoid) public view returns(uint256) { uint256 rewards = 0; uint256 time = block.timestamp; uint256 lastTime = lastUpdate[octoid]; if (lastTime > 0){ rewards = rewards+(INKZ_RATE*((time-lastTime)/86400)); } else { rewards = rewards+(INKZ_RATE*((time-START)/86400)); } return rewards; } function claimINKzRewards(address _address, uint256 _amount) external { require(saleIsActive, "Sale must be active to claim INKz"); require(allowedAddresses[msg.sender], "Address does not have permission to distrubute tokens"); _mint(_address, _amount); } function burn(address user, uint256 amount) external { require(allowedAddresses[msg.sender] || msg.sender == address(OctoHedz), "Address does not have permission to burn"); _burn(user, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INKZ_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OctoHedz","outputs":[{"internalType":"contract iOctoHedz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OctoHedzAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"user","type":"address"},{"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimINKzRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"payable","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":"owner","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"octoid","type":"uint256"}],"name":"octoINKz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_access","type":"bool"}],"name":"setAllowedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f494e4b7a000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494e4b5a000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b192919062000216565b508060049080519060200190620000ca92919062000216565b505050620000ed620000e16200014860201b60201c565b6200015060201b60201c565b736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200032b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022490620002c6565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b60006002820490506001821680620002df57607f821691505b60208210811415620002f657620002f5620002fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132d0806200033b6000396000f3fe6080604052600436106101d85760003560e01c806379cc679011610102578063ba9a061a11610095578063eb8d244411610064578063eb8d2444146106eb578063ef537f1f14610716578063efe7a50414610741578063f2fde38b1461076c576101d8565b8063ba9a061a1461062f578063c4e370951461065a578063dd62ed3e14610683578063e808e3ff146106c0576101d8565b80639dc29fac116100d15780639dc29fac14610582578063a457c2d7146105ab578063a9059cbb146105e8578063b88a802f14610625576101d8565b806379cc6790146104da57806389781912146105035780638da5cb5b1461052c57806395d89b4114610557576101d8565b8063395093511161017a578063475bd64511610149578063475bd6451461041e5780636105566f1461045b57806370a0823114610486578063715018a6146104c3576101d8565b806339509351146103525780634120657a1461038f5780634218ffa4146103cc57806342966c68146103f5576101d8565b806318160ddd116101b657806318160ddd1461028257806323b872dd146102ad578063267e8ab6146102ea578063313ce56714610327576101d8565b806306fdde03146101dd578063095ea7b3146102085780630bc5dec414610245575b600080fd5b3480156101e957600080fd5b506101f2610795565b6040516101ff9190612682565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190612231565b610827565b60405161023c919061264c565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906122e7565b610845565b6040516102799190612904565b60405180910390f35b34801561028e57600080fd5b5061029761085d565b6040516102a49190612904565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061219e565b610867565b6040516102e1919061264c565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612131565b61095f565b60405161031e9190612904565b60405180910390f35b34801561033357600080fd5b5061033c610afd565b604051610349919061291f565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612231565b610b06565b604051610386919061264c565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612131565b610bb2565b6040516103c3919061264c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612231565b610bd2565b005b34801561040157600080fd5b5061041c600480360381019061041791906122e7565b610cbb565b005b34801561042a57600080fd5b50610445600480360381019061044091906122e7565b610ccf565b6040516104529190612904565b60405180910390f35b34801561046757600080fd5b50610470610d85565b60405161047d9190612631565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612131565b610d9d565b6040516104ba9190612904565b60405180910390f35b3480156104cf57600080fd5b506104d8610de5565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612231565b610e6d565b005b34801561050f57600080fd5b5061052a600480360381019061052591906121f1565b610ee8565b005b34801561053857600080fd5b50610541610fbf565b60405161054e9190612631565b60405180910390f35b34801561056357600080fd5b5061056c610fe9565b6040516105799190612682565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612231565b61107b565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612231565b61116d565b6040516105df919061264c565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612231565b611258565b60405161061c919061264c565b60405180910390f35b61062d611276565b005b34801561063b57600080fd5b50610644611469565b6040516106519190612904565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906122ba565b611471565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061215e565b61150a565b6040516106b79190612904565b60405180910390f35b3480156106cc57600080fd5b506106d5611591565b6040516106e29190612904565b60405180910390f35b3480156106f757600080fd5b5061070061159d565b60405161070d919061264c565b60405180910390f35b34801561072257600080fd5b5061072b6115b0565b6040516107389190612667565b60405180910390f35b34801561074d57600080fd5b506107566115d6565b6040516107639190612904565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190612131565b6115de565b005b6060600380546107a490612b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090612b7a565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b600061083b6108346116d6565b84846116de565b6001905092915050565b60076020528060005260406000206000915090505481565b6000600254905090565b60006108748484846118a9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bf6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906127e4565b60405180910390fd5b6109538561094b6116d6565b8584036116de565b60019150509392505050565b600080736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b81526004016109af9190612631565b60006040518083038186803b1580156109c757600080fd5b505afa1580156109db573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610a049190612271565b905060008151905060008042905060005b83811015610af0576000858281518110610a3257610a31612cb3565b5b602002602001015190506000600760008381526020019081526020016000205490506000811115610a9c57620151808185610a6d9190612a88565b610a7791906129fd565b676f05b59d3b200000610a8a9190612a2e565b85610a9591906129a7565b9450610adb565b620151806361bfe2c485610ab09190612a88565b610aba91906129fd565b676f05b59d3b200000610acd9190612a2e565b85610ad891906129a7565b94505b50508080610ae890612bdd565b915050610a15565b5081945050505050919050565b60006012905090565b6000610ba8610b136116d6565b848460016000610b216116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba391906129a7565b6116de565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff16610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612784565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906127a4565b60405180910390fd5b610cb78282611b2a565b5050565b610ccc610cc66116d6565b82611c8a565b50565b6000806000905060004290506000600760008681526020019081526020016000205490506000811115610d3b57620151808183610d0c9190612a88565b610d1691906129fd565b676f05b59d3b200000610d299190612a2e565b83610d3491906129a7565b9250610d7a565b620151806361bfe2c483610d4f9190612a88565b610d5991906129fd565b676f05b59d3b200000610d6c9190612a2e565b83610d7791906129a7565b92505b829350505050919050565b736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ded6116d6565b73ffffffffffffffffffffffffffffffffffffffff16610e0b610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890612804565b60405180910390fd5b610e6b6000611e61565b565b6000610e8083610e7b6116d6565b61150a565b905081811015610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612824565b60405180910390fd5b610ed983610ed16116d6565b8484036116de565b610ee38383611c8a565b505050565b610ef06116d6565b73ffffffffffffffffffffffffffffffffffffffff16610f0e610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612804565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ff890612b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461102490612b7a565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111205750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612744565b60405180910390fd5b6111698282611c8a565b5050565b6000806001600061117c6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906128c4565b60405180910390fd5b61124d6112446116d6565b858584036116de565b600191505092915050565b600061126c6112656116d6565b84846118a9565b6001905092915050565b600960009054906101000a900460ff166112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612784565b60405180910390fd5b60004290506370d16809811115611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906127c4565b60405180910390fd5b6000736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b81526004016113609190612631565b60006040518083038186803b15801561137857600080fd5b505afa15801561138c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113b59190612271565b905060008151905060008111611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790612884565b60405180910390fd5b600061140b3361095f565b905060008111611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906126e4565b60405180910390fd5b61145933611f27565b6114633382611b2a565b50505050565b6361bfe2c481565b6114796116d6565b73ffffffffffffffffffffffffffffffffffffffff16611497610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490612804565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b676f05b59d3b20000081565b600960009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6370d1680981565b6115e66116d6565b73ffffffffffffffffffffffffffffffffffffffff16611604610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190612804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190612704565b60405180910390fd5b6116d381611e61565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561174e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611745906128a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612724565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189c9190612904565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090612864565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906126a4565b60405180910390fd5b611994838383612035565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190612764565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad91906129a7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b119190612904565b60405180910390a3611b2484848461203a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906128e4565b60405180910390fd5b611ba660008383612035565b8060026000828254611bb891906129a7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0d91906129a7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c729190612904565b60405180910390a3611c866000838361203a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190612844565b60405180910390fd5b611d0682600083612035565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d83906126c4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611de39190612a88565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e489190612904565b60405180910390a3611e5c8360008461203a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c836040518263ffffffff1660e01b8152600401611f769190612631565b60006040518083038186803b158015611f8e57600080fd5b505afa158015611fa2573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fcb9190612271565b9050600081519050600042905060005b8281101561202e576000848281518110611ff857611ff7612cb3565b5b6020026020010151905082600760008381526020019081526020016000208190555050808061202690612bdd565b915050611fdb565b5050505050565b505050565b505050565b600061205261204d8461295f565b61293a565b9050808382526020820190508285602086028201111561207557612074612d16565b5b60005b858110156120a5578161208b888261211c565b845260208401935060208301925050600181019050612078565b5050509392505050565b6000813590506120be81613255565b92915050565b600082601f8301126120d9576120d8612d11565b5b81516120e984826020860161203f565b91505092915050565b6000813590506121018161326c565b92915050565b60008135905061211681613283565b92915050565b60008151905061212b81613283565b92915050565b60006020828403121561214757612146612d20565b5b6000612155848285016120af565b91505092915050565b6000806040838503121561217557612174612d20565b5b6000612183858286016120af565b9250506020612194858286016120af565b9150509250929050565b6000806000606084860312156121b7576121b6612d20565b5b60006121c5868287016120af565b93505060206121d6868287016120af565b92505060406121e786828701612107565b9150509250925092565b6000806040838503121561220857612207612d20565b5b6000612216858286016120af565b9250506020612227858286016120f2565b9150509250929050565b6000806040838503121561224857612247612d20565b5b6000612256858286016120af565b925050602061226785828601612107565b9150509250929050565b60006020828403121561228757612286612d20565b5b600082015167ffffffffffffffff8111156122a5576122a4612d1b565b5b6122b1848285016120c4565b91505092915050565b6000602082840312156122d0576122cf612d20565b5b60006122de848285016120f2565b91505092915050565b6000602082840312156122fd576122fc612d20565b5b600061230b84828501612107565b91505092915050565b61231d81612abc565b82525050565b61232c81612ace565b82525050565b61233b81612b11565b82525050565b600061234c8261298b565b6123568185612996565b9350612366818560208601612b47565b61236f81612d25565b840191505092915050565b6000612387602383612996565b915061239282612d36565b604082019050919050565b60006123aa602283612996565b91506123b582612d85565b604082019050919050565b60006123cd601083612996565b91506123d882612dd4565b602082019050919050565b60006123f0602683612996565b91506123fb82612dfd565b604082019050919050565b6000612413602283612996565b915061241e82612e4c565b604082019050919050565b6000612436602883612996565b915061244182612e9b565b604082019050919050565b6000612459602683612996565b915061246482612eea565b604082019050919050565b600061247c602183612996565b915061248782612f39565b604082019050919050565b600061249f603583612996565b91506124aa82612f88565b604082019050919050565b60006124c2601a83612996565b91506124cd82612fd7565b602082019050919050565b60006124e5602883612996565b91506124f082613000565b604082019050919050565b6000612508602083612996565b91506125138261304f565b602082019050919050565b600061252b602483612996565b915061253682613078565b604082019050919050565b600061254e602183612996565b9150612559826130c7565b604082019050919050565b6000612571602583612996565b915061257c82613116565b604082019050919050565b6000612594600983612996565b915061259f82613165565b602082019050919050565b60006125b7602483612996565b91506125c28261318e565b604082019050919050565b60006125da602583612996565b91506125e5826131dd565b604082019050919050565b60006125fd601f83612996565b91506126088261322c565b602082019050919050565b61261c81612afa565b82525050565b61262b81612b04565b82525050565b60006020820190506126466000830184612314565b92915050565b60006020820190506126616000830184612323565b92915050565b600060208201905061267c6000830184612332565b92915050565b6000602082019050818103600083015261269c8184612341565b905092915050565b600060208201905081810360008301526126bd8161237a565b9050919050565b600060208201905081810360008301526126dd8161239d565b9050919050565b600060208201905081810360008301526126fd816123c0565b9050919050565b6000602082019050818103600083015261271d816123e3565b9050919050565b6000602082019050818103600083015261273d81612406565b9050919050565b6000602082019050818103600083015261275d81612429565b9050919050565b6000602082019050818103600083015261277d8161244c565b9050919050565b6000602082019050818103600083015261279d8161246f565b9050919050565b600060208201905081810360008301526127bd81612492565b9050919050565b600060208201905081810360008301526127dd816124b5565b9050919050565b600060208201905081810360008301526127fd816124d8565b9050919050565b6000602082019050818103600083015261281d816124fb565b9050919050565b6000602082019050818103600083015261283d8161251e565b9050919050565b6000602082019050818103600083015261285d81612541565b9050919050565b6000602082019050818103600083015261287d81612564565b9050919050565b6000602082019050818103600083015261289d81612587565b9050919050565b600060208201905081810360008301526128bd816125aa565b9050919050565b600060208201905081810360008301526128dd816125cd565b9050919050565b600060208201905081810360008301526128fd816125f0565b9050919050565b60006020820190506129196000830184612613565b92915050565b60006020820190506129346000830184612622565b92915050565b6000612944612955565b90506129508282612bac565b919050565b6000604051905090565b600067ffffffffffffffff82111561297a57612979612ce2565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006129b282612afa565b91506129bd83612afa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129f2576129f1612c26565b5b828201905092915050565b6000612a0882612afa565b9150612a1383612afa565b925082612a2357612a22612c55565b5b828204905092915050565b6000612a3982612afa565b9150612a4483612afa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7d57612a7c612c26565b5b828202905092915050565b6000612a9382612afa565b9150612a9e83612afa565b925082821015612ab157612ab0612c26565b5b828203905092915050565b6000612ac782612ada565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612b1c82612b23565b9050919050565b6000612b2e82612b35565b9050919050565b6000612b4082612ada565b9050919050565b60005b83811015612b65578082015181840152602081019050612b4a565b83811115612b74576000848401525b50505050565b60006002820490506001821680612b9257607f821691505b60208210811415612ba657612ba5612c84565b5b50919050565b612bb582612d25565b810181811067ffffffffffffffff82111715612bd457612bd3612ce2565b5b80604052505050565b6000612be882612afa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1b57612c1a612c26565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206275726e000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f20636c61696d20494e4b60008201527f7a00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206469737472756275746520746f6b656e730000000000000000000000602082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61325e81612abc565b811461326957600080fd5b50565b61327581612ace565b811461328057600080fd5b50565b61328c81612afa565b811461329757600080fd5b5056fea2646970667358221220525bbb9659b706534f862bf8c57ce2edf53cafa09014f3f76483df3e9c15f75c64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806379cc679011610102578063ba9a061a11610095578063eb8d244411610064578063eb8d2444146106eb578063ef537f1f14610716578063efe7a50414610741578063f2fde38b1461076c576101d8565b8063ba9a061a1461062f578063c4e370951461065a578063dd62ed3e14610683578063e808e3ff146106c0576101d8565b80639dc29fac116100d15780639dc29fac14610582578063a457c2d7146105ab578063a9059cbb146105e8578063b88a802f14610625576101d8565b806379cc6790146104da57806389781912146105035780638da5cb5b1461052c57806395d89b4114610557576101d8565b8063395093511161017a578063475bd64511610149578063475bd6451461041e5780636105566f1461045b57806370a0823114610486578063715018a6146104c3576101d8565b806339509351146103525780634120657a1461038f5780634218ffa4146103cc57806342966c68146103f5576101d8565b806318160ddd116101b657806318160ddd1461028257806323b872dd146102ad578063267e8ab6146102ea578063313ce56714610327576101d8565b806306fdde03146101dd578063095ea7b3146102085780630bc5dec414610245575b600080fd5b3480156101e957600080fd5b506101f2610795565b6040516101ff9190612682565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190612231565b610827565b60405161023c919061264c565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906122e7565b610845565b6040516102799190612904565b60405180910390f35b34801561028e57600080fd5b5061029761085d565b6040516102a49190612904565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061219e565b610867565b6040516102e1919061264c565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612131565b61095f565b60405161031e9190612904565b60405180910390f35b34801561033357600080fd5b5061033c610afd565b604051610349919061291f565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612231565b610b06565b604051610386919061264c565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612131565b610bb2565b6040516103c3919061264c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612231565b610bd2565b005b34801561040157600080fd5b5061041c600480360381019061041791906122e7565b610cbb565b005b34801561042a57600080fd5b50610445600480360381019061044091906122e7565b610ccf565b6040516104529190612904565b60405180910390f35b34801561046757600080fd5b50610470610d85565b60405161047d9190612631565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612131565b610d9d565b6040516104ba9190612904565b60405180910390f35b3480156104cf57600080fd5b506104d8610de5565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612231565b610e6d565b005b34801561050f57600080fd5b5061052a600480360381019061052591906121f1565b610ee8565b005b34801561053857600080fd5b50610541610fbf565b60405161054e9190612631565b60405180910390f35b34801561056357600080fd5b5061056c610fe9565b6040516105799190612682565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612231565b61107b565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612231565b61116d565b6040516105df919061264c565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612231565b611258565b60405161061c919061264c565b60405180910390f35b61062d611276565b005b34801561063b57600080fd5b50610644611469565b6040516106519190612904565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906122ba565b611471565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061215e565b61150a565b6040516106b79190612904565b60405180910390f35b3480156106cc57600080fd5b506106d5611591565b6040516106e29190612904565b60405180910390f35b3480156106f757600080fd5b5061070061159d565b60405161070d919061264c565b60405180910390f35b34801561072257600080fd5b5061072b6115b0565b6040516107389190612667565b60405180910390f35b34801561074d57600080fd5b506107566115d6565b6040516107639190612904565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190612131565b6115de565b005b6060600380546107a490612b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090612b7a565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b600061083b6108346116d6565b84846116de565b6001905092915050565b60076020528060005260406000206000915090505481565b6000600254905090565b60006108748484846118a9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bf6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906127e4565b60405180910390fd5b6109538561094b6116d6565b8584036116de565b60019150509392505050565b600080736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b81526004016109af9190612631565b60006040518083038186803b1580156109c757600080fd5b505afa1580156109db573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610a049190612271565b905060008151905060008042905060005b83811015610af0576000858281518110610a3257610a31612cb3565b5b602002602001015190506000600760008381526020019081526020016000205490506000811115610a9c57620151808185610a6d9190612a88565b610a7791906129fd565b676f05b59d3b200000610a8a9190612a2e565b85610a9591906129a7565b9450610adb565b620151806361bfe2c485610ab09190612a88565b610aba91906129fd565b676f05b59d3b200000610acd9190612a2e565b85610ad891906129a7565b94505b50508080610ae890612bdd565b915050610a15565b5081945050505050919050565b60006012905090565b6000610ba8610b136116d6565b848460016000610b216116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba391906129a7565b6116de565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff16610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612784565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906127a4565b60405180910390fd5b610cb78282611b2a565b5050565b610ccc610cc66116d6565b82611c8a565b50565b6000806000905060004290506000600760008681526020019081526020016000205490506000811115610d3b57620151808183610d0c9190612a88565b610d1691906129fd565b676f05b59d3b200000610d299190612a2e565b83610d3491906129a7565b9250610d7a565b620151806361bfe2c483610d4f9190612a88565b610d5991906129fd565b676f05b59d3b200000610d6c9190612a2e565b83610d7791906129a7565b92505b829350505050919050565b736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ded6116d6565b73ffffffffffffffffffffffffffffffffffffffff16610e0b610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890612804565b60405180910390fd5b610e6b6000611e61565b565b6000610e8083610e7b6116d6565b61150a565b905081811015610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612824565b60405180910390fd5b610ed983610ed16116d6565b8484036116de565b610ee38383611c8a565b505050565b610ef06116d6565b73ffffffffffffffffffffffffffffffffffffffff16610f0e610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612804565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ff890612b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461102490612b7a565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111205750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612744565b60405180910390fd5b6111698282611c8a565b5050565b6000806001600061117c6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906128c4565b60405180910390fd5b61124d6112446116d6565b858584036116de565b600191505092915050565b600061126c6112656116d6565b84846118a9565b6001905092915050565b600960009054906101000a900460ff166112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612784565b60405180910390fd5b60004290506370d16809811115611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906127c4565b60405180910390fd5b6000736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b81526004016113609190612631565b60006040518083038186803b15801561137857600080fd5b505afa15801561138c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113b59190612271565b905060008151905060008111611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790612884565b60405180910390fd5b600061140b3361095f565b905060008111611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906126e4565b60405180910390fd5b61145933611f27565b6114633382611b2a565b50505050565b6361bfe2c481565b6114796116d6565b73ffffffffffffffffffffffffffffffffffffffff16611497610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490612804565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b676f05b59d3b20000081565b600960009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6370d1680981565b6115e66116d6565b73ffffffffffffffffffffffffffffffffffffffff16611604610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190612804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190612704565b60405180910390fd5b6116d381611e61565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561174e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611745906128a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612724565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189c9190612904565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090612864565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906126a4565b60405180910390fd5b611994838383612035565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190612764565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad91906129a7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b119190612904565b60405180910390a3611b2484848461203a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906128e4565b60405180910390fd5b611ba660008383612035565b8060026000828254611bb891906129a7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0d91906129a7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c729190612904565b60405180910390a3611c866000838361203a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190612844565b60405180910390fd5b611d0682600083612035565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d83906126c4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611de39190612a88565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e489190612904565b60405180910390a3611e5c8360008461203a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000736e5a65b5f9dd7b1b08ff212e210dcd642de0db8b73ffffffffffffffffffffffffffffffffffffffff16638462151c836040518263ffffffff1660e01b8152600401611f769190612631565b60006040518083038186803b158015611f8e57600080fd5b505afa158015611fa2573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fcb9190612271565b9050600081519050600042905060005b8281101561202e576000848281518110611ff857611ff7612cb3565b5b6020026020010151905082600760008381526020019081526020016000208190555050808061202690612bdd565b915050611fdb565b5050505050565b505050565b505050565b600061205261204d8461295f565b61293a565b9050808382526020820190508285602086028201111561207557612074612d16565b5b60005b858110156120a5578161208b888261211c565b845260208401935060208301925050600181019050612078565b5050509392505050565b6000813590506120be81613255565b92915050565b600082601f8301126120d9576120d8612d11565b5b81516120e984826020860161203f565b91505092915050565b6000813590506121018161326c565b92915050565b60008135905061211681613283565b92915050565b60008151905061212b81613283565b92915050565b60006020828403121561214757612146612d20565b5b6000612155848285016120af565b91505092915050565b6000806040838503121561217557612174612d20565b5b6000612183858286016120af565b9250506020612194858286016120af565b9150509250929050565b6000806000606084860312156121b7576121b6612d20565b5b60006121c5868287016120af565b93505060206121d6868287016120af565b92505060406121e786828701612107565b9150509250925092565b6000806040838503121561220857612207612d20565b5b6000612216858286016120af565b9250506020612227858286016120f2565b9150509250929050565b6000806040838503121561224857612247612d20565b5b6000612256858286016120af565b925050602061226785828601612107565b9150509250929050565b60006020828403121561228757612286612d20565b5b600082015167ffffffffffffffff8111156122a5576122a4612d1b565b5b6122b1848285016120c4565b91505092915050565b6000602082840312156122d0576122cf612d20565b5b60006122de848285016120f2565b91505092915050565b6000602082840312156122fd576122fc612d20565b5b600061230b84828501612107565b91505092915050565b61231d81612abc565b82525050565b61232c81612ace565b82525050565b61233b81612b11565b82525050565b600061234c8261298b565b6123568185612996565b9350612366818560208601612b47565b61236f81612d25565b840191505092915050565b6000612387602383612996565b915061239282612d36565b604082019050919050565b60006123aa602283612996565b91506123b582612d85565b604082019050919050565b60006123cd601083612996565b91506123d882612dd4565b602082019050919050565b60006123f0602683612996565b91506123fb82612dfd565b604082019050919050565b6000612413602283612996565b915061241e82612e4c565b604082019050919050565b6000612436602883612996565b915061244182612e9b565b604082019050919050565b6000612459602683612996565b915061246482612eea565b604082019050919050565b600061247c602183612996565b915061248782612f39565b604082019050919050565b600061249f603583612996565b91506124aa82612f88565b604082019050919050565b60006124c2601a83612996565b91506124cd82612fd7565b602082019050919050565b60006124e5602883612996565b91506124f082613000565b604082019050919050565b6000612508602083612996565b91506125138261304f565b602082019050919050565b600061252b602483612996565b915061253682613078565b604082019050919050565b600061254e602183612996565b9150612559826130c7565b604082019050919050565b6000612571602583612996565b915061257c82613116565b604082019050919050565b6000612594600983612996565b915061259f82613165565b602082019050919050565b60006125b7602483612996565b91506125c28261318e565b604082019050919050565b60006125da602583612996565b91506125e5826131dd565b604082019050919050565b60006125fd601f83612996565b91506126088261322c565b602082019050919050565b61261c81612afa565b82525050565b61262b81612b04565b82525050565b60006020820190506126466000830184612314565b92915050565b60006020820190506126616000830184612323565b92915050565b600060208201905061267c6000830184612332565b92915050565b6000602082019050818103600083015261269c8184612341565b905092915050565b600060208201905081810360008301526126bd8161237a565b9050919050565b600060208201905081810360008301526126dd8161239d565b9050919050565b600060208201905081810360008301526126fd816123c0565b9050919050565b6000602082019050818103600083015261271d816123e3565b9050919050565b6000602082019050818103600083015261273d81612406565b9050919050565b6000602082019050818103600083015261275d81612429565b9050919050565b6000602082019050818103600083015261277d8161244c565b9050919050565b6000602082019050818103600083015261279d8161246f565b9050919050565b600060208201905081810360008301526127bd81612492565b9050919050565b600060208201905081810360008301526127dd816124b5565b9050919050565b600060208201905081810360008301526127fd816124d8565b9050919050565b6000602082019050818103600083015261281d816124fb565b9050919050565b6000602082019050818103600083015261283d8161251e565b9050919050565b6000602082019050818103600083015261285d81612541565b9050919050565b6000602082019050818103600083015261287d81612564565b9050919050565b6000602082019050818103600083015261289d81612587565b9050919050565b600060208201905081810360008301526128bd816125aa565b9050919050565b600060208201905081810360008301526128dd816125cd565b9050919050565b600060208201905081810360008301526128fd816125f0565b9050919050565b60006020820190506129196000830184612613565b92915050565b60006020820190506129346000830184612622565b92915050565b6000612944612955565b90506129508282612bac565b919050565b6000604051905090565b600067ffffffffffffffff82111561297a57612979612ce2565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006129b282612afa565b91506129bd83612afa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129f2576129f1612c26565b5b828201905092915050565b6000612a0882612afa565b9150612a1383612afa565b925082612a2357612a22612c55565b5b828204905092915050565b6000612a3982612afa565b9150612a4483612afa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7d57612a7c612c26565b5b828202905092915050565b6000612a9382612afa565b9150612a9e83612afa565b925082821015612ab157612ab0612c26565b5b828203905092915050565b6000612ac782612ada565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612b1c82612b23565b9050919050565b6000612b2e82612b35565b9050919050565b6000612b4082612ada565b9050919050565b60005b83811015612b65578082015181840152602081019050612b4a565b83811115612b74576000848401525b50505050565b60006002820490506001821680612b9257607f821691505b60208210811415612ba657612ba5612c84565b5b50919050565b612bb582612d25565b810181811067ffffffffffffffff82111715612bd457612bd3612ce2565b5b80604052505050565b6000612be882612afa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1b57612c1a612c26565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206275726e000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f20636c61696d20494e4b60008201527f7a00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206469737472756275746520746f6b656e730000000000000000000000602082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61325e81612abc565b811461326957600080fd5b50565b61327581612ace565b811461328057600080fd5b50565b61328c81612afa565b811461329757600080fd5b5056fea2646970667358221220525bbb9659b706534f862bf8c57ce2edf53cafa09014f3f76483df3e9c15f75c64736f6c63430008070033
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.