ERC-20
Overview
Max Total Supply
5,000,000,000 WRLD
Holders
9,952
Market
Price
$0.01 @ 0.000005 ETH (+1.75%)
Onchain Market Cap
$60,162,400.00
Circulating Supply Market Cap
$6,605,288.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
225.0778888481407627 WRLDValue
$2.71 ( ~0.00108119718217242 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | MEXC | WRLD-USDT | $0.012 0.0000048 Eth | $56,927.00 4,729,795.260 WRLD | 95.9645% |
2 | CoinEx | WRLD-USDT | $0.0118 0.0000047 Eth | $2,201.17 184,354.509 WRLD | 3.7404% |
3 | Uniswap V3 (Ethereum) | 0XCCCCB68E1A848CBDB5B60A974E07AAE143ED40C3-0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9 | $0.0122 0.0000049 Eth | $81.97 6,754.900 0XCCCCB68E1A848CBDB5B60A974E07AAE143ED40C3 | 0.1371% |
4 | Uniswap V2 (Ethereum) | 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0121 0.0000048 Eth | $50.85 4,215.166 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9 | 0.0855% |
5 | Uniswap V3 (Ethereum) | 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0122 0.0000049 Eth | $30.67 2,520.385 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9 | 0.0511% |
6 | Quickswap | 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9-0X0D500B1D8E8EF31E21C99D1DB9A6444D3ADF1270 | $0.012 0.0000048 Eth | $12.70 1,053.208 0XD5D86FC8D5C0EA1AC1AC5DFAB6E529C9967A45E9 | 0.0214% |
Contract Name:
WRLD_Token_Ethereum
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract WRLD_Token_Ethereum is ERC20, ERC20Capped, Ownable, ReentrancyGuard { using ECDSA for bytes32; bool public claimEnabled = false; uint private maxClaims = 1; mapping(address => uint8) private claimCount; mapping(bytes => bool) private usedClaimSignatures; constructor() ERC20("NFT Worlds", "WRLD") ERC20Capped(5000000000 ether) {} function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function claim(uint256 _amount, uint8 _claimNonce, bytes calldata _signature) external nonReentrant { require(verifyOwnerSignature( keccak256(abi.encode(msg.sender, _amount, _claimNonce)), _signature ), "Invalid Signature"); require(claimEnabled, "Claiming is not enabled."); require(!usedClaimSignatures[_signature], "You have already claimed your WRLD tokens."); require(claimCount[msg.sender] < maxClaims, "You have already claimed the maximum amount."); _mint(msg.sender, _amount); usedClaimSignatures[_signature] = true; claimCount[msg.sender]++; } /** * Note: A second claim is scheduled for February 2022. * Another snapshot in February of wallets that hold at least * one NFT World will be eligible for the second airdrop. * NFT Worlds Contract: https://etherscan.io/address/0xBD4455dA5929D5639EE098ABFaa3241e9ae111Af */ function enableSecondClaim() external onlyOwner { maxClaims = 2; } function toggleClaim(bool _claimEnabled) external onlyOwner { claimEnabled = _claimEnabled; } /** * Overrides */ function _mint(address to, uint256 amount) internal override(ERC20, ERC20Capped) { super._mint(to, amount); } /** * Security */ function verifyOwnerSignature(bytes32 hash, bytes memory signature) private view returns(bool) { return hash.toEthSignedMessageHash().recover(signature) == owner(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _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; } _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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_claimNonce","type":"uint8"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableSecondClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimEnabled","type":"bool"}],"name":"toggleClaim","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526007805460ff1916905560016008553480156200002057600080fd5b50604080518082018252600a8152694e465420576f726c647360b01b60208083019182528351808501909452600484526315d4931160e21b9084015281516b1027e72f1f1281308800000093916200007c916003919062000139565b5080516200009290600490602084019062000139565b50505060008111620000c15760405162461bcd60e51b8152600401620000b890620001df565b60405180910390fd5b608052620000d8620000d2620000e3565b620000e7565b600160065562000253565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001479062000216565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b60208082526015908201527f45524332304361707065643a2063617020697320300000000000000000000000604082015260600190565b6002810460018216806200022b57607f821691505b602082108114156200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611e986200026f60003960006107820152611e986000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806340c10f19116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb1461029d578063dd62ed3e146102b0578063f2fde38b146102c35761016c565b806395d89b4114610282578063a457c2d71461028a5761016c565b8063715018a6116100b2578063715018a61461025d57806388ea3390146102655780638da5cb5b1461026d5761016c565b806340c10f191461023757806370a082311461024a5761016c565b806323b872dd11610124578063313ce56711610109578063313ce56714610207578063355274ea1461021c57806339509351146102245761016c565b806323b872dd146101ec5780632866ed21146101ff5761016c565b8063095ea7b311610155578063095ea7b3146101a457806318160ddd146101c457806318868455146101d95761016c565b806306fdde0314610171578063094063441461018f575b600080fd5b6101796102d6565b604051610186919061170d565b60405180910390f35b6101a261019d3660046115c8565b610368565b005b6101b76101b236600461157f565b6105da565b60405161018691906116e4565b6101cc6105f7565b6040516101869190611d90565b6101a26101e73660046115a8565b6105fd565b6101b76101fa366004611544565b6106a1565b6101b7610772565b61020f61077b565b6040516101869190611d99565b6101cc610780565b6101b761023236600461157f565b6107a4565b6101a261024536600461157f565b610805565b6101cc6102583660046114f1565b610886565b6101a26108b2565b6101a2610931565b6102756109ab565b6040516101869190611692565b6101796109c7565b6101b761029836600461157f565b6109d6565b6101b76102ab36600461157f565b610a76565b6101cc6102be366004611512565b610a8a565b6101a26102d13660046114f1565b610ac2565b6060600380546102e590611dbf565b80601f016020809104026020016040519081016040528092919081815260200182805461031190611dbf565b801561035e5780601f106103335761010080835404028352916020019161035e565b820191906000526020600020905b81548152906001019060200180831161034157829003601f168201915b5050505050905090565b600260065414156103ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611cc5565b60405180910390fd5b600260065560405161041e906103cc903390879087906020016116b3565b6040516020818303038152906040528051906020012083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b8e92505050565b610454576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611aae565b60075460ff16610490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611960565b600a82826040516104a2929190611651565b9081526040519081900360200190205460ff16156104ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611c68565b6008543360009081526009602052604090205460ff1610610539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611b1a565b6105433385610bdf565b6001600a8383604051610557929190611651565b908152604080516020928190038301902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016931515939093179092553360009081526009909152908120805460ff16916105b383611e13565b91906101000a81548160ff021916908360ff16021790555050600160068190555050505050565b60006105ee6105e7610be9565b8484610bed565b50600192915050565b60025490565b610605610be9565b73ffffffffffffffffffffffffffffffffffffffff166106236109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006106ae848484610cfc565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816106dc610be9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611a51565b6107678561075f610be9565b858403610bed565b506001949350505050565b60075460ff1681565b601290565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006105ee6107b1610be9565b8484600160006107bf610be9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546108009190611da7565b610bed565b61080d610be9565b73ffffffffffffffffffffffffffffffffffffffff1661082b6109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b6108828282610bdf565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b6108ba610be9565b73ffffffffffffffffffffffffffffffffffffffff166108d86109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b61092f6000610ec2565b565b610939610be9565b73ffffffffffffffffffffffffffffffffffffffff166109576109ab565b73ffffffffffffffffffffffffffffffffffffffff16146109a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b6002600855565b60055473ffffffffffffffffffffffffffffffffffffffff1690565b6060600480546102e590611dbf565b600080600160006109e5610be9565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611cfc565b610a6c610a63610be9565b85858403610bed565b5060019392505050565b60006105ee610a83610be9565b8484610cfc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610aca610be9565b73ffffffffffffffffffffffffffffffffffffffff16610ae86109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b73ffffffffffffffffffffffffffffffffffffffff8116610b82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611849565b610b8b81610ec2565b50565b6000610b986109ab565b73ffffffffffffffffffffffffffffffffffffffff16610bc183610bbb86610f39565b90610f69565b73ffffffffffffffffffffffffffffffffffffffff16149392505050565b6108828282610f8d565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610c3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611c0b565b73ffffffffffffffffffffffffffffffffffffffff8216610c87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906118a6565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610cef908590611d90565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611b77565b73ffffffffffffffffffffffffffffffffffffffff8216610d96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906117b5565b610da1838383610fea565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611903565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610e45908490611da7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea99190611d90565b60405180910390a3610ebc848484610fea565b50505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001610f4c9190611661565b604051602081830303815290604052805190602001209050919050565b6000806000610f788585610fef565b91509150610f858161105f565b509392505050565b610f95610780565b81610f9e6105f7565b610fa89190611da7565b1115610fe0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611bd4565b6108828282611271565b505050565b6000808251604114156110265760208301516040840151606085015160001a61101a8782858561137a565b94509450505050611058565b8251604014156110505760208301516040840151611045868383611485565b935093505050611058565b506000905060025b9250929050565b600081600481111561109a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156110a557610b8b565b60018160048111156110e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611118576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a59061177e565b6002816004811115611153577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611812565b60038160048111156111c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611997565b6004816004811115611239577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610b8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906119f4565b73ffffffffffffffffffffffffffffffffffffffff82166112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611d59565b6112ca60008383610fea565b80600260008282546112dc9190611da7565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611316908490611da7565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611366908590611d90565b60405180910390a361088260008383610fea565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113b1575060009050600361147c565b8460ff16601b141580156113c957508460ff16601c14155b156113da575060009050600461147c565b6000600187878787604051600081526020016040526040516113ff94939291906116ef565b6020604051602081039080840390855afa158015611421573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166114755760006001925092505061147c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016114bf8782888561137a565b935093505050935093915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146108ad57600080fd5b600060208284031215611502578081fd5b61150b826114cd565b9392505050565b60008060408385031215611524578081fd5b61152d836114cd565b915061153b602084016114cd565b90509250929050565b600080600060608486031215611558578081fd5b611561846114cd565b925061156f602085016114cd565b9150604084013590509250925092565b60008060408385031215611591578182fd5b61159a836114cd565b946020939093013593505050565b6000602082840312156115b9578081fd5b8135801515811461150b578182fd5b600080600080606085870312156115dd578081fd5b84359350602085013560ff811681146115f4578182fd5b9250604085013567ffffffffffffffff80821115611610578283fd5b818701915087601f830112611623578283fd5b813581811115611631578384fd5b886020828501011115611642578384fd5b95989497505060200194505050565b6000828483379101908152919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff939093168352602083019190915260ff16604082015260600190565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156117395785810183015185820160400152820161171d565b8181111561174a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f436c61696d696e67206973206e6f7420656e61626c65642e0000000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f496e76616c6964205369676e6174757265000000000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f596f75206861766520616c726561647920636c61696d656420746865206d617860408201527f696d756d20616d6f756e742e0000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f596f75206861766520616c726561647920636c61696d656420796f757220575260408201527f4c4420746f6b656e732e00000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611dba57611dba611e33565b500190565b600281046001821680611dd357607f821691505b60208210811415611e0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060ff821660ff811415611e2a57611e2a611e33565b60010192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205d047736c01c0023d925a6ffbce260832a0a3b8dd1e921beb840773ee7e2074f64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806340c10f19116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb1461029d578063dd62ed3e146102b0578063f2fde38b146102c35761016c565b806395d89b4114610282578063a457c2d71461028a5761016c565b8063715018a6116100b2578063715018a61461025d57806388ea3390146102655780638da5cb5b1461026d5761016c565b806340c10f191461023757806370a082311461024a5761016c565b806323b872dd11610124578063313ce56711610109578063313ce56714610207578063355274ea1461021c57806339509351146102245761016c565b806323b872dd146101ec5780632866ed21146101ff5761016c565b8063095ea7b311610155578063095ea7b3146101a457806318160ddd146101c457806318868455146101d95761016c565b806306fdde0314610171578063094063441461018f575b600080fd5b6101796102d6565b604051610186919061170d565b60405180910390f35b6101a261019d3660046115c8565b610368565b005b6101b76101b236600461157f565b6105da565b60405161018691906116e4565b6101cc6105f7565b6040516101869190611d90565b6101a26101e73660046115a8565b6105fd565b6101b76101fa366004611544565b6106a1565b6101b7610772565b61020f61077b565b6040516101869190611d99565b6101cc610780565b6101b761023236600461157f565b6107a4565b6101a261024536600461157f565b610805565b6101cc6102583660046114f1565b610886565b6101a26108b2565b6101a2610931565b6102756109ab565b6040516101869190611692565b6101796109c7565b6101b761029836600461157f565b6109d6565b6101b76102ab36600461157f565b610a76565b6101cc6102be366004611512565b610a8a565b6101a26102d13660046114f1565b610ac2565b6060600380546102e590611dbf565b80601f016020809104026020016040519081016040528092919081815260200182805461031190611dbf565b801561035e5780601f106103335761010080835404028352916020019161035e565b820191906000526020600020905b81548152906001019060200180831161034157829003601f168201915b5050505050905090565b600260065414156103ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611cc5565b60405180910390fd5b600260065560405161041e906103cc903390879087906020016116b3565b6040516020818303038152906040528051906020012083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b8e92505050565b610454576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611aae565b60075460ff16610490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611960565b600a82826040516104a2929190611651565b9081526040519081900360200190205460ff16156104ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611c68565b6008543360009081526009602052604090205460ff1610610539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611b1a565b6105433385610bdf565b6001600a8383604051610557929190611651565b908152604080516020928190038301902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016931515939093179092553360009081526009909152908120805460ff16916105b383611e13565b91906101000a81548160ff021916908360ff16021790555050600160068190555050505050565b60006105ee6105e7610be9565b8484610bed565b50600192915050565b60025490565b610605610be9565b73ffffffffffffffffffffffffffffffffffffffff166106236109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006106ae848484610cfc565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816106dc610be9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611a51565b6107678561075f610be9565b858403610bed565b506001949350505050565b60075460ff1681565b601290565b7f00000000000000000000000000000000000000001027e72f1f1281308800000090565b60006105ee6107b1610be9565b8484600160006107bf610be9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546108009190611da7565b610bed565b61080d610be9565b73ffffffffffffffffffffffffffffffffffffffff1661082b6109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b6108828282610bdf565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b6108ba610be9565b73ffffffffffffffffffffffffffffffffffffffff166108d86109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b61092f6000610ec2565b565b610939610be9565b73ffffffffffffffffffffffffffffffffffffffff166109576109ab565b73ffffffffffffffffffffffffffffffffffffffff16146109a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b6002600855565b60055473ffffffffffffffffffffffffffffffffffffffff1690565b6060600480546102e590611dbf565b600080600160006109e5610be9565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611cfc565b610a6c610a63610be9565b85858403610bed565b5060019392505050565b60006105ee610a83610be9565b8484610cfc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610aca610be9565b73ffffffffffffffffffffffffffffffffffffffff16610ae86109ab565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611ae5565b73ffffffffffffffffffffffffffffffffffffffff8116610b82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611849565b610b8b81610ec2565b50565b6000610b986109ab565b73ffffffffffffffffffffffffffffffffffffffff16610bc183610bbb86610f39565b90610f69565b73ffffffffffffffffffffffffffffffffffffffff16149392505050565b6108828282610f8d565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610c3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611c0b565b73ffffffffffffffffffffffffffffffffffffffff8216610c87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906118a6565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610cef908590611d90565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611b77565b73ffffffffffffffffffffffffffffffffffffffff8216610d96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906117b5565b610da1838383610fea565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611903565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610e45908490611da7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea99190611d90565b60405180910390a3610ebc848484610fea565b50505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001610f4c9190611661565b604051602081830303815290604052805190602001209050919050565b6000806000610f788585610fef565b91509150610f858161105f565b509392505050565b610f95610780565b81610f9e6105f7565b610fa89190611da7565b1115610fe0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611bd4565b6108828282611271565b505050565b6000808251604114156110265760208301516040840151606085015160001a61101a8782858561137a565b94509450505050611058565b8251604014156110505760208301516040840151611045868383611485565b935093505050611058565b506000905060025b9250929050565b600081600481111561109a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156110a557610b8b565b60018160048111156110e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611118576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a59061177e565b6002816004811115611153577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611812565b60038160048111156111c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611997565b6004816004811115611239577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610b8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a5906119f4565b73ffffffffffffffffffffffffffffffffffffffff82166112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a590611d59565b6112ca60008383610fea565b80600260008282546112dc9190611da7565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611316908490611da7565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611366908590611d90565b60405180910390a361088260008383610fea565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113b1575060009050600361147c565b8460ff16601b141580156113c957508460ff16601c14155b156113da575060009050600461147c565b6000600187878787604051600081526020016040526040516113ff94939291906116ef565b6020604051602081039080840390855afa158015611421573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166114755760006001925092505061147c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016114bf8782888561137a565b935093505050935093915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146108ad57600080fd5b600060208284031215611502578081fd5b61150b826114cd565b9392505050565b60008060408385031215611524578081fd5b61152d836114cd565b915061153b602084016114cd565b90509250929050565b600080600060608486031215611558578081fd5b611561846114cd565b925061156f602085016114cd565b9150604084013590509250925092565b60008060408385031215611591578182fd5b61159a836114cd565b946020939093013593505050565b6000602082840312156115b9578081fd5b8135801515811461150b578182fd5b600080600080606085870312156115dd578081fd5b84359350602085013560ff811681146115f4578182fd5b9250604085013567ffffffffffffffff80821115611610578283fd5b818701915087601f830112611623578283fd5b813581811115611631578384fd5b886020828501011115611642578384fd5b95989497505060200194505050565b6000828483379101908152919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff939093168352602083019190915260ff16604082015260600190565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156117395785810183015185820160400152820161171d565b8181111561174a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f436c61696d696e67206973206e6f7420656e61626c65642e0000000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f496e76616c6964205369676e6174757265000000000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f596f75206861766520616c726561647920636c61696d656420746865206d617860408201527f696d756d20616d6f756e742e0000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f596f75206861766520616c726561647920636c61696d656420796f757220575260408201527f4c4420746f6b656e732e00000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611dba57611dba611e33565b500190565b600281046001821680611dd357607f821691505b60208210811415611e0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060ff821660ff811415611e2a57611e2a611e33565b60010192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205d047736c01c0023d925a6ffbce260832a0a3b8dd1e921beb840773ee7e2074f64736f6c63430008000033
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.