ERC-20
Overview
Max Total Supply
499,957,672.334694318105766223 VERTX
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
198,000 VERTXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
VertX
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; // SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // SPDX-License-Identifier: MIT /** * @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; } function ceil(uint256 a, uint256 m) internal pure returns (uint256) { uint256 c = add(a, m); uint256 d = sub(c, 1); return mul(div(d, m), m); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is IERC20 { using SafeMath 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; /** * @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(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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 override view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public override 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 virtual override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public virtual override 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 virtual override returns (bool) { _approve(msg.sender, 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); _approve( sender, msg.sender, _allowances[sender][msg.sender].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 virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][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 virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][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 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); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(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: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _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 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 {} } // SPDX-License-Identifier: MIT /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(msg.sender, amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, msg.sender).sub( amount, "ERC20: burn amount exceeds allowance" ); _approve(account, msg.sender, decreasedAllowance); _burn(account, amount); } } contract VertX is ERC20, ERC20Burnable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowed; uint256 public constant INITIAL_SUPPLY = 500000000 * 10**18; constructor() public payable ERC20('VertX', 'VERTX') { _mint(msg.sender, INITIAL_SUPPLY); } function calculateFee(uint256 amount) internal pure returns (uint256 feeAmount) { uint256 roundValue = amount.ceil(100); feeAmount = roundValue.div(100); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { uint256 tokensToBurn = calculateFee(amount); uint256 tokensToTransfer = amount.sub(tokensToBurn); _burn(msg.sender, tokensToBurn); _transfer(msg.sender, recipient, tokensToTransfer); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { uint256 tokensToBurn = calculateFee(amount); uint256 tokensToTransfer = amount.sub(tokensToBurn); _burn(sender, tokensToBurn); _transfer(sender, recipient, tokensToTransfer); uint256 decreasedAllowance = allowance(sender, msg.sender).sub( amount, 'ERC20: transfer amount exceeds allowance' ); _approve(sender, msg.sender, decreasedAllowance); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60056080818152640accae4e8b60db1b60a090815261010060405260c0838152640ac8aa4a8b60db1b60e05291926200003b9160039162000207565b5080516200005190600490602084019062000207565b50506005805460ff191660121790555062000082336b019d971e4fe8401e740000006001600160e01b036200008816565b620002ac565b6001600160a01b038216620000e4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620000fb600083836001600160e01b03620001a016565b6200011781600254620001a560201b62000ce31790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200014a91839062000ce3620001a5821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000200576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024a57805160ff19168380011785556200027a565b828001600101855582156200027a579182015b828111156200027a5782518255916020019190600101906200025d565b50620002889291506200028c565b5090565b620002a991905b8082111562000288576000815560010162000293565b90565b61108480620002bc6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610300578063a457c2d714610308578063a9059cbb14610341578063dd62ed3e1461037a576100ea565b806342966c681461027557806370a082311461029457806379cc6790146102c7576100ea565b806323b872dd116100c857806323b872dd146101d35780632ff2e9dc14610216578063313ce5671461021e578063395093511461023c576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101b9575b600080fd5b6100f76103b5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a56004803603604081101561018257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610469565b604080519115158252519081900360200190f35b6101c1610480565b60408051918252519081900360200190f35b6101a5600480360360608110156101e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610486565b6101c161050d565b61022661051d565b6040805160ff9092168252519081900360200190f35b6101a56004803603604081101561025257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610526565b6102926004803603602081101561028b57600080fd5b5035610574565b005b6101c1600480360360208110156102aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610581565b610292600480360360408110156102dd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105a9565b6100f76105ee565b6101a56004803603604081101561031e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561066d565b6101a56004803603604081101561035757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106cf565b6101c16004803603604081101561039057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610711565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b6000610476338484610749565b5060015b92915050565b60025490565b60008061049283610890565b905060006104a6848363ffffffff6108be16565b90506104b28683610900565b6104bd868683610a56565b60006104f385604051806060016040528060288152602001610f74602891396104e68a33610711565b919063ffffffff610c3216565b9050610500873383610749565b5060019695505050505050565b6b019d971e4fe8401e7400000081565b60055460ff1690565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161047691859061056f908663ffffffff610ce316565b610749565b61057e3382610900565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60006105d282604051806060016040528060248152602001610f9c602491396104e68633610711565b90506105df833383610749565b6105e98383610900565b505050565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b6000610476338461056f8560405180606001604052806025815260200161102a6025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919063ffffffff610c3216565b6000806106db83610890565b905060006106ef848363ffffffff6108be16565b90506106fb3383610900565b610706338683610a56565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff83166107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110066024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f0b6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000806108a483606463ffffffff610d5716565b90506108b781606463ffffffff610d9116565b9392505050565b60006108b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c32565b73ffffffffffffffffffffffffffffffffffffffff821661096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610fc06021913960400191505060405180910390fd5b610978826000836105e9565b6109c881604051806060016040528060228152602001610ee96022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff610c3216565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610a01908263ffffffff6108be16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610fe16025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610ec66023913960400191505060405180910390fd5b610b398383836105e9565b610b8981604051806060016040528060268152602001610f2d6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff610c3216565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610bcb908263ffffffff610ce316565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cdb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ca0578181015183820152602001610c88565b50505050905090810190601f168015610ccd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156108b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080610d648484610ce3565b90506000610d738260016108be565b9050610d88610d828286610d91565b85610dd3565b95945050505050565b60006108b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e46565b600082610de25750600061047a565b82820282848281610def57fe5b04146108b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610f536021913960400191505060405180910390fd5b60008183610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315610ca0578181015183820152602001610c88565b506000838581610ebb57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd63329624ac5f0475e9d44ae802d61a1c80f9e621c7a9f610dc616a8c223b5164736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610300578063a457c2d714610308578063a9059cbb14610341578063dd62ed3e1461037a576100ea565b806342966c681461027557806370a082311461029457806379cc6790146102c7576100ea565b806323b872dd116100c857806323b872dd146101d35780632ff2e9dc14610216578063313ce5671461021e578063395093511461023c576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101b9575b600080fd5b6100f76103b5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a56004803603604081101561018257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610469565b604080519115158252519081900360200190f35b6101c1610480565b60408051918252519081900360200190f35b6101a5600480360360608110156101e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610486565b6101c161050d565b61022661051d565b6040805160ff9092168252519081900360200190f35b6101a56004803603604081101561025257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610526565b6102926004803603602081101561028b57600080fd5b5035610574565b005b6101c1600480360360208110156102aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610581565b610292600480360360408110156102dd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105a9565b6100f76105ee565b6101a56004803603604081101561031e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561066d565b6101a56004803603604081101561035757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106cf565b6101c16004803603604081101561039057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610711565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b6000610476338484610749565b5060015b92915050565b60025490565b60008061049283610890565b905060006104a6848363ffffffff6108be16565b90506104b28683610900565b6104bd868683610a56565b60006104f385604051806060016040528060288152602001610f74602891396104e68a33610711565b919063ffffffff610c3216565b9050610500873383610749565b5060019695505050505050565b6b019d971e4fe8401e7400000081565b60055460ff1690565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161047691859061056f908663ffffffff610ce316565b610749565b61057e3382610900565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60006105d282604051806060016040528060248152602001610f9c602491396104e68633610711565b90506105df833383610749565b6105e98383610900565b505050565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b6000610476338461056f8560405180606001604052806025815260200161102a6025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919063ffffffff610c3216565b6000806106db83610890565b905060006106ef848363ffffffff6108be16565b90506106fb3383610900565b610706338683610a56565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff83166107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110066024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f0b6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000806108a483606463ffffffff610d5716565b90506108b781606463ffffffff610d9116565b9392505050565b60006108b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c32565b73ffffffffffffffffffffffffffffffffffffffff821661096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610fc06021913960400191505060405180910390fd5b610978826000836105e9565b6109c881604051806060016040528060228152602001610ee96022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff610c3216565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610a01908263ffffffff6108be16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610fe16025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610ec66023913960400191505060405180910390fd5b610b398383836105e9565b610b8981604051806060016040528060268152602001610f2d6026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff610c3216565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610bcb908263ffffffff610ce316565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cdb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ca0578181015183820152602001610c88565b50505050905090810190601f168015610ccd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156108b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080610d648484610ce3565b90506000610d738260016108be565b9050610d88610d828286610d91565b85610dd3565b95945050505050565b60006108b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e46565b600082610de25750600061047a565b82820282848281610def57fe5b04146108b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610f536021913960400191505060405180910390fd5b60008183610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315610ca0578181015183820152602001610c88565b506000838581610ebb57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd63329624ac5f0475e9d44ae802d61a1c80f9e621c7a9f610dc616a8c223b5164736f6c63430006060033
Deployed Bytecode Sourcemap
21242:1533:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21242:1533:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10630:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10630:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12825:208;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12825:208:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11705:100;;;:::i;:::-;;;;;;;;;;;;;;;;22164:608;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22164:608:0;;;;;;;;;;;;;;;;;;:::i;21448:59::-;;;:::i;11557:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14374:296;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14374:296:0;;;;;;;;;:::i;20499:89::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20499:89:0;;:::i;:::-;;11868:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11868:119:0;;;;:::i;20907:328::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20907:328:0;;;;;;;;;:::i;10832:87::-;;;:::i;15173:396::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15173:396:0;;;;;;;;;:::i;21815:341::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21815:341:0;;;;;;;;;:::i;12477:201::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12477:201:0;;;;;;;;;;;:::i;10630:83::-;10700:5;10693:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10667:13;;10693:12;;10700:5;;10693:12;;10700:5;10693:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10630:83;:::o;12825:208::-;12944:4;12966:37;12975:10;12987:7;12996:6;12966:8;:37::i;:::-;-1:-1:-1;13021:4:0;12825:208;;;;;:::o;11705:100::-;11785:12;;11705:100;:::o;22164:608::-;22304:4;22321:20;22344;22357:6;22344:12;:20::i;:::-;22321:43;-1:-1:-1;22375:24:0;22402;:6;22321:43;22402:24;:10;:24;:::i;:::-;22375:51;;22437:27;22443:6;22451:12;22437:5;:27::i;:::-;22475:46;22485:6;22493:9;22504:16;22475:9;:46::i;:::-;22532:26;22561:122;22609:6;22561:122;;;;;;;;;;;;;;;;;:29;22571:6;22579:10;22561:9;:29::i;:::-;:33;:122;;:33;:122;:::i;:::-;22532:151;;22694:48;22703:6;22711:10;22723:18;22694:8;:48::i;:::-;-1:-1:-1;22760:4:0;;22164:608;-1:-1:-1;;;;;;22164:608:0:o;21448:59::-;21489:18;21448:59;:::o;11557:83::-;11623:9;;;;11557:83;:::o;14374:296::-;14534:10;14489:4;14581:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;14489:4;;14511:129;;14559:7;;14581:48;;14618:10;14581:48;:36;:48;:::i;:::-;14511:8;:129::i;20499:89::-;20555:25;20561:10;20573:6;20555:5;:25::i;:::-;20499:89;:::o;11868:119::-;11961:18;;11934:7;11961:18;;;;;;;;;;;;11868:119::o;20907:328::-;20984:26;21013:119;21062:6;21013:119;;;;;;;;;;;;;;;;;:30;21023:7;21032:10;21013:9;:30::i;:119::-;20984:148;;21145:49;21154:7;21163:10;21175:18;21145:8;:49::i;:::-;21205:22;21211:7;21220:6;21205:5;:22::i;:::-;20907:328;;;:::o;10832:87::-;10904:7;10897:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10871:13;;10897:14;;10904:7;;10897:14;;10904:7;10897:14;;;;;;;;;;;;;;;;;;;;;;;;15173:396;15293:4;15315:224;15338:10;15363:7;15385:143;15440:15;15385:143;;;;;;;;;;;;;;;;;15397:10;15385:23;;;;:11;:23;;;;;;;;;:32;;;;;;;;;;;:143;;:36;:143;:::i;21815:341::-;21901:4;21918:20;21941;21954:6;21941:12;:20::i;:::-;21918:43;-1:-1:-1;21972:24:0;21999;:6;21918:43;21999:24;:10;:24;:::i;:::-;21972:51;;22034:31;22040:10;22052:12;22034:5;:31::i;:::-;22076:50;22086:10;22098:9;22109:16;22076:9;:50::i;:::-;-1:-1:-1;22144:4:0;;21815:341;-1:-1:-1;;;;21815:341:0:o;12477:201::-;12643:18;;;;12611:7;12643:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12477:201::o;18555:380::-;18691:19;;;18683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18770:21;;;18762:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18843:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18895:32;;;;;;;;;;;;;;;;;18555:380;;;:::o;21629:178::-;21690:17;;21741:16;:6;21753:3;21741:16;:11;:16;:::i;:::-;21720:37;-1:-1:-1;21780:19:0;21720:37;21795:3;21780:19;:14;:19;:::i;:::-;21768:31;21629:178;-1:-1:-1;;;21629:178:0:o;4301:136::-;4359:7;4386:43;4390:1;4393;4386:43;;;;;;;;;;;;;;;;;:3;:43::i;17662:455::-;17746:21;;;17738:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17818:49;17839:7;17856:1;17860:6;17818:20;:49::i;:::-;17901:105;17938:6;17901:105;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:105;;:22;:105;:::i;:::-;17880:18;;;:9;:18;;;;;;;;;;:126;18032:12;;:24;;18049:6;18032:24;:16;:24;:::i;:::-;18017:12;:39;18072:37;;;;;;;;18098:1;;18072:37;;;;;;;;;;;;;17662:455;;:::o;16059:610::-;16199:20;;;16191:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16280:23;;;16272:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16356:47;16377:6;16385:9;16396:6;16356:20;:47::i;:::-;16436:108;16472:6;16436:108;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:108;;:21;:108;:::i;:::-;16416:17;;;;:9;:17;;;;;;;;;;;:128;;;;16578:20;;;;;;;:32;;16603:6;16578:32;:24;:32;:::i;:::-;16555:20;;;;:9;:20;;;;;;;;;;;;:55;;;;16626:35;;;;;;;16555:20;;16626:35;;;;;;;;;;;;;16059:610;;;:::o;4740:226::-;4860:7;4896:12;4888:6;;;;4880:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4880:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4932:5:0;;;4740:226::o;3837:181::-;3895:7;3927:5;;;3951:6;;;;3943:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400:175;8459:7;8479:9;8491;8495:1;8498;8491:3;:9::i;:::-;8479:21;;8511:9;8523;8527:1;8530;8523:3;:9::i;:::-;8511:21;;8550:17;8554:9;8558:1;8561;8554:3;:9::i;:::-;8565:1;8550:3;:17::i;:::-;8543:24;8400:175;-1:-1:-1;;;;;8400:175:0:o;6172:132::-;6230:7;6257:39;6261:1;6264;6257:39;;;;;;;;;;;;;;;;;:3;:39::i;5225:471::-;5283:7;5528:6;5524:47;;-1:-1:-1;5558:1:0;5551:8;;5524:47;5595:5;;;5599:1;5595;:5;:1;5619:5;;;;;:10;5611:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800:312;6920:7;6955:12;6948:5;6940:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6940:28:0;;6979:9;6995:1;6991;:5;;;;;;;6800:312;-1:-1:-1;;;;;6800:312:0:o
Swarm Source
ipfs://bd63329624ac5f0475e9d44ae802d61a1c80f9e621c7a9f610dc616a8c223b51
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.