ERC-20
Overview
Max Total Supply
300,000,000 YCT
Holders
60
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YCT
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)
// contracts/YCT.sol // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract YCT is ERC20, Ownable { struct TimeLocked { uint256 amount; uint256 releaseTime; } TimeLocked[4] public lockedItems; event Lock(uint256 amount, uint256 releaseTime); event Unlock(address indexed to, uint256 amount); constructor() ERC20("YesCrypto Token", "YCT") { uint256 totalAmount = 300000000 * (10 ** uint256(decimals())); uint256 sixtyPercent = totalAmount / 100 * 60; uint256 tenPercent = totalAmount / 100 * 10; _mint(_msgSender(), sixtyPercent); lock(0, tenPercent, 1643673600); // 2022-02-01 00:00 GMT lock(1, tenPercent, 1651363200); // 2022-05-01 00:00 GMT lock(2, tenPercent, 1659312000); // 2022-08-01 00:00 GMT lock(3, tenPercent, 1667260800); // 2022-11-01 00:00 GMT } function lock(uint i, uint256 amount, uint256 releaseTime) internal { lockedItems[i] = TimeLocked({amount: amount, releaseTime: releaseTime}); emit Lock(amount, releaseTime); } function unlock() public { for(uint i = 0; i < lockedItems.length; i++) { TimeLocked memory item = lockedItems[i]; if (item.amount > 0 && item.releaseTime <= block.timestamp) { lockedItems[i].amount = 0; _mint(owner(), item.amount); emit Unlock(owner(), item.amount); } } } function totalSupply() public view override returns (uint256) { uint256 total = super.totalSupply(); for(uint i = 0; i < lockedItems.length; i++) { total += lockedItems[i].amount; } return total; } }
// 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; 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 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: * * - `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; /** * @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; } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"Lock","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unlock","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedItems","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f59657343727970746f20546f6b656e00000000000000000000000000000000008152506040518060400160405280600381526020017f5943540000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620004b5565b508060049080519060200190620000af929190620004b5565b505050620000d2620000c6620001d460201b60201c565b620001dc60201b60201c565b6000620000e4620002a260201b60201c565b60ff16600a620000f591906200070a565b6311e1a30062000106919062000847565b90506000603c6064836200011b919062000677565b62000127919062000847565b90506000600a6064846200013c919062000677565b62000148919062000847565b90506200016b6200015e620001d460201b60201c565b83620002ab60201b60201c565b620001836000826361f878006200042460201b60201c565b6200019b60018263626dcd806200042460201b60201c565b620001b36002826362e717806200042460201b60201c565b620001cb60038263636061806200042460201b60201c565b505050620009da565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200031e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000315906200059d565b60405180910390fd5b6200033260008383620004ab60201b60201c565b80600260008282546200034691906200061a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039d91906200061a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004049190620005bf565b60405180910390a36200042060008383620004b060201b60201c565b5050565b6040518060400160405280838152602001828152506006846004811062000450576200044f62000975565b5b6002020160008201518160000155602082015181600101559050507f46d326b399b600d54f10f9cc18580fd65427ff111e1ce74350b39e244cbfbcf882826040516200049e929190620005dc565b60405180910390a1505050565b505050565b505050565b828054620004c390620008b2565b90600052602060002090601f016020900481019282620004e7576000855562000533565b82601f106200050257805160ff191683800117855562000533565b8280016001018555821562000533579182015b828111156200053257825182559160200191906001019062000515565b5b50905062000542919062000546565b5090565b5b808211156200056157600081600090555060010162000547565b5090565b600062000574601f8362000609565b91506200058182620009b1565b602082019050919050565b6200059781620008a8565b82525050565b60006020820190508181036000830152620005b88162000565565b9050919050565b6000602082019050620005d660008301846200058c565b92915050565b6000604082019050620005f360008301856200058c565b6200060260208301846200058c565b9392505050565b600082825260208201905092915050565b60006200062782620008a8565b91506200063483620008a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200066c576200066b620008e8565b5b828201905092915050565b60006200068482620008a8565b91506200069183620008a8565b925082620006a457620006a362000917565b5b828204905092915050565b6000808291508390505b60018511156200070157808604811115620006d957620006d8620008e8565b5b6001851615620006e95780820291505b8081029050620006f985620009a4565b9450620006b9565b94509492505050565b60006200071782620008a8565b91506200072483620008a8565b9250620007537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200075b565b905092915050565b6000826200076d576001905062000840565b816200077d576000905062000840565b8160018114620007965760028114620007a157620007d7565b600191505062000840565b60ff841115620007b657620007b5620008e8565b5b8360020a915084821115620007d057620007cf620008e8565b5b5062000840565b5060208310610133831016604e8410600b8410161715620008115782820a9050838111156200080b576200080a620008e8565b5b62000840565b620008208484846001620006af565b925090508184048111156200083a5762000839620008e8565b5b81810290505b9392505050565b60006200085482620008a8565b91506200086183620008a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200089d576200089c620008e8565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620008cb57607f821691505b60208210811415620008e257620008e162000946565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c4480620009ea6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a69df4b511610066578063a69df4b5146102c6578063a9059cbb146102d0578063dd62ed3e14610300578063f2fde38b1461033057610100565b8063715018a6146102505780638da5cb5b1461025a57806395d89b4114610278578063a457c2d71461029657610100565b8063313ce567116100d3578063313ce567146101a157806336008d2b146101bf57806339509351146101f057806370a082311461022057610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034c565b60405161011a919061153d565b60405180910390f35b61013d600480360381019061013891906112c7565b6103de565b60405161014a9190611522565b60405180910390f35b61015b6103fc565b604051610168919061169f565b60405180910390f35b61018b60048036038101906101869190611274565b610459565b6040516101989190611522565b60405180910390f35b6101a9610551565b6040516101b691906116e3565b60405180910390f35b6101d960048036038101906101d49190611307565b61055a565b6040516101e79291906116ba565b60405180910390f35b61020a600480360381019061020591906112c7565b610584565b6040516102179190611522565b60405180910390f35b61023a60048036038101906102359190611207565b610630565b604051610247919061169f565b60405180910390f35b610258610678565b005b610262610700565b60405161026f9190611507565b60405180910390f35b61028061072a565b60405161028d919061153d565b60405180910390f35b6102b060048036038101906102ab91906112c7565b6107bc565b6040516102bd9190611522565b60405180910390f35b6102ce6108a7565b005b6102ea60048036038101906102e591906112c7565b6109b2565b6040516102f79190611522565b60405180910390f35b61031a60048036038101906103159190611234565b6109d0565b604051610327919061169f565b60405180910390f35b61034a60048036038101906103459190611207565b610a57565b005b60606003805461035b906117f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610387906117f8565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b60006103f26103eb610b4f565b8484610b57565b6001905092915050565b600080610407610d22565b905060005b60048110156104515760068160048110610429576104286118d1565b5b60020201600001548261043c919061171a565b915080806104499061182a565b91505061040c565b508091505090565b6000610466848484610d2c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104b1610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906115df565b60405180910390fd5b6105458561053d610b4f565b858403610b57565b60019150509392505050565b60006012905090565b6006816004811061056a57600080fd5b600202016000915090508060000154908060010154905082565b6000610626610591610b4f565b84846001600061059f610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610621919061171a565b610b57565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610680610b4f565b73ffffffffffffffffffffffffffffffffffffffff1661069e610700565b73ffffffffffffffffffffffffffffffffffffffff16146106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb906115ff565b60405180910390fd5b6106fe6000610fad565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610739906117f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610765906117f8565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b600080600160006107cb610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f9061165f565b60405180910390fd5b61089c610893610b4f565b85858403610b57565b600191505092915050565b60005b60048110156109af576000600682600481106108c9576108c86118d1565b5b6002020160405180604001604052908160008201548152602001600182015481525050905060008160000151118015610906575042816020015111155b1561099b57600060068360048110610921576109206118d1565b5b6002020160000181905550610941610937610700565b8260000151611073565b610949610700565b73ffffffffffffffffffffffffffffffffffffffff167f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f18260000151604051610992919061169f565b60405180910390a25b5080806109a79061182a565b9150506108aa565b50565b60006109c66109bf610b4f565b8484610d2c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a5f610b4f565b73ffffffffffffffffffffffffffffffffffffffff16610a7d610700565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906115ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a9061157f565b60405180910390fd5b610b4c81610fad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061163f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061159f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d15919061169f565b60405180910390a3505050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061161f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e039061155f565b60405180910390fd5b610e178383836111d3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906115bf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f30919061171a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f94919061169f565b60405180910390a3610fa78484846111d8565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061167f565b60405180910390fd5b6110ef600083836111d3565b8060026000828254611101919061171a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611156919061171a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111bb919061169f565b60405180910390a36111cf600083836111d8565b5050565b505050565b505050565b6000813590506111ec81611be0565b92915050565b60008135905061120181611bf7565b92915050565b60006020828403121561121d5761121c611900565b5b600061122b848285016111dd565b91505092915050565b6000806040838503121561124b5761124a611900565b5b6000611259858286016111dd565b925050602061126a858286016111dd565b9150509250929050565b60008060006060848603121561128d5761128c611900565b5b600061129b868287016111dd565b93505060206112ac868287016111dd565b92505060406112bd868287016111f2565b9150509250925092565b600080604083850312156112de576112dd611900565b5b60006112ec858286016111dd565b92505060206112fd858286016111f2565b9150509250929050565b60006020828403121561131d5761131c611900565b5b600061132b848285016111f2565b91505092915050565b61133d81611770565b82525050565b61134c81611782565b82525050565b600061135d826116fe565b6113678185611709565b93506113778185602086016117c5565b61138081611905565b840191505092915050565b6000611398602383611709565b91506113a382611916565b604082019050919050565b60006113bb602683611709565b91506113c682611965565b604082019050919050565b60006113de602283611709565b91506113e9826119b4565b604082019050919050565b6000611401602683611709565b915061140c82611a03565b604082019050919050565b6000611424602883611709565b915061142f82611a52565b604082019050919050565b6000611447602083611709565b915061145282611aa1565b602082019050919050565b600061146a602583611709565b915061147582611aca565b604082019050919050565b600061148d602483611709565b915061149882611b19565b604082019050919050565b60006114b0602583611709565b91506114bb82611b68565b604082019050919050565b60006114d3601f83611709565b91506114de82611bb7565b602082019050919050565b6114f2816117ae565b82525050565b611501816117b8565b82525050565b600060208201905061151c6000830184611334565b92915050565b60006020820190506115376000830184611343565b92915050565b600060208201905081810360008301526115578184611352565b905092915050565b600060208201905081810360008301526115788161138b565b9050919050565b60006020820190508181036000830152611598816113ae565b9050919050565b600060208201905081810360008301526115b8816113d1565b9050919050565b600060208201905081810360008301526115d8816113f4565b9050919050565b600060208201905081810360008301526115f881611417565b9050919050565b600060208201905081810360008301526116188161143a565b9050919050565b600060208201905081810360008301526116388161145d565b9050919050565b6000602082019050818103600083015261165881611480565b9050919050565b60006020820190508181036000830152611678816114a3565b9050919050565b60006020820190508181036000830152611698816114c6565b9050919050565b60006020820190506116b460008301846114e9565b92915050565b60006040820190506116cf60008301856114e9565b6116dc60208301846114e9565b9392505050565b60006020820190506116f860008301846114f8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611725826117ae565b9150611730836117ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561176557611764611873565b5b828201905092915050565b600061177b8261178e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117e35780820151818401526020810190506117c8565b838111156117f2576000848401525b50505050565b6000600282049050600182168061181057607f821691505b60208210811415611824576118236118a2565b5b50919050565b6000611835826117ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561186857611867611873565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611be981611770565b8114611bf457600080fd5b50565b611c00816117ae565b8114611c0b57600080fd5b5056fea264697066735822122083ec829f929d1b2093cfcd97a63f2113069a0f1fc14b3e630e51730acc96eabf64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a69df4b511610066578063a69df4b5146102c6578063a9059cbb146102d0578063dd62ed3e14610300578063f2fde38b1461033057610100565b8063715018a6146102505780638da5cb5b1461025a57806395d89b4114610278578063a457c2d71461029657610100565b8063313ce567116100d3578063313ce567146101a157806336008d2b146101bf57806339509351146101f057806370a082311461022057610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034c565b60405161011a919061153d565b60405180910390f35b61013d600480360381019061013891906112c7565b6103de565b60405161014a9190611522565b60405180910390f35b61015b6103fc565b604051610168919061169f565b60405180910390f35b61018b60048036038101906101869190611274565b610459565b6040516101989190611522565b60405180910390f35b6101a9610551565b6040516101b691906116e3565b60405180910390f35b6101d960048036038101906101d49190611307565b61055a565b6040516101e79291906116ba565b60405180910390f35b61020a600480360381019061020591906112c7565b610584565b6040516102179190611522565b60405180910390f35b61023a60048036038101906102359190611207565b610630565b604051610247919061169f565b60405180910390f35b610258610678565b005b610262610700565b60405161026f9190611507565b60405180910390f35b61028061072a565b60405161028d919061153d565b60405180910390f35b6102b060048036038101906102ab91906112c7565b6107bc565b6040516102bd9190611522565b60405180910390f35b6102ce6108a7565b005b6102ea60048036038101906102e591906112c7565b6109b2565b6040516102f79190611522565b60405180910390f35b61031a60048036038101906103159190611234565b6109d0565b604051610327919061169f565b60405180910390f35b61034a60048036038101906103459190611207565b610a57565b005b60606003805461035b906117f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610387906117f8565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b60006103f26103eb610b4f565b8484610b57565b6001905092915050565b600080610407610d22565b905060005b60048110156104515760068160048110610429576104286118d1565b5b60020201600001548261043c919061171a565b915080806104499061182a565b91505061040c565b508091505090565b6000610466848484610d2c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104b1610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906115df565b60405180910390fd5b6105458561053d610b4f565b858403610b57565b60019150509392505050565b60006012905090565b6006816004811061056a57600080fd5b600202016000915090508060000154908060010154905082565b6000610626610591610b4f565b84846001600061059f610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610621919061171a565b610b57565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610680610b4f565b73ffffffffffffffffffffffffffffffffffffffff1661069e610700565b73ffffffffffffffffffffffffffffffffffffffff16146106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb906115ff565b60405180910390fd5b6106fe6000610fad565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610739906117f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610765906117f8565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b600080600160006107cb610b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f9061165f565b60405180910390fd5b61089c610893610b4f565b85858403610b57565b600191505092915050565b60005b60048110156109af576000600682600481106108c9576108c86118d1565b5b6002020160405180604001604052908160008201548152602001600182015481525050905060008160000151118015610906575042816020015111155b1561099b57600060068360048110610921576109206118d1565b5b6002020160000181905550610941610937610700565b8260000151611073565b610949610700565b73ffffffffffffffffffffffffffffffffffffffff167f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f18260000151604051610992919061169f565b60405180910390a25b5080806109a79061182a565b9150506108aa565b50565b60006109c66109bf610b4f565b8484610d2c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a5f610b4f565b73ffffffffffffffffffffffffffffffffffffffff16610a7d610700565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906115ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a9061157f565b60405180910390fd5b610b4c81610fad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061163f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061159f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d15919061169f565b60405180910390a3505050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061161f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e039061155f565b60405180910390fd5b610e178383836111d3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906115bf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f30919061171a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f94919061169f565b60405180910390a3610fa78484846111d8565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061167f565b60405180910390fd5b6110ef600083836111d3565b8060026000828254611101919061171a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611156919061171a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111bb919061169f565b60405180910390a36111cf600083836111d8565b5050565b505050565b505050565b6000813590506111ec81611be0565b92915050565b60008135905061120181611bf7565b92915050565b60006020828403121561121d5761121c611900565b5b600061122b848285016111dd565b91505092915050565b6000806040838503121561124b5761124a611900565b5b6000611259858286016111dd565b925050602061126a858286016111dd565b9150509250929050565b60008060006060848603121561128d5761128c611900565b5b600061129b868287016111dd565b93505060206112ac868287016111dd565b92505060406112bd868287016111f2565b9150509250925092565b600080604083850312156112de576112dd611900565b5b60006112ec858286016111dd565b92505060206112fd858286016111f2565b9150509250929050565b60006020828403121561131d5761131c611900565b5b600061132b848285016111f2565b91505092915050565b61133d81611770565b82525050565b61134c81611782565b82525050565b600061135d826116fe565b6113678185611709565b93506113778185602086016117c5565b61138081611905565b840191505092915050565b6000611398602383611709565b91506113a382611916565b604082019050919050565b60006113bb602683611709565b91506113c682611965565b604082019050919050565b60006113de602283611709565b91506113e9826119b4565b604082019050919050565b6000611401602683611709565b915061140c82611a03565b604082019050919050565b6000611424602883611709565b915061142f82611a52565b604082019050919050565b6000611447602083611709565b915061145282611aa1565b602082019050919050565b600061146a602583611709565b915061147582611aca565b604082019050919050565b600061148d602483611709565b915061149882611b19565b604082019050919050565b60006114b0602583611709565b91506114bb82611b68565b604082019050919050565b60006114d3601f83611709565b91506114de82611bb7565b602082019050919050565b6114f2816117ae565b82525050565b611501816117b8565b82525050565b600060208201905061151c6000830184611334565b92915050565b60006020820190506115376000830184611343565b92915050565b600060208201905081810360008301526115578184611352565b905092915050565b600060208201905081810360008301526115788161138b565b9050919050565b60006020820190508181036000830152611598816113ae565b9050919050565b600060208201905081810360008301526115b8816113d1565b9050919050565b600060208201905081810360008301526115d8816113f4565b9050919050565b600060208201905081810360008301526115f881611417565b9050919050565b600060208201905081810360008301526116188161143a565b9050919050565b600060208201905081810360008301526116388161145d565b9050919050565b6000602082019050818103600083015261165881611480565b9050919050565b60006020820190508181036000830152611678816114a3565b9050919050565b60006020820190508181036000830152611698816114c6565b9050919050565b60006020820190506116b460008301846114e9565b92915050565b60006040820190506116cf60008301856114e9565b6116dc60208301846114e9565b9392505050565b60006020820190506116f860008301846114f8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611725826117ae565b9150611730836117ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561176557611764611873565b5b828201905092915050565b600061177b8261178e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117e35780820151818401526020810190506117c8565b838111156117f2576000848401525b50505050565b6000600282049050600182168061181057607f821691505b60208210811415611824576118236118a2565b5b50919050565b6000611835826117ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561186857611867611873565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611be981611770565b8114611bf457600080fd5b50565b611c00816117ae565b8114611c0b57600080fd5b5056fea264697066735822122083ec829f929d1b2093cfcd97a63f2113069a0f1fc14b3e630e51730acc96eabf64736f6c63430008070033
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.