More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,391 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deploy Standard ... | 16050973 | 15 days ago | IN | 200 CRO | 1.00005655 | ||||
Deploy Standard ... | 16050966 | 15 days ago | IN | 200 CRO | 1.0000515 | ||||
Deploy Standard ... | 16050951 | 15 days ago | IN | 200 CRO | 1.00005655 | ||||
Deploy Standard ... | 16050945 | 15 days ago | IN | 200 CRO | 1.0000515 | ||||
Deploy Standard ... | 16050933 | 15 days ago | IN | 200 CRO | 1.00005655 | ||||
Deploy Standard ... | 16050919 | 15 days ago | IN | 200 CRO | 1.00005655 | ||||
Deploy Standard ... | 16050905 | 15 days ago | IN | 200 CRO | 1.00004645 | ||||
Deploy Standard ... | 14713354 | 102 days ago | IN | 200 CRO | 5.7152971 | ||||
Deploy Standard ... | 14638860 | 107 days ago | IN | 200 CRO | 5.7150547 | ||||
Deploy Standard ... | 14538821 | 114 days ago | IN | 200 CRO | 5.6291845 | ||||
Deploy Standard ... | 14527566 | 114 days ago | IN | 200 CRO | 5.7151153 | ||||
Deploy Standard ... | 14502141 | 116 days ago | IN | 200 CRO | 5.6288815 | ||||
Deploy Standard ... | 14472262 | 118 days ago | IN | 200 CRO | 5.7150547 | ||||
Deploy Standard ... | 14460800 | 119 days ago | IN | 200 CRO | 5.6114388 | ||||
Deploy Standard ... | 14460701 | 119 days ago | IN | 200 CRO | 5.6285785 | ||||
Deploy Standard ... | 14436247 | 120 days ago | IN | 200 CRO | 5.7149335 | ||||
Deploy Standard ... | 14424495 | 121 days ago | IN | 200 CRO | 5.66141929 | ||||
Deploy Standard ... | 14315207 | 128 days ago | IN | 200 CRO | 5.66105911 | ||||
Deploy Standard ... | 14227100 | 134 days ago | IN | 200 CRO | 5.7154183 | ||||
Deploy Standard ... | 14226198 | 134 days ago | IN | 200 CRO | 5.66111914 | ||||
Deploy Standard ... | 14118544 | 141 days ago | IN | 200 CRO | 1.00004645 | ||||
Deploy Standard ... | 14118482 | 141 days ago | IN | 200 CRO | 1.00004645 | ||||
Deploy Standard ... | 14077145 | 144 days ago | IN | 200 CRO | 5.7146305 | ||||
Deploy Standard ... | 14038222 | 147 days ago | IN | 200 CRO | 5.7148729 | ||||
Deploy Standard ... | 14015252 | 148 days ago | IN | 200 CRO | 1.00004645 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16050973 | 15 days ago | Contract Creation | 0 CRO | |||
16050973 | 15 days ago | 200 CRO | ||||
16050966 | 15 days ago | Contract Creation | 0 CRO | |||
16050966 | 15 days ago | 200 CRO | ||||
16050951 | 15 days ago | Contract Creation | 0 CRO | |||
16050951 | 15 days ago | 200 CRO | ||||
16050945 | 15 days ago | Contract Creation | 0 CRO | |||
16050945 | 15 days ago | 200 CRO | ||||
16050933 | 15 days ago | Contract Creation | 0 CRO | |||
16050933 | 15 days ago | 200 CRO | ||||
16050919 | 15 days ago | Contract Creation | 0 CRO | |||
16050919 | 15 days ago | 200 CRO | ||||
16050905 | 15 days ago | Contract Creation | 0 CRO | |||
16050905 | 15 days ago | 200 CRO | ||||
14713354 | 102 days ago | Contract Creation | 0 CRO | |||
14713354 | 102 days ago | 200 CRO | ||||
14638860 | 107 days ago | Contract Creation | 0 CRO | |||
14638860 | 107 days ago | 200 CRO | ||||
14538821 | 114 days ago | Contract Creation | 0 CRO | |||
14538821 | 114 days ago | 200 CRO | ||||
14527566 | 114 days ago | Contract Creation | 0 CRO | |||
14527566 | 114 days ago | 200 CRO | ||||
14502141 | 116 days ago | Contract Creation | 0 CRO | |||
14502141 | 116 days ago | 200 CRO | ||||
14472262 | 118 days ago | Contract Creation | 0 CRO |
Loading...
Loading
Contract Name:
StandardTokenGenerator
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-05-12 */ // Sources flattened with hardhat v2.9.3 https://hardhat.org // File contracts/StandardToken.sol pragma solidity ^0.6.12; /** * @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); } /** * @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); } /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(block.timestamp > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } contract standardToken is Context, IERC20, IERC20Metadata,Ownable { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; bool public generatedUsingDxMint = true; uint256 private _totalSupply; bool public mintingFinishedPermanent = false; string private _name; string private _symbol; uint8 private _decimals; address public _creator; /** * @dev Sets the values for {name}, {symbol} and {decimals}. * * * All two of these values are immutable: they can only be set once during * construction. */ constructor (address creator_,string memory name_, string memory symbol_,uint8 decimals_, uint256 tokenSupply_) public{ _name = name_; _symbol = symbol_; _decimals = decimals_; _creator = creator_; _mint(_creator,tokenSupply_); mintingFinishedPermanent = true; } /** * @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 _decimals; } /** * @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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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(!mintingFinishedPermanent,"cant be minted anymore!"); 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 { } } // File contracts/StandardTokenGenerator.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; interface ITokenFactory { function registerToken(address _tokenAddress) external; } contract StandardTokenGenerator is Ownable { uint256 public _totalTokens = 0; uint256 private _feeAmount = 2 * 10**17; address payable private _bankAddress; address[] public _allTokens; mapping(address => address[]) private _userTokens; address public tokenFactoryAddress; /** * @dev Sets the values for {name}, {symbol} and {decimals}. * * * All two of these values are immutable: they can only be set once during * construction. */ constructor(address _tokenFactoryAddress) public { _bankAddress = payable(msg.sender); tokenFactoryAddress = _tokenFactoryAddress; } function deployStandardToken( string memory name_, string memory symbol_, uint8 decimals_, uint256 tokenSupply_ ) external payable returns (address) { require( decimals_ > 0, "Decimal amount is invalid. It should be greater than 0" ); require( tokenSupply_ > 0, "Token Supply is invalid. It should be greater than 0" ); if (_feeAmount > 0) { require( msg.value >= _feeAmount, "Fee Amount must be >= Standard Token Creation Fees!" ); } _bankAddress.transfer(_feeAmount); standardToken token = new standardToken( msg.sender, name_, symbol_, decimals_, tokenSupply_ ); token.transferOwnership(msg.sender); address tokenAddress = address(token); _allTokens.push(tokenAddress); _userTokens[msg.sender].push(tokenAddress); _totalTokens++; ITokenFactory(tokenFactoryAddress).registerToken(tokenAddress); return tokenAddress; } function getNumberOfUserTokens(address _userAddress) public view returns (uint256) { return _userTokens[_userAddress].length; } function getTokenAddressAtIndex(address _userAddress, uint256 index_) public view returns (address) { return _userTokens[_userAddress][index_]; } function getUserTokens(address _userAddress) public view returns (address[] memory) { return _userTokens[_userAddress]; } function getInfo(address _userAddress) public view returns (uint256, address) { return (_feeAmount, _bankAddress); } function setFees(uint256 _newFeeAmount) external onlyOwner { _feeAmount = _newFeeAmount; } function setBankAddress(address payable _newBankAddress) external onlyOwner { _bankAddress = _newBankAddress; } receive() external payable { revert(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenFactoryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_allTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"tokenSupply_","type":"uint256"}],"name":"deployStandardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getNumberOfUserTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"},{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"getTokenAddressAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getUserTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newBankAddress","type":"address"}],"name":"setBankAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeeAmount","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenFactoryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260006003556702c68af0bb14000060045534801561002157600080fd5b506040516122b63803806122b68339818101604052602081101561004457600080fd5b505160006100506100cd565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060058054336001600160a01b031991821617909155600880549091166001600160a01b03929092169190911790556100d1565b3390565b6121d6806100e06000396000f3fe608060405260043610620000d95760003560e01c806302e218cf14620000e95780633d18678e146200023f5780634d3c7c63146200026f578063519dc8d214620002ac5780636956f3d51462000335578063715018a6146200035f5780637cac487814620003775780638da5cb5b14620003ae578063a69df4b514620003c6578063aa5965ae14620003de578063b6c52324146200040c578063be19f0a71462000424578063dd467064146200043c578063f2fde38b146200046a578063fc3c0eee14620004a1578063ffdd5cf114620004d857620000e4565b36620000e457600080fd5b600080fd5b62000223600480360360808110156200010157600080fd5b810190602081018135600160201b8111156200011c57600080fd5b8201836020820111156200012f57600080fd5b803590602001918460018302840111600160201b831117156200015157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115620001a457600080fd5b820183602082011115620001b757600080fd5b803590602001918460018302840111600160201b83111715620001d957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050506020013562000530565b604080516001600160a01b039092168252519081900360200190f35b3480156200024c57600080fd5b506200026d600480360360208110156200026557600080fd5b5035620008bf565b005b3480156200027c57600080fd5b5062000223600480360360408110156200029557600080fd5b506001600160a01b03813516906020013562000920565b348015620002b957600080fd5b50620002e360048036036020811015620002d257600080fd5b50356001600160a01b031662000961565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200032157818101518382015260200162000307565b505050509050019250505060405180910390f35b3480156200034257600080fd5b506200034d620009d9565b60408051918252519081900360200190f35b3480156200036c57600080fd5b506200026d620009df565b3480156200038457600080fd5b506200034d600480360360208110156200039d57600080fd5b50356001600160a01b031662000a74565b348015620003bb57600080fd5b506200022362000a8f565b348015620003d357600080fd5b506200026d62000a9e565b348015620003eb57600080fd5b5062000223600480360360208110156200040457600080fd5b503562000b90565b3480156200041957600080fd5b506200034d62000bb8565b3480156200043157600080fd5b506200022362000bbe565b3480156200044957600080fd5b506200026d600480360360208110156200046257600080fd5b503562000bcd565b3480156200047757600080fd5b506200026d600480360360208110156200049057600080fd5b50356001600160a01b031662000c70565b348015620004ae57600080fd5b506200026d60048036036020811015620004c757600080fd5b50356001600160a01b031662000d5d565b348015620004e557600080fd5b506200050f60048036036020811015620004fe57600080fd5b50356001600160a01b031662000ddb565b604080519283526001600160a01b0390911660208301528051918290030190f35b6000808360ff1611620005755760405162461bcd60e51b8152600401808060200182810382526036815260200180620021486036913960400191505060405180910390fd5b60008211620005b65760405162461bcd60e51b8152600401808060200182810382526034815260200180620021146034913960400191505060405180910390fd5b600454156200060257600454341015620006025760405162461bcd60e51b8152600401808060200182810382526033815260200180620020e16033913960400191505060405180910390fd5b6005546004546040516001600160a01b039092169181156108fc0291906000818181858888f193505050501580156200063f573d6000803e3d6000fd5b5060003386868686604051620006559062000df3565b80866001600160a01b0316815260200180602001806020018560ff168152602001848152602001838103835287818151815260200191508051906020019080838360005b83811015620006b357818101518382015260200162000699565b50505050905090810190601f168015620006e15780820380516001836020036101000a031916815260200191505b50838103825286518152865160209182019188019080838360005b8381101562000716578181015183820152602001620006fc565b50505050905090810190601f168015620007445780820380516001836020036101000a031916815260200191505b50975050505050505050604051809103906000f0801580156200076b573d6000803e3d6000fd5b509050806001600160a01b031663f2fde38b336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620007be57600080fd5b505af1158015620007d3573d6000803e3d6000fd5b50506006805460018181019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b038087166001600160a01b0319928316811790935533600090815260076020908152604080832080548089018255908452918320909101805490941685179093556003805490950190945560085482516213049560e71b815260048101949094529151879650911693506309824a809260248084019391929182900301818387803b1580156200089b57600080fd5b505af1158015620008b0573d6000803e3d6000fd5b50929998505050505050505050565b620008c962000def565b6000546001600160a01b039081169116146200091b576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600455565b6001600160a01b03821660009081526007602052604081208054839081106200094557fe5b6000918252602090912001546001600160a01b03169392505050565b6001600160a01b038116600090815260076020908152604091829020805483518184028101840190945280845260609392830182828015620009cd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620009ae575b50505050509050919050565b60035481565b620009e962000def565b6000546001600160a01b0390811691161462000a3b576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020620020c1833981519152908390a3600080546001600160a01b0319169055565b6001600160a01b031660009081526007602052604090205490565b6000546001600160a01b031690565b6001546001600160a01b0316331462000ae95760405162461bcd60e51b81526004018080602001828103825260238152602001806200217e6023913960400191505060405180910390fd5b600254421162000b40576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020620020c183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6006818154811062000b9e57fe5b6000918252602090912001546001600160a01b0316905081565b60025490565b6008546001600160a01b031681565b62000bd762000def565b6000546001600160a01b0390811691161462000c29576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020620020c1833981519152908290a350565b62000c7a62000def565b6000546001600160a01b0390811691161462000ccc576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b6001600160a01b03811662000d135760405162461bcd60e51b81526004018080602001828103825260268152602001806200207b6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020620020c183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b62000d6762000def565b6000546001600160a01b0390811691161462000db9576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004546005546001600160a01b0316915091565b3390565b6112798062000e028339019056fe60806040526005805460ff199081166001179091556007805490911690553480156200002a57600080fd5b506040516200127938038062001279833981810160405260a08110156200005057600080fd5b8151602083018051604051929492938301929190846401000000008211156200007857600080fd5b9083019060208201858111156200008e57600080fd5b8251640100000000811182820188101715620000a957600080fd5b82525081516020918201929091019080838360005b83811015620000d8578181015183820152602001620000be565b50505050905090810190601f168015620001065780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012a57600080fd5b9083019060208201858111156200014057600080fd5b82516401000000008111828201881017156200015b57600080fd5b82525081516020918201929091019080838360005b838110156200018a57818101518382015260200162000170565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090506000620001d7620002a4565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350835162000236906008906020870190620003cf565b5082516200024c906009906020860190620003cf565b50600a805460ff191660ff841617610100600160a81b0319166101006001600160a01b03888116820292909217928390556200028b92041682620002a8565b50506007805460ff19166001179055506200046b915050565b3390565b60075460ff161562000301576040805162461bcd60e51b815260206004820152601760248201527f63616e74206265206d696e74656420616e796d6f726521000000000000000000604482015290519081900360640190fd5b6001600160a01b0382166200035d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200036b60008383620003ca565b60068054820190556001600160a01b0382166000818152600360209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041257805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044257825182559160200191906001019062000425565b506200045092915062000454565b5090565b5b8082111562000450576000815560010162000455565b610dfe806200047b6000396000f3fe608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461017e57806318160ddd146101be57806323b872dd146101d8578063313ce5671461020e578063395093511461022c57806370a0823114610258578063715018a61461027e578063787b1191146102885780638da5cb5b1461029057806395d89b41146102b4578063a457c2d7146102bc578063a69df4b5146102e8578063a9059cbb146102f0578063b6c523241461031c578063bc8bde6414610324578063dd4670641461032c578063dd62ed3e14610349578063f2fde38b14610377578063f5eae9361461039d575b600080fd5b6101096103a5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014357818101518382015260200161012b565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101aa6004803603604081101561019457600080fd5b506001600160a01b03813516906020013561043b565b604080519115158252519081900360200190f35b6101c6610458565b60408051918252519081900360200190f35b6101aa600480360360608110156101ee57600080fd5b506001600160a01b0381358116916020810135909116906040013561045e565b61021661050d565b6040805160ff9092168252519081900360200190f35b6101aa6004803603604081101561024257600080fd5b506001600160a01b038135169060200135610516565b6101c66004803603602081101561026e57600080fd5b50356001600160a01b0316610561565b61028661057c565b005b6101aa61060c565b610298610615565b604080516001600160a01b039092168252519081900360200190f35b610109610624565b6101aa600480360360408110156102d257600080fd5b506001600160a01b038135169060200135610685565b61028661071d565b6101aa6004803603604081101561030657600080fd5b506001600160a01b03813516906020013561080b565b6101c661081f565b610298610825565b6102866004803603602081101561034257600080fd5b5035610839565b6101c66004803603604081101561035f57600080fd5b506001600160a01b03813581169160200135166108d7565b6102866004803603602081101561038d57600080fd5b50356001600160a01b0316610902565b6101aa6109e8565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b600061044f6104486109f1565b84846109f5565b50600192915050565b60065490565b600061046b848484610ae1565b6001600160a01b03841660009081526004602052604081208161048c6109f1565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104ee5760405162461bcd60e51b8152600401808060200182810382526028815260200180610cd06028913960400191505060405180910390fd5b610502856104fa6109f1565b8584036109f5565b506001949350505050565b600a5460ff1690565b600061044f6105236109f1565b8484600460006105316109f1565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054016109f5565b6001600160a01b031660009081526003602052604090205490565b6105846109f1565b6000546001600160a01b039081169116146105d4576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020610d18833981519152908390a3600080546001600160a01b0319169055565b60055460ff1681565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b600080600460006106946109f1565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106ff5760405162461bcd60e51b8152600401808060200182810382526025815260200180610da46025913960400191505060405180910390fd5b61071361070a6109f1565b858584036109f5565b5060019392505050565b6001546001600160a01b031633146107665760405162461bcd60e51b8152600401808060200182810382526023815260200180610d816023913960400191505060405180910390fd5b60025442116107bc576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020610d1883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061044f6108186109f1565b8484610ae1565b60025490565b600a5461010090046001600160a01b031681565b6108416109f1565b6000546001600160a01b03908116911614610891576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020610d18833981519152908290a350565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61090a6109f1565b6000546001600160a01b0390811691161461095a576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b6001600160a01b03811661099f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610c626026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020610d1883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60075460ff1681565b3390565b6001600160a01b038316610a3a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d5d6024913960400191505060405180910390fd5b6001600160a01b038216610a7f5760405162461bcd60e51b8152600401808060200182810382526022815260200180610c886022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b265760405162461bcd60e51b8152600401808060200182810382526025815260200180610d386025913960400191505060405180910390fd5b6001600160a01b038216610b6b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610c3f6023913960400191505060405180910390fd5b610b76838383610c39565b6001600160a01b03831660009081526003602052604090205481811015610bce5760405162461bcd60e51b8152600401808060200182810382526026815260200180610caa6026913960400191505060405180910390fd5b6001600160a01b0380851660008181526003602090815260408083208787039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eeba8997397fbb46e7d3d35fe9aa1b79b8c8a1704029eb096fa78c63a25af27e64736f6c634300060c00334f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e046656520416d6f756e74206d757374206265203e3d205374616e6461726420546f6b656e204372656174696f6e204665657321546f6b656e20537570706c7920697320696e76616c69642e2049742073686f756c642062652067726561746572207468616e2030446563696d616c20616d6f756e7420697320696e76616c69642e2049742073686f756c642062652067726561746572207468616e2030596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220535e3dabf73622de81164871da397523d8b6726b339fe91ef510acf5baabf4b164736f6c634300060c00330000000000000000000000008a20d4507909179c8767e7abddb6004882a5bb86
Deployed Bytecode
0x608060405260043610620000d95760003560e01c806302e218cf14620000e95780633d18678e146200023f5780634d3c7c63146200026f578063519dc8d214620002ac5780636956f3d51462000335578063715018a6146200035f5780637cac487814620003775780638da5cb5b14620003ae578063a69df4b514620003c6578063aa5965ae14620003de578063b6c52324146200040c578063be19f0a71462000424578063dd467064146200043c578063f2fde38b146200046a578063fc3c0eee14620004a1578063ffdd5cf114620004d857620000e4565b36620000e457600080fd5b600080fd5b62000223600480360360808110156200010157600080fd5b810190602081018135600160201b8111156200011c57600080fd5b8201836020820111156200012f57600080fd5b803590602001918460018302840111600160201b831117156200015157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115620001a457600080fd5b820183602082011115620001b757600080fd5b803590602001918460018302840111600160201b83111715620001d957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050506020013562000530565b604080516001600160a01b039092168252519081900360200190f35b3480156200024c57600080fd5b506200026d600480360360208110156200026557600080fd5b5035620008bf565b005b3480156200027c57600080fd5b5062000223600480360360408110156200029557600080fd5b506001600160a01b03813516906020013562000920565b348015620002b957600080fd5b50620002e360048036036020811015620002d257600080fd5b50356001600160a01b031662000961565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200032157818101518382015260200162000307565b505050509050019250505060405180910390f35b3480156200034257600080fd5b506200034d620009d9565b60408051918252519081900360200190f35b3480156200036c57600080fd5b506200026d620009df565b3480156200038457600080fd5b506200034d600480360360208110156200039d57600080fd5b50356001600160a01b031662000a74565b348015620003bb57600080fd5b506200022362000a8f565b348015620003d357600080fd5b506200026d62000a9e565b348015620003eb57600080fd5b5062000223600480360360208110156200040457600080fd5b503562000b90565b3480156200041957600080fd5b506200034d62000bb8565b3480156200043157600080fd5b506200022362000bbe565b3480156200044957600080fd5b506200026d600480360360208110156200046257600080fd5b503562000bcd565b3480156200047757600080fd5b506200026d600480360360208110156200049057600080fd5b50356001600160a01b031662000c70565b348015620004ae57600080fd5b506200026d60048036036020811015620004c757600080fd5b50356001600160a01b031662000d5d565b348015620004e557600080fd5b506200050f60048036036020811015620004fe57600080fd5b50356001600160a01b031662000ddb565b604080519283526001600160a01b0390911660208301528051918290030190f35b6000808360ff1611620005755760405162461bcd60e51b8152600401808060200182810382526036815260200180620021486036913960400191505060405180910390fd5b60008211620005b65760405162461bcd60e51b8152600401808060200182810382526034815260200180620021146034913960400191505060405180910390fd5b600454156200060257600454341015620006025760405162461bcd60e51b8152600401808060200182810382526033815260200180620020e16033913960400191505060405180910390fd5b6005546004546040516001600160a01b039092169181156108fc0291906000818181858888f193505050501580156200063f573d6000803e3d6000fd5b5060003386868686604051620006559062000df3565b80866001600160a01b0316815260200180602001806020018560ff168152602001848152602001838103835287818151815260200191508051906020019080838360005b83811015620006b357818101518382015260200162000699565b50505050905090810190601f168015620006e15780820380516001836020036101000a031916815260200191505b50838103825286518152865160209182019188019080838360005b8381101562000716578181015183820152602001620006fc565b50505050905090810190601f168015620007445780820380516001836020036101000a031916815260200191505b50975050505050505050604051809103906000f0801580156200076b573d6000803e3d6000fd5b509050806001600160a01b031663f2fde38b336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620007be57600080fd5b505af1158015620007d3573d6000803e3d6000fd5b50506006805460018181019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b038087166001600160a01b0319928316811790935533600090815260076020908152604080832080548089018255908452918320909101805490941685179093556003805490950190945560085482516213049560e71b815260048101949094529151879650911693506309824a809260248084019391929182900301818387803b1580156200089b57600080fd5b505af1158015620008b0573d6000803e3d6000fd5b50929998505050505050505050565b620008c962000def565b6000546001600160a01b039081169116146200091b576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600455565b6001600160a01b03821660009081526007602052604081208054839081106200094557fe5b6000918252602090912001546001600160a01b03169392505050565b6001600160a01b038116600090815260076020908152604091829020805483518184028101840190945280845260609392830182828015620009cd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620009ae575b50505050509050919050565b60035481565b620009e962000def565b6000546001600160a01b0390811691161462000a3b576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020620020c1833981519152908390a3600080546001600160a01b0319169055565b6001600160a01b031660009081526007602052604090205490565b6000546001600160a01b031690565b6001546001600160a01b0316331462000ae95760405162461bcd60e51b81526004018080602001828103825260238152602001806200217e6023913960400191505060405180910390fd5b600254421162000b40576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020620020c183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6006818154811062000b9e57fe5b6000918252602090912001546001600160a01b0316905081565b60025490565b6008546001600160a01b031681565b62000bd762000def565b6000546001600160a01b0390811691161462000c29576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020620020c1833981519152908290a350565b62000c7a62000def565b6000546001600160a01b0390811691161462000ccc576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b6001600160a01b03811662000d135760405162461bcd60e51b81526004018080602001828103825260268152602001806200207b6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020620020c183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b62000d6762000def565b6000546001600160a01b0390811691161462000db9576040805162461bcd60e51b81526020600482018190526024820152600080516020620020a1833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004546005546001600160a01b0316915091565b3390565b6112798062000e028339019056fe60806040526005805460ff199081166001179091556007805490911690553480156200002a57600080fd5b506040516200127938038062001279833981810160405260a08110156200005057600080fd5b8151602083018051604051929492938301929190846401000000008211156200007857600080fd5b9083019060208201858111156200008e57600080fd5b8251640100000000811182820188101715620000a957600080fd5b82525081516020918201929091019080838360005b83811015620000d8578181015183820152602001620000be565b50505050905090810190601f168015620001065780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012a57600080fd5b9083019060208201858111156200014057600080fd5b82516401000000008111828201881017156200015b57600080fd5b82525081516020918201929091019080838360005b838110156200018a57818101518382015260200162000170565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090506000620001d7620002a4565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350835162000236906008906020870190620003cf565b5082516200024c906009906020860190620003cf565b50600a805460ff191660ff841617610100600160a81b0319166101006001600160a01b03888116820292909217928390556200028b92041682620002a8565b50506007805460ff19166001179055506200046b915050565b3390565b60075460ff161562000301576040805162461bcd60e51b815260206004820152601760248201527f63616e74206265206d696e74656420616e796d6f726521000000000000000000604482015290519081900360640190fd5b6001600160a01b0382166200035d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200036b60008383620003ca565b60068054820190556001600160a01b0382166000818152600360209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041257805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044257825182559160200191906001019062000425565b506200045092915062000454565b5090565b5b8082111562000450576000815560010162000455565b610dfe806200047b6000396000f3fe608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461017e57806318160ddd146101be57806323b872dd146101d8578063313ce5671461020e578063395093511461022c57806370a0823114610258578063715018a61461027e578063787b1191146102885780638da5cb5b1461029057806395d89b41146102b4578063a457c2d7146102bc578063a69df4b5146102e8578063a9059cbb146102f0578063b6c523241461031c578063bc8bde6414610324578063dd4670641461032c578063dd62ed3e14610349578063f2fde38b14610377578063f5eae9361461039d575b600080fd5b6101096103a5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014357818101518382015260200161012b565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101aa6004803603604081101561019457600080fd5b506001600160a01b03813516906020013561043b565b604080519115158252519081900360200190f35b6101c6610458565b60408051918252519081900360200190f35b6101aa600480360360608110156101ee57600080fd5b506001600160a01b0381358116916020810135909116906040013561045e565b61021661050d565b6040805160ff9092168252519081900360200190f35b6101aa6004803603604081101561024257600080fd5b506001600160a01b038135169060200135610516565b6101c66004803603602081101561026e57600080fd5b50356001600160a01b0316610561565b61028661057c565b005b6101aa61060c565b610298610615565b604080516001600160a01b039092168252519081900360200190f35b610109610624565b6101aa600480360360408110156102d257600080fd5b506001600160a01b038135169060200135610685565b61028661071d565b6101aa6004803603604081101561030657600080fd5b506001600160a01b03813516906020013561080b565b6101c661081f565b610298610825565b6102866004803603602081101561034257600080fd5b5035610839565b6101c66004803603604081101561035f57600080fd5b506001600160a01b03813581169160200135166108d7565b6102866004803603602081101561038d57600080fd5b50356001600160a01b0316610902565b6101aa6109e8565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b600061044f6104486109f1565b84846109f5565b50600192915050565b60065490565b600061046b848484610ae1565b6001600160a01b03841660009081526004602052604081208161048c6109f1565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104ee5760405162461bcd60e51b8152600401808060200182810382526028815260200180610cd06028913960400191505060405180910390fd5b610502856104fa6109f1565b8584036109f5565b506001949350505050565b600a5460ff1690565b600061044f6105236109f1565b8484600460006105316109f1565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054016109f5565b6001600160a01b031660009081526003602052604090205490565b6105846109f1565b6000546001600160a01b039081169116146105d4576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020610d18833981519152908390a3600080546001600160a01b0319169055565b60055460ff1681565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b600080600460006106946109f1565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106ff5760405162461bcd60e51b8152600401808060200182810382526025815260200180610da46025913960400191505060405180910390fd5b61071361070a6109f1565b858584036109f5565b5060019392505050565b6001546001600160a01b031633146107665760405162461bcd60e51b8152600401808060200182810382526023815260200180610d816023913960400191505060405180910390fd5b60025442116107bc576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020610d1883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061044f6108186109f1565b8484610ae1565b60025490565b600a5461010090046001600160a01b031681565b6108416109f1565b6000546001600160a01b03908116911614610891576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020610d18833981519152908290a350565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61090a6109f1565b6000546001600160a01b0390811691161461095a576040805162461bcd60e51b81526020600482018190526024820152600080516020610cf8833981519152604482015290519081900360640190fd5b6001600160a01b03811661099f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610c626026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020610d1883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60075460ff1681565b3390565b6001600160a01b038316610a3a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d5d6024913960400191505060405180910390fd5b6001600160a01b038216610a7f5760405162461bcd60e51b8152600401808060200182810382526022815260200180610c886022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b265760405162461bcd60e51b8152600401808060200182810382526025815260200180610d386025913960400191505060405180910390fd5b6001600160a01b038216610b6b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610c3f6023913960400191505060405180910390fd5b610b76838383610c39565b6001600160a01b03831660009081526003602052604090205481811015610bce5760405162461bcd60e51b8152600401808060200182810382526026815260200180610caa6026913960400191505060405180910390fd5b6001600160a01b0380851660008181526003602090815260408083208787039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eeba8997397fbb46e7d3d35fe9aa1b79b8c8a1704029eb096fa78c63a25af27e64736f6c634300060c00334f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e046656520416d6f756e74206d757374206265203e3d205374616e6461726420546f6b656e204372656174696f6e204665657321546f6b656e20537570706c7920697320696e76616c69642e2049742073686f756c642062652067726561746572207468616e2030446563696d616c20616d6f756e7420697320696e76616c69642e2049742073686f756c642062652067726561746572207468616e2030596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220535e3dabf73622de81164871da397523d8b6726b339fe91ef510acf5baabf4b164736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008a20d4507909179c8767e7abddb6004882a5bb86
-----Decoded View---------------
Arg [0] : _tokenFactoryAddress (address): 0x8A20D4507909179C8767E7ABDdB6004882A5bB86
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a20d4507909179c8767e7abddb6004882a5bb86
Deployed Bytecode Sourcemap
22762:2919:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25662:8;;;22762:2919;;;;23437:1186;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23437:1186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23437:1186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23437:1186:0;;;;;;;;-1:-1:-1;23437:1186:0;;-1:-1:-1;;;;;23437:1186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23437:1186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23437:1186:0;;-1:-1:-1;;23437:1186:0;;;;;-1:-1:-1;;;23437:1186:0;;;;:::i;:::-;;;;-1:-1:-1;;;;;23437:1186:0;;;;;;;;;;;;;;25356:104;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:104:0;;:::i;:::-;;24812:191;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24812:191:0;;;;;;;;:::i;25011:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25011:167:0;-1:-1:-1;;;;;25011:167:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22812:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11308:148;;;;;;;;;;;;;:::i;24631:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24631:173:0;-1:-1:-1;;;;;24631:173:0;;:::i;10665:79::-;;;;;;;;;;;;;:::i;12330:305::-;;;;;;;;;;;;;:::i;22939:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22939:27:0;;:::i;11863:89::-;;;;;;;;;;;;;:::i;23029:34::-;;;;;;;;;;;;;:::i;12028:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12028:226:0;;:::i;11611:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11611:244:0;-1:-1:-1;;;;;11611:244:0;;:::i;25468:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25468:148:0;-1:-1:-1;;;;;25468:148:0;;:::i;25186:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25186:162:0;-1:-1:-1;;;;;25186:162:0;;:::i;:::-;;;;;;;-1:-1:-1;;;;;25186:162:0;;;;;;;;;;;;;;;;23437:1186;23618:7;23672:1;23660:9;:13;;;23638:117;;;;-1:-1:-1;;;23638:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23803:1;23788:12;:16;23766:118;;;;-1:-1:-1;;;23766:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23899:10;;:14;23895:183;;23969:10;;23956:9;:23;;23930:136;;;;-1:-1:-1;;;23930:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24088:12;;24110:10;;24088:33;;-1:-1:-1;;;;;24088:12:0;;;;:33;;;;;24110:10;24088:12;:33;:12;:33;24110:10;24088:12;:33;;;;;;;;;;;;;;;;;;;;;24132:19;24186:10;24211:5;24231:7;24253:9;24277:12;24154:146;;;;;:::i;:::-;;;-1:-1:-1;;;;;24154:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24154:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24132:168;;24311:5;-1:-1:-1;;;;;24311:23:0;;24335:10;24311:35;;;;;;;;;;;;;-1:-1:-1;;;;;24311:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24405:10:0;:29;;;;;;;;;;;;;-1:-1:-1;;;;;24405:29:0;;;-1:-1:-1;;;;;;24405:29:0;;;;;;;;24457:10;24357:20;24445:23;;;:11;24405:29;24445:23;;;;;;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;24498:12;:14;;;;;;;;24537:19;;24523:62;;-1:-1:-1;;;24523:62:0;;;;;;;;;;;24388:5;;-1:-1:-1;24537:19:0;;;-1:-1:-1;24523:48:0;;:62;;;;;24357:20;;24523:62;;;;;;24357:20;24537:19;24523:62;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24603:12:0;;23437:1186;-1:-1:-1;;;;;;;;;23437:1186:0:o;25356:104::-;10887:12;:10;:12::i;:::-;10877:6;;-1:-1:-1;;;;;10877:6:0;;;:22;;;10869:67;;;;;-1:-1:-1;;;10869:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10869:67:0;;;;;;;;;;;;;;;25426:10:::1;:26:::0;25356:104::o;24812:191::-;-1:-1:-1;;;;;24962:25:0;;24930:7;24962:25;;;:11;:25;;;;;:33;;24988:6;;24962:33;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24962:33:0;;24812:191;-1:-1:-1;;;24812:191:0:o;25011:167::-;-1:-1:-1;;;;;25145:25:0;;;;;;:11;:25;;;;;;;;;25138:32;;;;;;;;;;;;;;;;;25104:16;;25138:32;;;25145:25;25138:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25138:32:0;;;;;;;;;;;;;;;;;;;;;;;25011:167;;;:::o;22812:31::-;;;;:::o;11308:148::-;10887:12;:10;:12::i;:::-;10877:6;;-1:-1:-1;;;;;10877:6:0;;;:22;;;10869:67;;;;;-1:-1:-1;;;10869:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10869:67:0;;;;;;;;;;;;;;;11415:1:::1;11399:6:::0;;11378:40:::1;::::0;-1:-1:-1;;;;;11399:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;11378:40:0;11415:1;;11378:40:::1;11446:1;11429:19:::0;;-1:-1:-1;;;;;;11429:19:0::1;::::0;;11308:148::o;24631:173::-;-1:-1:-1;;;;;24764:25:0;24732:7;24764:25;;;:11;:25;;;;;:32;;24631:173::o;10665:79::-;10703:7;10730:6;-1:-1:-1;;;;;10730:6:0;10665:79;:::o;12330:305::-;12382:14;;-1:-1:-1;;;;;12382:14:0;12400:10;12382:28;12374:76;;;;-1:-1:-1;;;12374:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12487:9;;12469:15;:27;12461:72;;;;;-1:-1:-1;;;12461:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12578:14;;;12570:6;;12549:44;;-1:-1:-1;;;;;12578:14:0;;;;12570:6;;;;-1:-1:-1;;;;;;;;;;;12549:44:0;;12613:14;;;12604:23;;-1:-1:-1;;;;;;12604:23:0;-1:-1:-1;;;;;12613:14:0;;;12604:23;;;;;;12330:305::o;22939:27::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22939:27:0;;-1:-1:-1;22939:27:0;:::o;11863:89::-;11935:9;;11863:89;:::o;23029:34::-;;;-1:-1:-1;;;;;23029:34:0;;:::o;12028:226::-;10887:12;:10;:12::i;:::-;10877:6;;-1:-1:-1;;;;;10877:6:0;;;:22;;;10869:67;;;;;-1:-1:-1;;;10869:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10869:67:0;;;;;;;;;;;;;;;12109:6:::1;::::0;;;12092:23;;-1:-1:-1;;;;;;12092:23:0;;::::1;-1:-1:-1::0;;;;;12109:6:0;::::1;12092:23;::::0;;;12126:19:::1;::::0;;12168:15:::1;:22:::0;::::1;12156:9;:34:::0;12206:40:::1;::::0;12109:6;;-1:-1:-1;;;;;;;;;;;12206:40:0;12109:6;;12206:40:::1;12028:226:::0;:::o;11611:244::-;10887:12;:10;:12::i;:::-;10877:6;;-1:-1:-1;;;;;10877:6:0;;;:22;;;10869:67;;;;;-1:-1:-1;;;10869:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10869:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11700:22:0;::::1;11692:73;;;;-1:-1:-1::0;;;11692:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11802:6;::::0;;11781:38:::1;::::0;-1:-1:-1;;;;;11781:38:0;;::::1;::::0;11802:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;11781:38:0;::::1;11830:6;:17:::0;;-1:-1:-1;;;;;;11830:17:0::1;-1:-1:-1::0;;;;;11830:17:0;;;::::1;::::0;;;::::1;::::0;;11611:244::o;25468:148::-;10887:12;:10;:12::i;:::-;10877:6;;-1:-1:-1;;;;;10877:6:0;;;:22;;;10869:67;;;;;-1:-1:-1;;;10869:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10869:67:0;;;;;;;;;;;;;;;25578:12:::1;:30:::0;;-1:-1:-1;;;;;;25578:30:0::1;-1:-1:-1::0;;;;;25578:30:0;;;::::1;::::0;;;::::1;::::0;;25468:148::o;25186:162::-;25315:10;;25327:12;;-1:-1:-1;;;;;25327:12:0;25186:162;;;:::o;3937:98::-;4017:10;3937:98;:::o;-1:-1:-1:-;;;;;;;;:::o
Swarm Source
ipfs://535e3dabf73622de81164871da397523d8b6726b339fe91ef510acf5baabf4b1
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.