ERC-20
DEX
Overview
Max Total Supply
243,555,253 BEETS
Holders
2,372 ( 0.633%)
Market
Price
$0.0391 @ 0.070707 S (-26.59%)
Onchain Market Cap
$9,521,083.87
Circulating Supply Market Cap
$8,689,158.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
123.463208673128845342 BEETSValue
$4.83 ( ~8.7361 S) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Beets
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.22;import {ERC20} from "openzeppelin-contracts/token/ERC20/ERC20.sol";import {ERC20Permit} from "openzeppelin-contracts/token/ERC20/extensions/ERC20Permit.sol";import {Ownable} from "openzeppelin-contracts/access/Ownable.sol";contract Beets is ERC20, ERC20Permit, Ownable {uint256 public constant YEAR_IN_SECONDS = 365 days;// 10% per year is the hardcoded max inflation rate, as defined in BIP-77uint256 public constant MAX_INFLATION_PER_YEAR = 1e17;// The initial start timestamp is defined on deployment. This is the start time of the current year// for which the minting cap is calculated.uint256 public startTimestampCurrentYear;// The amount of tokens we've minted so far for the current yearuint256 public amountMintedCurrentYear;// The max amount of beets that can be minted for the current year. At the start of the year, we take the current// total supply and calculate the max amount of beets that can be minted for the current year as 10% of the// current total supply.uint256 public maxAmountMintableCurrentYear;error MintAmountTooHigh(uint256 remainingMintable);error CurrentYearHasNotEnded();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.** 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 ERC-20
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.20;import {IERC20Permit} from "./IERC20Permit.sol";import {ERC20} from "../ERC20.sol";import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";import {EIP712} from "../../../utils/cryptography/EIP712.sol";import {Nonces} from "../../../utils/Nonces.sol";/*** @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].** Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {bytes32 private constant PERMIT_TYPEHASH =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");/*** @dev Permit deadline has expired.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** The initial owner is set to the address provided by the deployer. 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;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 standard as defined in the ERC.*/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 value of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC-20 standard.*/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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC-20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].** Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.** ==== Security Considerations** There are two important considerations concerning the use of `permit`. The first is that a valid permit signature* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be* considered as an intention to spend the allowance in any specific way. The second is that because permits have* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be* generally recommended is:** ```solidity* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}* doThing(..., value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @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}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.20;import {MessageHashUtils} from "./MessageHashUtils.sol";import {ShortStrings, ShortString} from "../ShortStrings.sol";import {IERC5267} from "../../interfaces/IERC5267.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.** The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)pragma solidity ^0.8.20;/*** @dev Provides tracking nonces for addresses. Nonces will only increment.*/abstract contract Nonces {/*** @dev The nonce used for an `account` is not the expected current nonce.*/error InvalidAccountNonce(address account, uint256 currentNonce);mapping(address account => uint256) private _nonces;/*** @dev Returns the next unused nonce for an address.*/function nonces(address owner) public view virtual returns (uint256) {return _nonces[owner];}/*** @dev Consumes a nonce.** Returns the current value and increments nonce.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an ERC-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ShortStrings.sol)pragma solidity ^0.8.20;import {StorageSlot} from "./StorageSlot.sol";// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |// | length | 0x BB |type ShortString is bytes32;/*** @dev This library provides functions to convert short memory strings* into a `ShortString` type that can be used as an immutable variable.** Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their* length (1 byte) in a single EVM word (32 bytes). Additionally, a* fallback mechanism can be used for every other case.** Usage example:** ```solidity* contract Named {* using ShortStrings for *;*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.20;interface IERC5267 {/*** @dev MAY be emitted to signal that the domain could have changed.*/event EIP712DomainChanged();/*** @dev returns the fields and values that describe the domain separator used by this contract for EIP-712* signature.*/function eip712Domain()externalviewreturns (bytes1 fields,string memory name,string memory version,uint256 chainId,address verifyingContract,bytes32 salt,uint256[] memory extensions
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC-1967 implementation slot:* ```solidity* contract ERC1967 {* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)pragma solidity ^0.8.20;import {Panic} from "../Panic.sol";import {SafeCast} from "./SafeCast.sol";/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an success flag (no overflow).*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;import {SafeCast} from "./SafeCast.sol";/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.** IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute* one branch when needed, making this function more expensive.*/function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {unchecked {// branchless ternary works because:// b ^ (a ^ b) == a// b ^ 0 == breturn b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)pragma solidity ^0.8.20;/*** @dev Helper library for emitting standardized panic codes.** ```solidity* contract Example {* using Panic for uint256;** // Use any of the declared internal constants* function foo() { Panic.GENERIC.panic(); }** // Alternatively* function foo() { Panic.panic(Panic.GENERIC); }* }* ```** Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].** _Available since v5.1._*/// slither-disable-next-line unused-statelibrary Panic {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526{"remappings": ["@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"useLiteralContent": false,"bytecodeHash": "ipfs","appendCBOR": true},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"address","name":"_initialMintTarget","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CurrentYearEnded","type":"error"},{"inputs":[],"name":"CurrentYearHasNotEnded","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[],"name":"InitialSupplyIsZero","type":"error"},{"inputs":[],"name":"InititalMintTargetIsZero","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint256","name":"remainingMintable","type":"uint256"}],"name":"MintAmountTooHigh","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerIsZero","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"name":"EIP712DomainChanged","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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INFLATION_PER_YEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YEAR_IN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountMintedCurrentYear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEndTimestampCurrentYear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementYear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmountMintableCurrentYear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestampCurrentYear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","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":"value","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
610160604052348015610010575f5ffd5b50604051611a07380380611a0783398101604081905261002f91610516565b3360405180604001604052806005815260200164426565747360d81b81525080604051806040016040528060018152602001603160f81b81525060405180604001604052806005815260200164426565747360d81b81525060405180604001604052806005815260200164424545545360d81b81525081600390816100b491906105e7565b5060046100c182826105e7565b506100d191508390506005610271565b610120526100e0816006610271565b61014052815160208084019190912060e052815190820120610100524660a05261016c60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506001600160a01b0381166101a457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ad816102a3565b505f83116101ce5760405163b66f979f60e01b815260040160405180910390fd5b6001600160a01b0382166101f55760405163101a7eff60e01b815260040160405180910390fd5b6001600160a01b03811661021c57604051634269a05960e01b815260040160405180910390fd5b61022682846102f4565b426009555f600a55670de0b6b3a764000067016345785d8a000061024960025490565b61025391906106b5565b61025d91906106cc565b600b556102698161032c565b50505061076c565b5f60208351101561028c5761028583610369565b905061029d565b8161029784826105e7565b5060ff90505b92915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661031d5760405163ec442f0560e01b81525f600482015260240161019b565b6103285f83836103a6565b5050565b6103346104cc565b6001600160a01b03811661035d57604051631e4fbdf760e01b81525f600482015260240161019b565b610366816102a3565b50565b5f5f829050601f81511115610393578260405163305a27a960e01b815260040161019b91906106eb565b805161039e82610736565b179392505050565b6001600160a01b0383166103d0578060025f8282546103c59190610759565b909155506104409050565b6001600160a01b0383165f90815260208190526040902054818110156104225760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161019b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661045c5760028054829003905561047a565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104bf91815260200190565b60405180910390a3505050565b6008546001600160a01b031633146104f95760405163118cdaa760e01b815233600482015260240161019b565b565b80516001600160a01b0381168114610511575f5ffd5b919050565b5f5f5f60608486031215610528575f5ffd5b83519250610538602085016104fb565b9150610546604085016104fb565b90509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061057757607f821691505b60208210810361059557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105e257805f5260205f20601f840160051c810160208510156105c05750805b601f840160051c820191505b818110156105df575f81556001016105cc565b50505b505050565b81516001600160401b038111156106005761060061054f565b6106148161060e8454610563565b8461059b565b6020601f821160018114610646575f831561062f5750848201515b5f19600385901b1c1916600184901b1784556105df565b5f84815260208120601f198516915b828110156106755787850151825560209485019460019092019101610655565b508482101561069257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761029d5761029d6106a1565b5f826106e657634e487b7160e01b5f52601260045260245ffd5b500490565b602081525f82518060208401525f5b8181101561071757602081860181015160408684010152016106fa565b505f604082850101526040601f19601f83011684010191505092915050565b80516020808301519190811015610595575f1960209190910360031b1b16919050565b8082018082111561029d5761029d6106a1565b60805160a05160c05160e05161010051610120516101405161124a6107bd5f395f610a2f01525f610a0201525f6108f901525f6108d101525f61082c01525f61085601525f610880015261124a5ff3fe608060405234801561000f575f5ffd5b5060043610610153575f3560e01c8063715018a6116100bf57806395d89b411161007957806395d89b41146102a2578063a9059cbb146102aa578063af24c4bb146102bd578063d505accf146102c6578063dd62ed3e146102d9578063f2fde38b14610311575f5ffd5b8063715018a61461023d5780637847ea53146102455780637ecebe001461025057806384b0196e146102635780638da5cb5b1461027e57806391cc82f514610299575f5ffd5b80633644e515116101105780633644e515146101df57806340c10f19146101e75780634174bd0f146101fc5780635271c762146102045780635840e1581461020c57806370a0823114610215575f5ffd5b806306fdde0314610157578063095ea7b31461017557806316c206be1461019857806318160ddd146101b557806323b872dd146101bd578063313ce567146101d0575b5f5ffd5b61015f610324565b60405161016c9190610f75565b60405180910390f35b610188610183366004610fa9565b6103b4565b604051901515815260200161016c565b6101a767016345785d8a000081565b60405190815260200161016c565b6002546101a7565b6101886101cb366004610fd1565b6103cd565b6040516012815260200161016c565b6101a76103f0565b6101fa6101f5366004610fa9565b6103fe565b005b6101fa6104a1565b6101a7610522565b6101a7600b5481565b6101a761022336600461100b565b6001600160a01b03165f9081526020819052604090205490565b6101fa610535565b6101a76301e1338081565b6101a761025e36600461100b565b610548565b61026b610565565b60405161016c9796959493929190611024565b6008546040516001600160a01b03909116815260200161016c565b6101a760095481565b61015f6105a7565b6101886102b8366004610fa9565b6105b6565b6101a7600a5481565b6101fa6102d43660046110ba565b6105c3565b6101a76102e7366004611127565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101fa61031f36600461100b565b6106f9565b60606003805461033390611158565b80601f016020809104026020016040519081016040528092919081815260200182805461035f90611158565b80156103aa5780601f10610381576101008083540402835291602001916103aa565b820191905f5260205f20905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b5f336103c1818585610736565b60019150505b92915050565b5f336103da858285610748565b6103e58585856107c3565b506001949350505050565b5f6103f9610820565b905090565b610406610949565b61040e610522565b42111561042e57604051635e49fca760e11b815260040160405180910390fd5b80600a5f82825461043f91906111a4565b9091555050600b54600a541115610493575f81600a5461045f91906111b7565b600b5461046c91906111b7565b90508060405162bd0be960e61b815260040161048a91815260200190565b60405180910390fd5b61049d8282610976565b5050565b6104a9610949565b6104b1610522565b42116104d0576040516358fef10960e01b815260040160405180910390fd5b6301e1338060095f8282546104e591906111a4565b90915550505f600a55670de0b6b3a764000067016345785d8a000061050960025490565b61051391906111ca565b61051d91906111e1565b600b55565b5f6301e133806009546103f991906111a4565b61053d610949565b6105465f6109aa565b565b6001600160a01b0381165f908152600760205260408120546103c7565b5f6060805f5f5f60606105766109fb565b61057e610a28565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60606004805461033390611158565b5f336103c18185856107c3565b834211156105e75760405163313c898160e11b81526004810185905260240161048a565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106328c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61068c82610a55565b90505f61069b82878787610a81565b9050896001600160a01b0316816001600160a01b0316146106e2576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161048a565b6106ed8a8a8a610736565b50505050505050505050565b610701610949565b6001600160a01b03811661072a57604051631e4fbdf760e01b81525f600482015260240161048a565b610733816109aa565b50565b6107438383836001610aad565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107bd57818110156107af57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161048a565b6107bd84848484035f610aad565b50505050565b6001600160a01b0383166107ec57604051634b637e8f60e11b81525f600482015260240161048a565b6001600160a01b0382166108155760405163ec442f0560e01b81525f600482015260240161048a565b610743838383610b7f565b5f306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561087857507f000000000000000000000000000000000000000000000000000000000000000046145b156108a257507f000000000000000000000000000000000000000000000000000000000000000090565b6103f9604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6008546001600160a01b031633146105465760405163118cdaa760e01b815233600482015260240161048a565b6001600160a01b03821661099f5760405163ec442f0560e01b81525f600482015260240161048a565b61049d5f8383610b7f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60606103f97f00000000000000000000000000000000000000000000000000000000000000006005610ca5565b60606103f97f00000000000000000000000000000000000000000000000000000000000000006006610ca5565b5f6103c7610a61610820565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f610a9188888888610d4e565b925092509250610aa18282610e16565b50909695505050505050565b6001600160a01b038416610ad65760405163e602df0560e01b81525f600482015260240161048a565b6001600160a01b038316610aff57604051634a1406b160e11b81525f600482015260240161048a565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107bd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b7191815260200190565b60405180910390a350505050565b6001600160a01b038316610ba9578060025f828254610b9e91906111a4565b90915550610c199050565b6001600160a01b0383165f9081526020819052604090205481811015610bfb5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161048a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610c3557600280548290039055610c53565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9891815260200190565b60405180910390a3505050565b606060ff8314610cbf57610cb883610ece565b90506103c7565b818054610ccb90611158565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf790611158565b8015610d425780601f10610d1957610100808354040283529160200191610d42565b820191905f5260205f20905b815481529060010190602001808311610d2557829003601f168201915b505050505090506103c7565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610d8757505f91506003905082610e0c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610dd8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610e0357505f925060019150829050610e0c565b92505f91508190505b9450945094915050565b5f826003811115610e2957610e29611200565b03610e32575050565b6001826003811115610e4657610e46611200565b03610e645760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610e7857610e78611200565b03610e995760405163fce698f760e01b81526004810182905260240161048a565b6003826003811115610ead57610ead611200565b0361049d576040516335e2f38360e21b81526004810182905260240161048a565b60605f610eda83610f0b565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f8111156103c757604051632cd44ac360e21b815260040160405180910390fd5b5f81518084525f5b81811015610f5657602081850181015186830182015201610f3a565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610f876020830184610f32565b9392505050565b80356001600160a01b0381168114610fa4575f5ffd5b919050565b5f5f60408385031215610fba575f5ffd5b610fc383610f8e565b946020939093013593505050565b5f5f5f60608486031215610fe3575f5ffd5b610fec84610f8e565b9250610ffa60208501610f8e565b929592945050506040919091013590565b5f6020828403121561101b575f5ffd5b610f8782610f8e565b60ff60f81b8816815260e060208201525f61104260e0830189610f32565b82810360408401526110548189610f32565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b818110156110a957835183526020938401939092019160010161108b565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a0312156110d0575f5ffd5b6110d988610f8e565b96506110e760208901610f8e565b95506040880135945060608801359350608088013560ff8116811461110a575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215611138575f5ffd5b61114183610f8e565b915061114f60208401610f8e565b90509250929050565b600181811c9082168061116c57607f821691505b60208210810361118a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103c7576103c7611190565b818103818111156103c7576103c7611190565b80820281158282048414176103c7576103c7611190565b5f826111fb57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d23d6942e0b2b5abba8b82da1b3ea6ccf906b8fd886c5b3934d95a5adb17d12964736f6c634300081c0033000000000000000000000000000000000000000000c4f6828c7fbbf94eac00000000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c20000000000000000000000006daeb8bb06a7cf3475236c6c567029d333455e38
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610153575f3560e01c8063715018a6116100bf57806395d89b411161007957806395d89b41146102a2578063a9059cbb146102aa578063af24c4bb146102bd578063d505accf146102c6578063dd62ed3e146102d9578063f2fde38b14610311575f5ffd5b8063715018a61461023d5780637847ea53146102455780637ecebe001461025057806384b0196e146102635780638da5cb5b1461027e57806391cc82f514610299575f5ffd5b80633644e515116101105780633644e515146101df57806340c10f19146101e75780634174bd0f146101fc5780635271c762146102045780635840e1581461020c57806370a0823114610215575f5ffd5b806306fdde0314610157578063095ea7b31461017557806316c206be1461019857806318160ddd146101b557806323b872dd146101bd578063313ce567146101d0575b5f5ffd5b61015f610324565b60405161016c9190610f75565b60405180910390f35b610188610183366004610fa9565b6103b4565b604051901515815260200161016c565b6101a767016345785d8a000081565b60405190815260200161016c565b6002546101a7565b6101886101cb366004610fd1565b6103cd565b6040516012815260200161016c565b6101a76103f0565b6101fa6101f5366004610fa9565b6103fe565b005b6101fa6104a1565b6101a7610522565b6101a7600b5481565b6101a761022336600461100b565b6001600160a01b03165f9081526020819052604090205490565b6101fa610535565b6101a76301e1338081565b6101a761025e36600461100b565b610548565b61026b610565565b60405161016c9796959493929190611024565b6008546040516001600160a01b03909116815260200161016c565b6101a760095481565b61015f6105a7565b6101886102b8366004610fa9565b6105b6565b6101a7600a5481565b6101fa6102d43660046110ba565b6105c3565b6101a76102e7366004611127565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101fa61031f36600461100b565b6106f9565b60606003805461033390611158565b80601f016020809104026020016040519081016040528092919081815260200182805461035f90611158565b80156103aa5780601f10610381576101008083540402835291602001916103aa565b820191905f5260205f20905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b5f336103c1818585610736565b60019150505b92915050565b5f336103da858285610748565b6103e58585856107c3565b506001949350505050565b5f6103f9610820565b905090565b610406610949565b61040e610522565b42111561042e57604051635e49fca760e11b815260040160405180910390fd5b80600a5f82825461043f91906111a4565b9091555050600b54600a541115610493575f81600a5461045f91906111b7565b600b5461046c91906111b7565b90508060405162bd0be960e61b815260040161048a91815260200190565b60405180910390fd5b61049d8282610976565b5050565b6104a9610949565b6104b1610522565b42116104d0576040516358fef10960e01b815260040160405180910390fd5b6301e1338060095f8282546104e591906111a4565b90915550505f600a55670de0b6b3a764000067016345785d8a000061050960025490565b61051391906111ca565b61051d91906111e1565b600b55565b5f6301e133806009546103f991906111a4565b61053d610949565b6105465f6109aa565b565b6001600160a01b0381165f908152600760205260408120546103c7565b5f6060805f5f5f60606105766109fb565b61057e610a28565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60606004805461033390611158565b5f336103c18185856107c3565b834211156105e75760405163313c898160e11b81526004810185905260240161048a565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106328c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61068c82610a55565b90505f61069b82878787610a81565b9050896001600160a01b0316816001600160a01b0316146106e2576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161048a565b6106ed8a8a8a610736565b50505050505050505050565b610701610949565b6001600160a01b03811661072a57604051631e4fbdf760e01b81525f600482015260240161048a565b610733816109aa565b50565b6107438383836001610aad565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107bd57818110156107af57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161048a565b6107bd84848484035f610aad565b50505050565b6001600160a01b0383166107ec57604051634b637e8f60e11b81525f600482015260240161048a565b6001600160a01b0382166108155760405163ec442f0560e01b81525f600482015260240161048a565b610743838383610b7f565b5f306001600160a01b037f0000000000000000000000002d0e0814e62d80056181f5cd932274405966e4f01614801561087857507f000000000000000000000000000000000000000000000000000000000000009246145b156108a257507fe592a2d3702c888c266002a8efbc50b93192769e0e56c05dd28c7d104bdd117990565b6103f9604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527ff8ed6bc25a8e5b05e988f473e104e8d0e616f27e40f2399035261d9565fc7df6918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6008546001600160a01b031633146105465760405163118cdaa760e01b815233600482015260240161048a565b6001600160a01b03821661099f5760405163ec442f0560e01b81525f600482015260240161048a565b61049d5f8383610b7f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60606103f97f42656574730000000000000000000000000000000000000000000000000000056005610ca5565b60606103f97f31000000000000000000000000000000000000000000000000000000000000016006610ca5565b5f6103c7610a61610820565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f610a9188888888610d4e565b925092509250610aa18282610e16565b50909695505050505050565b6001600160a01b038416610ad65760405163e602df0560e01b81525f600482015260240161048a565b6001600160a01b038316610aff57604051634a1406b160e11b81525f600482015260240161048a565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107bd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b7191815260200190565b60405180910390a350505050565b6001600160a01b038316610ba9578060025f828254610b9e91906111a4565b90915550610c199050565b6001600160a01b0383165f9081526020819052604090205481811015610bfb5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161048a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610c3557600280548290039055610c53565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9891815260200190565b60405180910390a3505050565b606060ff8314610cbf57610cb883610ece565b90506103c7565b818054610ccb90611158565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf790611158565b8015610d425780601f10610d1957610100808354040283529160200191610d42565b820191905f5260205f20905b815481529060010190602001808311610d2557829003601f168201915b505050505090506103c7565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610d8757505f91506003905082610e0c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610dd8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610e0357505f925060019150829050610e0c565b92505f91508190505b9450945094915050565b5f826003811115610e2957610e29611200565b03610e32575050565b6001826003811115610e4657610e46611200565b03610e645760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610e7857610e78611200565b03610e995760405163fce698f760e01b81526004810182905260240161048a565b6003826003811115610ead57610ead611200565b0361049d576040516335e2f38360e21b81526004810182905260240161048a565b60605f610eda83610f0b565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f8111156103c757604051632cd44ac360e21b815260040160405180910390fd5b5f81518084525f5b81811015610f5657602081850181015186830182015201610f3a565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610f876020830184610f32565b9392505050565b80356001600160a01b0381168114610fa4575f5ffd5b919050565b5f5f60408385031215610fba575f5ffd5b610fc383610f8e565b946020939093013593505050565b5f5f5f60608486031215610fe3575f5ffd5b610fec84610f8e565b9250610ffa60208501610f8e565b929592945050506040919091013590565b5f6020828403121561101b575f5ffd5b610f8782610f8e565b60ff60f81b8816815260e060208201525f61104260e0830189610f32565b82810360408401526110548189610f32565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b818110156110a957835183526020938401939092019160010161108b565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a0312156110d0575f5ffd5b6110d988610f8e565b96506110e760208901610f8e565b95506040880135945060608801359350608088013560ff8116811461110a575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215611138575f5ffd5b61114183610f8e565b915061114f60208401610f8e565b90509250929050565b600181811c9082168061116c57607f821691505b60208210810361118a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103c7576103c7611190565b818103818111156103c7576103c7611190565b80820281158282048414176103c7576103c7611190565b5f826111fb57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d23d6942e0b2b5abba8b82da1b3ea6ccf906b8fd886c5b3934d95a5adb17d12964736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000c4f6828c7fbbf94eac00000000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c20000000000000000000000006daeb8bb06a7cf3475236c6c567029d333455e38
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 238113571000000000000000000
Arg [1] : _initialMintTarget (address): 0x8a81173FC726eEDd1ad6036dB6197027C77865C2
Arg [2] : _owner (address): 0x6Daeb8BB06A7CF3475236C6c567029d333455E38
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000c4f6828c7fbbf94eac0000
Arg [1] : 0000000000000000000000008a81173fc726eedd1ad6036db6197027c77865c2
Arg [2] : 0000000000000000000000006daeb8bb06a7cf3475236c6c567029d333455e38
[ 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.