ERC-20
Overview
Max Total Supply
48,090.323233375345130871 OKLAY
Holders
213
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.00000000825 OKLAYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity Multiple files format)
pragma solidity ^0.5.0; import 'Context.sol'; import 'SafeMath.ERC.sol'; import 'IERC20.sol'; contract ERC20 is Context, IERC20 { using SafeMathERC for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; address private _owner; address private _nextOwner; address private _minter; bool public isInitialized; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(address owner_, address minter_, string memory name_, string memory symbol_, uint8 decimals_, bool init) public { _owner = owner_; _minter = minter_; _name = name_; _symbol = symbol_; _decimals = decimals_; isInitialized = init; } modifier onlyOwner { require(_msgSender() == owner()); _; } modifier onlyOwnerOrBeforeInit { require(_msgSender() == owner() || !isInitialized); _; } modifier onlyMinter { require(_msgSender() == minter()); _; } function owner() public view returns (address) { return _owner; } function nextOwner() public view returns (address) { return _nextOwner; } function minter() public view returns (address) { return _minter; } function setNextOwner(address nextOwner_) public onlyOwner { require(nextOwner_ != address(0)); _nextOwner = nextOwner_; } function changeOwner() public { require(_msgSender() == nextOwner()); emit OwnershipTransferred(owner(), nextOwner()); _owner = nextOwner(); _nextOwner = address(0); } function setMinter(address minter_) public onlyOwner { require(minter_ != address(0)); _minter = minter_; } function setTokenInfo(string memory tokenName, string memory tokenSymbol) public onlyOwnerOrBeforeInit { _name = tokenName; _symbol = tokenSymbol; if(isInitialized == false) isInitialized = true; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner_, address spender) public view returns (uint256) { return _allowances[owner_][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function mint(address account, uint256 amount) public onlyMinter { _mint(account, 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 * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(address account, uint256 amount) public onlyMinter { _burn(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 { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { 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); } }
pragma solidity ^0.5.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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.0; 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 ); }
pragma solidity ^0.5.0; /** * @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 SafeMathERC { /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nextOwner_","type":"address"}],"name":"setNextOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInitialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nextOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"name":"setTokenInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"owner_","type":"address"},{"name":"minter_","type":"address"},{"name":"name_","type":"string"},{"name":"symbol_","type":"string"},{"name":"decimals_","type":"uint8"},{"name":"init","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200176f3803806200176f833981018060405260c08110156200003757600080fd5b81516020830151604084018051929491938201926401000000008111156200005e57600080fd5b820160208101848111156200007257600080fd5b81516401000000008111828201871017156200008d57600080fd5b50509291906020018051640100000000811115620000aa57600080fd5b82016020810184811115620000be57600080fd5b8151640100000000811182820187101715620000d957600080fd5b50506020828101516040909301516005805461010060a860020a031916610100600160a060020a038c8116919091029190911790915560078054600160a060020a031916918a1691909117905586519295509293506200013f91600391870190620001a7565b50825162000155906004906020860190620001a7565b506005805460ff90931660ff199093169290921790915560078054911515740100000000000000000000000000000000000000000260a060020a60ff0219909216919091179055506200024c92505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b6200024991905b8082111562000228576000815560010162000233565b90565b611513806200025c6000396000f3fe60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012157806307546172146101ab578063095ea7b3146101dc57806318160ddd1461022957806323b872dd146102505780632d202d2414610293578063313ce567146102c8578063392e53cd146102f3578063395093511461030857806340c10f191461034157806362a094771461037a57806369f3331d1461038f57806370a08231146103a45780638da5cb5b146103d757806395d89b41146103ec5780639dc29fac14610401578063a457c2d71461043a578063a9059cbb14610473578063da262f58146104ac578063dd62ed3e146105e6578063fca3b5aa14610621575b600080fd5b34801561012d57600080fd5b50610136610654565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101c06106eb565b60408051600160a060020a039092168252519081900360200190f35b3480156101e857600080fd5b50610215600480360360408110156101ff57600080fd5b50600160a060020a0381351690602001356106fa565b604080519115158252519081900360200190f35b34801561023557600080fd5b5061023e610717565b60408051918252519081900360200190f35b34801561025c57600080fd5b506102156004803603606081101561027357600080fd5b50600160a060020a0381358116916020810135909116906040013561071d565b34801561029f57600080fd5b506102c6600480360360208110156102b657600080fd5b5035600160a060020a03166107fc565b005b3480156102d457600080fd5b506102dd61086c565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b50610215610875565b34801561031457600080fd5b506102156004803603604081101561032b57600080fd5b50600160a060020a038135169060200135610896565b34801561034d57600080fd5b506102c66004803603604081101561036457600080fd5b50600160a060020a0381351690602001356108ea565b34801561038657600080fd5b506102c6610924565b34801561039b57600080fd5b506101c06109f9565b3480156103b057600080fd5b5061023e600480360360208110156103c757600080fd5b5035600160a060020a0316610a08565b3480156103e357600080fd5b506101c0610a23565b3480156103f857600080fd5b50610136610a37565b34801561040d57600080fd5b506102c66004803603604081101561042457600080fd5b50600160a060020a038135169060200135610a98565b34801561044657600080fd5b506102156004803603604081101561045d57600080fd5b50600160a060020a038135169060200135610ace565b34801561047f57600080fd5b506102156004803603604081101561049657600080fd5b50600160a060020a038135169060200135610b80565b3480156104b857600080fd5b506102c6600480360360408110156104cf57600080fd5b8101906020810181356401000000008111156104ea57600080fd5b8201836020820111156104fc57600080fd5b8035906020019184600183028401116401000000008311171561051e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057157600080fd5b82018360208201111561058357600080fd5b803590602001918460018302840111640100000000831117156105a557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b94945050505050565b3480156105f257600080fd5b5061023e6004803603604081101561060957600080fd5b50600160a060020a0381358116916020013516610c6d565b34801561062d57600080fd5b506102c66004803603602081101561064457600080fd5b5035600160a060020a0316610c98565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b505050505090505b90565b600754600160a060020a031690565b600061070e610707610d08565b8484610d0c565b50600192915050565b60025490565b600061072a848484610e79565b6107f284610736610d08565b6107ed85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b600160a060020a0316600160a060020a0316815260200190815260200160002060006107c6610d08565b600160a060020a03168152602081019190915260400160002054919063ffffffff61109a16565b610d0c565b5060019392505050565b610804610a23565b600160a060020a0316610815610d08565b600160a060020a03161461082857600080fd5b600160a060020a038116151561083d57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055460ff1690565b60075474010000000000000000000000000000000000000000900460ff1681565b600061070e6108a3610d08565b846107ed85600160006108b4610d08565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61113416565b6108f26106eb565b600160a060020a0316610903610d08565b600160a060020a03161461091657600080fd5b6109208282611198565b5050565b61092c6109f9565b600160a060020a031661093d610d08565b600160a060020a03161461095057600080fd5b6109586109f9565b600160a060020a0316610969610a23565b600160a060020a03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36109a66109f9565b60058054600160a060020a03929092166101000274ffffffffffffffffffffffffffffffffffffffff00199092169190911790556006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a031690565b600160a060020a031660009081526020819052604090205490565b6005546101009004600160a060020a031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e05780601f106106b5576101008083540402835291602001916106e0565b610aa06106eb565b600160a060020a0316610ab1610d08565b600160a060020a031614610ac457600080fd5b610920828261128d565b600061070e610adb610d08565b846107ed85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000610b49610d08565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61109a16565b600061070e610b8d610d08565b8484610e79565b610b9c610a23565b600160a060020a0316610bad610d08565b600160a060020a03161480610bdd575060075474010000000000000000000000000000000000000000900460ff16155b1515610be857600080fd5b8151610bfb90600390602085019061144f565b508051610c0f90600490602084019061144f565b5060075474010000000000000000000000000000000000000000900460ff161515610920576007805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610ca0610a23565b600160a060020a0316610cb1610d08565b600160a060020a031614610cc457600080fd5b600160a060020a0381161515610cd957600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b3390565b600160a060020a0383161515610d91576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610e17576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610eff576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610f85576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815290819052919091205461100b91839063ffffffff61109a16565b600160a060020a038085166000908152602081905260408082209390935590841681522054611040908263ffffffff61113416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561112c5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f15781810151838201526020016110d9565b50505050905090810190601f16801561111e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611191576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a03821615156111f8576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461120b908263ffffffff61113416565b600255600160a060020a038216600090815260208190526040902054611237908263ffffffff61113416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515611313576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a038516600090815290819052919091205461139991839063ffffffff61109a16565b600160a060020a0383166000908152602081905260409020556002546113c5908263ffffffff61140d16565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061119183836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061109a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061149057805160ff19168380011785556114bd565b828001600101855582156114bd579182015b828111156114bd5782518255916020019190600101906114a2565b506114c99291506114cd565b5090565b6106e891905b808211156114c957600081556001016114d356fea165627a7a723058205ba4b1c8b9e22c3a38ba2c0b63984d7d63796e8e57e21cacc2b884cf1127e81600290000000000000000000000009abc3f6c11dbd83234d6e6b2c373dfc1893f648d000000000000000000000000012c6d79b189e1abd1efac759b275c5d49abd16400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000154f726269742042726964676520457468204b6c617900000000000000000000000000000000000000000000000000000000000000000000000000000000000005454b4c4159000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012157806307546172146101ab578063095ea7b3146101dc57806318160ddd1461022957806323b872dd146102505780632d202d2414610293578063313ce567146102c8578063392e53cd146102f3578063395093511461030857806340c10f191461034157806362a094771461037a57806369f3331d1461038f57806370a08231146103a45780638da5cb5b146103d757806395d89b41146103ec5780639dc29fac14610401578063a457c2d71461043a578063a9059cbb14610473578063da262f58146104ac578063dd62ed3e146105e6578063fca3b5aa14610621575b600080fd5b34801561012d57600080fd5b50610136610654565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101c06106eb565b60408051600160a060020a039092168252519081900360200190f35b3480156101e857600080fd5b50610215600480360360408110156101ff57600080fd5b50600160a060020a0381351690602001356106fa565b604080519115158252519081900360200190f35b34801561023557600080fd5b5061023e610717565b60408051918252519081900360200190f35b34801561025c57600080fd5b506102156004803603606081101561027357600080fd5b50600160a060020a0381358116916020810135909116906040013561071d565b34801561029f57600080fd5b506102c6600480360360208110156102b657600080fd5b5035600160a060020a03166107fc565b005b3480156102d457600080fd5b506102dd61086c565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b50610215610875565b34801561031457600080fd5b506102156004803603604081101561032b57600080fd5b50600160a060020a038135169060200135610896565b34801561034d57600080fd5b506102c66004803603604081101561036457600080fd5b50600160a060020a0381351690602001356108ea565b34801561038657600080fd5b506102c6610924565b34801561039b57600080fd5b506101c06109f9565b3480156103b057600080fd5b5061023e600480360360208110156103c757600080fd5b5035600160a060020a0316610a08565b3480156103e357600080fd5b506101c0610a23565b3480156103f857600080fd5b50610136610a37565b34801561040d57600080fd5b506102c66004803603604081101561042457600080fd5b50600160a060020a038135169060200135610a98565b34801561044657600080fd5b506102156004803603604081101561045d57600080fd5b50600160a060020a038135169060200135610ace565b34801561047f57600080fd5b506102156004803603604081101561049657600080fd5b50600160a060020a038135169060200135610b80565b3480156104b857600080fd5b506102c6600480360360408110156104cf57600080fd5b8101906020810181356401000000008111156104ea57600080fd5b8201836020820111156104fc57600080fd5b8035906020019184600183028401116401000000008311171561051e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057157600080fd5b82018360208201111561058357600080fd5b803590602001918460018302840111640100000000831117156105a557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b94945050505050565b3480156105f257600080fd5b5061023e6004803603604081101561060957600080fd5b50600160a060020a0381358116916020013516610c6d565b34801561062d57600080fd5b506102c66004803603602081101561064457600080fd5b5035600160a060020a0316610c98565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b505050505090505b90565b600754600160a060020a031690565b600061070e610707610d08565b8484610d0c565b50600192915050565b60025490565b600061072a848484610e79565b6107f284610736610d08565b6107ed85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b600160a060020a0316600160a060020a0316815260200190815260200160002060006107c6610d08565b600160a060020a03168152602081019190915260400160002054919063ffffffff61109a16565b610d0c565b5060019392505050565b610804610a23565b600160a060020a0316610815610d08565b600160a060020a03161461082857600080fd5b600160a060020a038116151561083d57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055460ff1690565b60075474010000000000000000000000000000000000000000900460ff1681565b600061070e6108a3610d08565b846107ed85600160006108b4610d08565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61113416565b6108f26106eb565b600160a060020a0316610903610d08565b600160a060020a03161461091657600080fd5b6109208282611198565b5050565b61092c6109f9565b600160a060020a031661093d610d08565b600160a060020a03161461095057600080fd5b6109586109f9565b600160a060020a0316610969610a23565b600160a060020a03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36109a66109f9565b60058054600160a060020a03929092166101000274ffffffffffffffffffffffffffffffffffffffff00199092169190911790556006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a031690565b600160a060020a031660009081526020819052604090205490565b6005546101009004600160a060020a031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e05780601f106106b5576101008083540402835291602001916106e0565b610aa06106eb565b600160a060020a0316610ab1610d08565b600160a060020a031614610ac457600080fd5b610920828261128d565b600061070e610adb610d08565b846107ed85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000610b49610d08565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61109a16565b600061070e610b8d610d08565b8484610e79565b610b9c610a23565b600160a060020a0316610bad610d08565b600160a060020a03161480610bdd575060075474010000000000000000000000000000000000000000900460ff16155b1515610be857600080fd5b8151610bfb90600390602085019061144f565b508051610c0f90600490602084019061144f565b5060075474010000000000000000000000000000000000000000900460ff161515610920576007805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610ca0610a23565b600160a060020a0316610cb1610d08565b600160a060020a031614610cc457600080fd5b600160a060020a0381161515610cd957600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b3390565b600160a060020a0383161515610d91576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610e17576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610eff576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610f85576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815290819052919091205461100b91839063ffffffff61109a16565b600160a060020a038085166000908152602081905260408082209390935590841681522054611040908263ffffffff61113416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561112c5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f15781810151838201526020016110d9565b50505050905090810190601f16801561111e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611191576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a03821615156111f8576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461120b908263ffffffff61113416565b600255600160a060020a038216600090815260208190526040902054611237908263ffffffff61113416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515611313576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a038516600090815290819052919091205461139991839063ffffffff61109a16565b600160a060020a0383166000908152602081905260409020556002546113c5908263ffffffff61140d16565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061119183836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061109a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061149057805160ff19168380011785556114bd565b828001600101855582156114bd579182015b828111156114bd5782518255916020019190600101906114a2565b506114c99291506114cd565b5090565b6106e891905b808211156114c957600081556001016114d356fea165627a7a723058205ba4b1c8b9e22c3a38ba2c0b63984d7d63796e8e57e21cacc2b884cf1127e8160029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009abc3f6c11dbd83234d6e6b2c373dfc1893f648d000000000000000000000000012c6d79b189e1abd1efac759b275c5d49abd16400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000154f726269742042726964676520457468204b6c617900000000000000000000000000000000000000000000000000000000000000000000000000000000000005454b4c4159000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : owner_ (address): 0x9Abc3F6c11dBd83234D6E6b2c373Dfc1893F648D
Arg [1] : minter_ (address): 0x012c6d79b189e1aBD1EFaC759b275c5D49Abd164
Arg [2] : name_ (string): Orbit Bridge Eth Klay
Arg [3] : symbol_ (string): EKLAY
Arg [4] : decimals_ (uint8): 18
Arg [5] : init (bool): True
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000009abc3f6c11dbd83234d6e6b2c373dfc1893f648d
Arg [1] : 000000000000000000000000012c6d79b189e1abd1efac759b275c5d49abd164
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [7] : 4f726269742042726964676520457468204b6c61790000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 454b4c4159000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
96:9881:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2583:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2583:81:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2583:81:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1709:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1709:79:1;;;;;;;;-1:-1:-1;;;;;1709:79:1;;;;;;;;;;;;;;4569:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4569:149:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4569:149:1;;;;;;;;;;;;;;;;;;;;;;;;;;;3626:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3626:89:1;;;;;;;;;;;;;;;;;;;;5176:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5176:300:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5176:300:1;;;;;;;;;;;;;;;;;;1794:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1794:143:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1794:143:1;-1:-1:-1;;;;;1794:143:1;;;;;3485:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3485:81:1;;;;;;;;;;;;;;;;;;;;;;;508:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;508:25:1;;;;5871:207;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5871:207:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5871:207:1;;;;;;;;;7767:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7767:104:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7767:104:1;;;;;;;;;1943:205;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1943:205:1;;;;1618:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1618:85:1;;;;3773:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3773:108:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3773:108:1;-1:-1:-1;;;;;3773:108:1;;;1535:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1535:77:1;;;;2777:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2777:85:1;;;;8449:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8449:104:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8449:104:1;;;;;;;;;6565:258;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6565:258:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6565:258:1;;;;;;;;;4084:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4084:155:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4084:155:1;;;;;;;;;2292:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2292:226:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2292:226:1;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;2292:226:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2292:226:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2292:226:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2292:226:1;;;;;;;;-1:-1:-1;2292:226:1;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;2292:226:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2292:226:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2292:226:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2292:226:1;;-1:-1:-1;2292:226:1;;-1:-1:-1;;;;;2292:226:1;4297:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4297:134:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4297:134:1;;;;;;;;;;;2154:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2154:128:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2154:128:1;-1:-1:-1;;;;;2154:128:1;;;2583:81;2652:5;2645:12;;;;;;;;-1:-1:-1;;2645:12:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2620:13;;2645:12;;2652:5;;2645:12;;2652:5;2645:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2583:81;;:::o;1709:79::-;1774:7;;-1:-1:-1;;;;;1774:7:1;1709:79;:::o;4569:149::-;4635:4;4651:39;4660:12;:10;:12::i;:::-;4674:7;4683:6;4651:8;:39::i;:::-;-1:-1:-1;4707:4:1;4569:149;;;;:::o;3626:89::-;3696:12;;3626:89;:::o;5176:300::-;5265:4;5281:36;5291:6;5299:9;5310:6;5281:9;:36::i;:::-;5327:121;5336:6;5344:12;:10;:12::i;:::-;5358:89;5396:6;5358:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;5370:6;-1:-1:-1;;;;;5358:19:1;-1:-1:-1;;;;;5358:19:1;;;;;;;;;;;;:33;5378:12;:10;:12::i;:::-;-1:-1:-1;;;;;5358:33:1;;;;;;;;;;;;-1:-1:-1;5358:33:1;;;:89;;:37;:89;:::i;:::-;5327:8;:121::i;:::-;-1:-1:-1;5465:4:1;5176:300;;;;;:::o;1794:143::-;1301:7;:5;:7::i;:::-;-1:-1:-1;;;;;1285:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1285:23:1;;1277:32;;;;;;-1:-1:-1;;;;;1871:24:1;;;;1863:33;;;;;;1907:10;:23;;-1:-1:-1;;1907:23:1;-1:-1:-1;;;;;1907:23:1;;;;;;;;;;1794:143::o;3485:81::-;3550:9;;;;3485:81;:::o;508:25::-;;;;;;;;;:::o;5871:207::-;5951:4;5967:83;5976:12;:10;:12::i;:::-;5990:7;5999:50;6038:10;5999:11;:25;6011:12;:10;:12::i;:::-;-1:-1:-1;;;;;5999:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;5999:25:1;;;:34;;;;;;;;;;;:50;:38;:50;:::i;7767:104::-;1502:8;:6;:8::i;:::-;-1:-1:-1;;;;;1486:24:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1486:24:1;;1478:33;;;;;;7842:22;7848:7;7857:6;7842:5;:22::i;:::-;7767:104;;:::o;1943:205::-;2007:11;:9;:11::i;:::-;-1:-1:-1;;;;;1991:27:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1991:27:1;;1983:36;;;;;;2065:11;:9;:11::i;:::-;-1:-1:-1;;;;;2035:42:1;2056:7;:5;:7::i;:::-;-1:-1:-1;;;;;2035:42:1;;;;;;;;;;;2097:11;:9;:11::i;:::-;2088:6;:20;;-1:-1:-1;;;;;2088:20:1;;;;;;-1:-1:-1;;2088:20:1;;;;;;;;;2118:10;:23;;-1:-1:-1;;2118:23:1;;;1943:205::o;1618:85::-;1686:10;;-1:-1:-1;;;;;1686:10:1;1618:85;:::o;3773:108::-;-1:-1:-1;;;;;3856:18:1;3830:7;3856:18;;;;;;;;;;;;3773:108::o;1535:77::-;1599:6;;;;;-1:-1:-1;;;;;1599:6:1;;1535:77::o;2777:85::-;2848:7;2841:14;;;;;;;;-1:-1:-1;;2841:14:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2816:13;;2841:14;;2848:7;;2841:14;;2848:7;2841:14;;;;;;;;;;;;;;;;;;;;;;;;8449:104;1502:8;:6;:8::i;:::-;-1:-1:-1;;;;;1486:24:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1486:24:1;;1478:33;;;;;;8524:22;8530:7;8539:6;8524:5;:22::i;6565:258::-;6650:4;6666:129;6675:12;:10;:12::i;:::-;6689:7;6698:96;6737:15;6698:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;6710:12;:10;:12::i;:::-;-1:-1:-1;;;;;6698:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;6698:25:1;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;4084:155::-;4153:4;4169:42;4179:12;:10;:12::i;:::-;4193:9;4204:6;4169:9;:42::i;2292:226::-;1398:7;:5;:7::i;:::-;-1:-1:-1;;;;;1382:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1382:23:1;;:41;;;-1:-1:-1;1410:13:1;;;;;;;1409:14;1382:41;1374:50;;;;;;;;2405:17;;;;:5;;:17;;;;;:::i;:::-;-1:-1:-1;2432:21:1;;;;:7;;:21;;;;;:::i;:::-;-1:-1:-1;2467:13:1;;;;;;;:22;;2464:47;;2491:13;:20;;-1:-1:-1;;2491:20:1;;;;;2292:226;;:::o;4297:134::-;-1:-1:-1;;;;;4396:19:1;;;4370:7;4396:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;4297:134::o;2154:128::-;1301:7;:5;:7::i;:::-;-1:-1:-1;;;;;1285:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1285:23:1;;1277:32;;;;;;-1:-1:-1;;;;;2225:21:1;;;;2217:30;;;;;;2258:7;:17;;-1:-1:-1;;2258:17:1;-1:-1:-1;;;;;2258:17:1;;;;;;;;;;2154:128::o;788:96:0:-;867:10;788:96;:::o;9639:336:1:-;-1:-1:-1;;;;;9733:20:1;;;;9725:69;;;;;-1:-1:-1;;;;;9725:69:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9812:21:1;;;;9804:68;;;;;-1:-1:-1;;;;;9804:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9883:19:1;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;9935:33;;;;;;;;;;;;;;;;;9639:336;;;:::o;7297:464::-;-1:-1:-1;;;;;7394:20:1;;;;7386:70;;;;;-1:-1:-1;;;;;7386:70:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7474:23:1;;;;7466:71;;;;;-1:-1:-1;;;;;7466:71:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7568;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7568:17:1;;-1:-1:-1;7568:17:1;;;;;;;;;;;;:71;;7590:6;;7568:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;7548:17:1;;;:9;:17;;;;;;;;;;;:91;;;;7672:20;;;;;;;:32;;7697:6;7672:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;7649:20:1;;;:9;:20;;;;;;;;;;;;:55;;;;7719:35;;;;;;;7649:20;;7719:35;;;;;;;;;;;;;7297:464;;;:::o;1735:187:3:-;1821:7;1856:12;1848:6;;;;1840:29;;;;-1:-1:-1;;;;;1840:29:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1840:29:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1891:5:3;;;1735:187::o;837:176::-;895:7;926:5;;;949:6;;;;941:46;;;;;-1:-1:-1;;;;;941:46:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005:1;837:176;-1:-1:-1;;;837:176:3:o;8141:302:1:-;-1:-1:-1;;;;;8216:21:1;;;;8208:65;;;;;-1:-1:-1;;;;;8208:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;8299:12;;:24;;8316:6;8299:24;:16;:24;:::i;:::-;8284:12;:39;-1:-1:-1;;;;;8354:18:1;;:9;:18;;;;;;;;;;;:30;;8377:6;8354:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;8333:18:1;;:9;:18;;;;;;;;;;;:51;;;;8399:37;;;;;;;8333:18;;:9;;8399:37;;;;;;;;;;8141:302;;:::o;8872:342::-;-1:-1:-1;;;;;8947:21:1;;;;8939:67;;;;;-1:-1:-1;;;;;8939:67:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9038:68;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9038:18:1;;-1:-1:-1;9038:18:1;;;;;;;;;;;;:68;;9061:6;;9038:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;9017:18:1;;:9;:18;;;;;;;;;;:89;9131:12;;:24;;9148:6;9131:24;:16;:24;:::i;:::-;9116:12;:39;9170:37;;;;;;;;9196:1;;-1:-1:-1;;;;;9170:37:1;;;;;;;;;;;;8872:342;;:::o;1277:134:3:-;1335:7;1361:43;1365:1;1368;1361:43;;;;;;;;;;;;;;;;;;:3;:43::i;96:9881:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;96:9881:1;;;-1:-1:-1;96:9881:1;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://5ba4b1c8b9e22c3a38ba2c0b63984d7d63796e8e57e21cacc2b884cf1127e816
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.