Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
100,000,000 WXM
Holders
7 (0.00%)
Total Transfers
-
Market
Price
$0.50 @ 0.000209 ETH (-1.22%)
Onchain Market Cap
$50,279,400.00
Circulating Supply Market Cap
$28,216,923.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeatherXM
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-20 */ // ################################################################################## // # # // # ██╗ ██╗███████╗ █████╗ ████████╗██╗ ██╗███████╗██████╗ ██╗ ██╗███╗ ███╗ # // # ██║ ██║██╔════╝██╔══██╗╚══██╔══╝██║ ██║██╔════╝██╔══██╗╚██╗██╔╝████╗ ████║ # // # ██║ █╗ ██║█████╗ ███████║ ██║ ███████║█████╗ ██████╔╝ ╚███╔╝ ██╔████╔██║ # // # ██║███╗██║██╔══╝ ██╔══██║ ██║ ██╔══██║██╔══╝ ██╔══██╗ ██╔██╗ ██║╚██╔╝██║ # // # ╚███╔███╔╝███████╗██║ ██║ ██║ ██║ ██║███████╗██║ ██║██╔╝ ██╗██║ ╚═╝ ██║ # // # ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ # // # # // ################################################################################## // Sources flattened with hardhat v2.16.1 https://hardhat.org // File lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File lib/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Capped.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } } // File lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File src/WeatherXM.sol pragma solidity 0.8.20; contract WeatherXM is ERC20, ERC20Capped { /* ========== LIBRARIES ========== */ using SafeMath for uint256; /* ========== CONSTANTS ========== */ uint256 public constant maxSupply = 1e8 * 10 ** 18; /* ========== CUSTOM ERRORS ========== */ error TokenTransferWhilePaused(); constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) ERC20Capped(maxSupply) { _mint(_msgSender(), maxSupply); } function burn(uint256 amount) external { super._burn(_msgSender(), amount); } function burnFrom(address account, uint256 amount) external { super._spendAllowance(account, _msgSender(), amount); super._burn(account, amount); } function _mint(address account, uint256 amount) internal override(ERC20, ERC20Capped) { ERC20Capped._mint(account, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"TokenTransferWhilePaused","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620011c9380380620011c9833981016040819052620000349162000308565b6a52b7d2dcc80cd2e40000008282600362000050838262000400565b5060046200005f828262000400565b50505060008111620000b85760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b608052620000d2336a52b7d2dcc80cd2e4000000620000da565b5050620004f4565b620000e68282620000ea565b5050565b60805181620000f860025490565b620001049190620004cc565b1115620001545760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000af565b620000e682826001600160a01b038216620001b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000af565b620001c0600083836200022b565b8060026000828254620001d49190620004cc565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200023e8383836001600160e01b038416565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026b57600080fd5b81516001600160401b038082111562000288576200028862000243565b604051601f8301601f19908116603f01168101908282118183101715620002b357620002b362000243565b81604052838152602092508683858801011115620002d057600080fd5b600091505b83821015620002f45785820183015181830184015290820190620002d5565b600093810190920192909252949350505050565b600080604083850312156200031c57600080fd5b82516001600160401b03808211156200033457600080fd5b620003428683870162000259565b935060208501519150808211156200035957600080fd5b50620003688582860162000259565b9150509250929050565b600181811c908216806200038757607f821691505b602082108103620003a857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023e57600081815260208120601f850160051c81016020861015620003d75750805b601f850160051c820191505b81811015620003f857828155600101620003e3565b505050505050565b81516001600160401b038111156200041c576200041c62000243565b62000434816200042d845462000372565b84620003ae565b602080601f8311600181146200046c5760008415620004535750858301515b600019600386901b1c1916600185901b178555620003f8565b600085815260208120601f198616915b828110156200049d578886015182559484019460019091019084016200047c565b5085821015620004bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004ee57634e487b7160e01b600052601160045260246000fd5b92915050565b608051610cb96200051060003960006101710152610cb96000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d71461020e578063a9059cbb14610221578063d5abeb0114610234578063dd62ed3e1461024657600080fd5b806342966c68146101a857806370a08231146101bd57806379cc6790146101f357806395d89b411461020657600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063355274ea1461016f578063395093511461019557600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261028c565b60405161010f9190610a8d565b60405180910390f35b61012b610126366004610b22565b61031e565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b4c565b610338565b6040516012815260200161010f565b7f000000000000000000000000000000000000000000000000000000000000000061013f565b61012b6101a3366004610b22565b61035c565b6101bb6101b6366004610b88565b6103a8565b005b61013f6101cb366004610ba1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101bb610201366004610b22565b6103b5565b6101026103ce565b61012b61021c366004610b22565b6103dd565b61012b61022f366004610b22565b610499565b61013f6a52b7d2dcc80cd2e400000081565b61013f610254366004610bc3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029b90610bf6565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bf6565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856104a7565b60019150505b92915050565b600033610346858285610627565b6103518585856106e4565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061032c90829086906103a3908790610c49565b6104a7565b6103b23382610905565b50565b6103c0823383610627565b6103ca8282610905565b5050565b60606004805461029b90610bf6565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561048c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035182868684036104a7565b60003361032c8185856106e4565b73ffffffffffffffffffffffffffffffffffffffff831661052f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff82166105b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106de57818110156106d15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610483565b6106de84848484036104a7565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661076d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff82166107f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106de565b73ffffffffffffffffffffffffffffffffffffffff821661098e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161061a565b600060208083528351808285015260005b81811015610aba57858101830151858201604001528201610a9e565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b1d57600080fd5b919050565b60008060408385031215610b3557600080fd5b610b3e83610af9565b946020939093013593505050565b600080600060608486031215610b6157600080fd5b610b6a84610af9565b9250610b7860208501610af9565b9150604084013590509250925092565b600060208284031215610b9a57600080fd5b5035919050565b600060208284031215610bb357600080fd5b610bbc82610af9565b9392505050565b60008060408385031215610bd657600080fd5b610bdf83610af9565b9150610bed60208401610af9565b90509250929050565b600181811c90821680610c0a57607f821691505b602082108103610c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610332577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212202fcef03715fece47599b4917a3aa58d7e4f52bae9d2291a8c0b122c3fd4c3ce764736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000957656174686572584d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357584d0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d71461020e578063a9059cbb14610221578063d5abeb0114610234578063dd62ed3e1461024657600080fd5b806342966c68146101a857806370a08231146101bd57806379cc6790146101f357806395d89b411461020657600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063355274ea1461016f578063395093511461019557600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261028c565b60405161010f9190610a8d565b60405180910390f35b61012b610126366004610b22565b61031e565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b4c565b610338565b6040516012815260200161010f565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000061013f565b61012b6101a3366004610b22565b61035c565b6101bb6101b6366004610b88565b6103a8565b005b61013f6101cb366004610ba1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101bb610201366004610b22565b6103b5565b6101026103ce565b61012b61021c366004610b22565b6103dd565b61012b61022f366004610b22565b610499565b61013f6a52b7d2dcc80cd2e400000081565b61013f610254366004610bc3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029b90610bf6565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bf6565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856104a7565b60019150505b92915050565b600033610346858285610627565b6103518585856106e4565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061032c90829086906103a3908790610c49565b6104a7565b6103b23382610905565b50565b6103c0823383610627565b6103ca8282610905565b5050565b60606004805461029b90610bf6565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561048c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035182868684036104a7565b60003361032c8185856106e4565b73ffffffffffffffffffffffffffffffffffffffff831661052f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff82166105b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106de57818110156106d15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610483565b6106de84848484036104a7565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661076d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff82166107f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106de565b73ffffffffffffffffffffffffffffffffffffffff821661098e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161061a565b600060208083528351808285015260005b81811015610aba57858101830151858201604001528201610a9e565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b1d57600080fd5b919050565b60008060408385031215610b3557600080fd5b610b3e83610af9565b946020939093013593505050565b600080600060608486031215610b6157600080fd5b610b6a84610af9565b9250610b7860208501610af9565b9150604084013590509250925092565b600060208284031215610b9a57600080fd5b5035919050565b600060208284031215610bb357600080fd5b610bbc82610af9565b9392505050565b60008060408385031215610bd657600080fd5b610bdf83610af9565b9150610bed60208401610af9565b90509250929050565b600181811c90821680610c0a57607f821691505b602082108103610c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610332577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212202fcef03715fece47599b4917a3aa58d7e4f52bae9d2291a8c0b122c3fd4c3ce764736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000957656174686572584d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357584d0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): WeatherXM
Arg [1] : _symbol (string): WXM
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 57656174686572584d0000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 57584d0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
27454:1006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8403:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10763:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;10763:201:0;1086:187:1;9532:108:0;9620:12;;9532:108;;;1424:25:1;;;1412:2;1397:18;9532:108:0;1278:177:1;11544:261:0;;;;;;:::i;:::-;;:::i;9374:93::-;;;9457:2;1935:36:1;;1923:2;1908:18;9374:93:0;1793:184:1;20086:83:0;20157:4;20086:83;;12214:238;;;;;;:::i;:::-;;:::i;27906:85::-;;;;;;:::i;:::-;;:::i;:::-;;9703:127;;;;;;:::i;:::-;9804:18;;9777:7;9804:18;;;;;;;;;;;;9703:127;27997:160;;;;;;:::i;:::-;;:::i;8622:104::-;;;:::i;12955:436::-;;;;;;:::i;:::-;;:::i;10036:193::-;;;;;;:::i;:::-;;:::i;27615:50::-;;27651:14;27615:50;;10292:151;;;;;;:::i;:::-;10408:18;;;;10381:7;10408:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10292:151;8403:100;8457:13;8490:5;8483:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8403:100;:::o;10763:201::-;10846:4;6111:10;10902:32;6111:10;10918:7;10927:6;10902:8;:32::i;:::-;10952:4;10945:11;;;10763:201;;;;;:::o;11544:261::-;11641:4;6111:10;11699:38;11715:4;6111:10;11730:6;11699:15;:38::i;:::-;11748:27;11758:4;11764:2;11768:6;11748:9;:27::i;:::-;-1:-1:-1;11793:4:0;;11544:261;-1:-1:-1;;;;11544:261:0:o;12214:238::-;6111:10;12302:4;10408:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;12302:4;;6111:10;12358:64;;6111:10;;10408:27;;12383:38;;12411:10;;12383:38;:::i;:::-;12358:8;:64::i;27906:85::-;27952:33;6111:10;27978:6;27952:11;:33::i;:::-;27906:85;:::o;27997:160::-;28064:52;28086:7;6111:10;28109:6;28064:21;:52::i;:::-;28123:28;28135:7;28144:6;28123:11;:28::i;:::-;27997:160;;:::o;8622:104::-;8678:13;8711:7;8704:14;;;;;:::i;12955:436::-;6111:10;13048:4;10408:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13048:4;;6111:10;13195:15;13175:16;:35;;13167:85;;;;-1:-1:-1;;;13167:85:0;;3551:2:1;13167:85:0;;;3533:21:1;3590:2;3570:18;;;3563:30;3629:34;3609:18;;;3602:62;3700:7;3680:18;;;3673:35;3725:19;;13167:85:0;;;;;;;;;13288:60;13297:5;13304:7;13332:15;13313:16;:34;13288:8;:60::i;10036:193::-;10115:4;6111:10;10171:28;6111:10;10188:2;10192:6;10171:9;:28::i;16948:346::-;17050:19;;;17042:68;;;;-1:-1:-1;;;17042:68:0;;3957:2:1;17042:68:0;;;3939:21:1;3996:2;3976:18;;;3969:30;4035:34;4015:18;;;4008:62;4106:6;4086:18;;;4079:34;4130:19;;17042:68:0;3755:400:1;17042:68:0;17129:21;;;17121:68;;;;-1:-1:-1;;;17121:68:0;;4362:2:1;17121:68:0;;;4344:21:1;4401:2;4381:18;;;4374:30;4440:34;4420:18;;;4413:62;4511:4;4491:18;;;4484:32;4533:19;;17121:68:0;4160:398:1;17121:68:0;17202:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17254:32;;1424:25:1;;;17254:32:0;;1397:18:1;17254:32:0;;;;;;;;16948:346;;;:::o;17585:419::-;10408:18;;;;17686:24;10408:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;17773:17;17753:37;;17749:248;;17835:6;17815:16;:26;;17807:68;;;;-1:-1:-1;;;17807:68:0;;4765:2:1;17807:68:0;;;4747:21:1;4804:2;4784:18;;;4777:30;4843:31;4823:18;;;4816:59;4892:18;;17807:68:0;4563:353:1;17807:68:0;17919:51;17928:5;17935:7;17963:6;17944:16;:25;17919:8;:51::i;:::-;17675:329;17585:419;;;:::o;13861:806::-;13958:18;;;13950:68;;;;-1:-1:-1;;;13950:68:0;;5123:2:1;13950:68:0;;;5105:21:1;5162:2;5142:18;;;5135:30;5201:34;5181:18;;;5174:62;5272:7;5252:18;;;5245:35;5297:19;;13950:68:0;4921:401:1;13950:68:0;14037:16;;;14029:64;;;;-1:-1:-1;;;14029:64:0;;5529:2:1;14029:64:0;;;5511:21:1;5568:2;5548:18;;;5541:30;5607:34;5587:18;;;5580:62;5678:5;5658:18;;;5651:33;5701:19;;14029:64:0;5327:399:1;14029:64:0;14179:15;;;14157:19;14179:15;;;;;;;;;;;14213:21;;;;14205:72;;;;-1:-1:-1;;;14205:72:0;;5933:2:1;14205:72:0;;;5915:21:1;5972:2;5952:18;;;5945:30;6011:34;5991:18;;;5984:62;6082:8;6062:18;;;6055:36;6108:19;;14205:72:0;5731:402:1;14205:72:0;14313:15;;;;:9;:15;;;;;;;;;;;14331:20;;;14313:38;;14531:13;;;;;;;;;;:23;;;;;;14583:26;;1424:25:1;;;14531:13:0;;14583:26;;1397:18:1;14583:26:0;;;;;;;14622:37;15835:675;;15919:21;;;15911:67;;;;-1:-1:-1;;;15911:67:0;;6340:2:1;15911:67:0;;;6322:21:1;6379:2;6359:18;;;6352:30;6418:34;6398:18;;;6391:62;6489:3;6469:18;;;6462:31;6510:19;;15911:67:0;6138:397:1;15911:67:0;16078:18;;;16053:22;16078:18;;;;;;;;;;;16115:24;;;;16107:71;;;;-1:-1:-1;;;16107:71:0;;6742:2:1;16107:71:0;;;6724:21:1;6781:2;6761:18;;;6754:30;6820:34;6800:18;;;6793:62;6891:4;6871:18;;;6864:32;6913:19;;16107:71:0;6540:398:1;16107:71:0;16214:18;;;:9;:18;;;;;;;;;;;16235:23;;;16214:44;;16353:12;:22;;;;;;;16404:37;1424:25:1;;;16214:9:0;;:18;16404:37;;1397:18:1;16404:37:0;1278:177:1;14:607;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:180::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;-1:-1:-1;2133:23:1;;1982:180;-1:-1:-1;1982:180:1:o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;:::-;2308:39;2167:186;-1:-1:-1;;;2167:186:1:o;2358:260::-;2426:6;2434;2487:2;2475:9;2466:7;2462:23;2458:32;2455:52;;;2503:1;2500;2493:12;2455:52;2526:29;2545:9;2526:29;:::i;:::-;2516:39;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2358:260;;;;;:::o;2623:437::-;2702:1;2698:12;;;;2745;;;2766:61;;2820:4;2812:6;2808:17;2798:27;;2766:61;2873:2;2865:6;2862:14;2842:18;2839:38;2836:218;;2910:77;2907:1;2900:88;3011:4;3008:1;3001:15;3039:4;3036:1;3029:15;2836:218;;2623:437;;;:::o;3065:279::-;3130:9;;;3151:10;;;3148:190;;;3194:77;3191:1;3184:88;3295:4;3292:1;3285:15;3323:4;3320:1;3313:15
Swarm Source
ipfs://2fcef03715fece47599b4917a3aa58d7e4f52bae9d2291a8c0b122c3fd4c3ce7
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.