Overview
AVAX Balance
AVAX Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 59456668 | 24 days ago | IN | 0 AVAX | 0.0001178 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BitMemeCoin
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2024-12-24 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // 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. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @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. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: contracts/btc.sol pragma solidity ^0.8.0; contract BitMemeCoin is ERC20Burnable, ReentrancyGuard { uint256 public constant INITIAL_SUPPLY = 1_000_000 * (10 ** 18); // Initial mint to deployer uint256 public constant INITIAL_REWARD = 50 * (10 ** 18); // Minting reward per interval uint256 public constant HALVING_INTERVAL = 210000; // Number of mints per halving uint256 public constant MINT_INTERVAL = 2 minutes; uint256 public constant COOLDOWN_PERIOD = 20 minutes; uint256 public lastMintTime; uint256 public totalMints; uint256 public currentReward; mapping(address => uint256) public lastMintByAddress; event Minted(address indexed minter, uint256 amount); constructor() ERC20("BitMemeCoin", "BMC") { // Mint the initial supply to the deployer _mint(msg.sender, INITIAL_SUPPLY); currentReward = INITIAL_REWARD; totalMints = INITIAL_SUPPLY / INITIAL_REWARD; // Count the initial supply as mints lastMintTime = block.timestamp; // Initialize mint timing } function mint() external nonReentrant { require(block.timestamp >= lastMintTime + MINT_INTERVAL, "Minting not available yet"); require(block.timestamp >= lastMintByAddress[msg.sender] + COOLDOWN_PERIOD, "Address on cooldown"); // Update last mint time and address cooldown lastMintTime = block.timestamp; lastMintByAddress[msg.sender] = block.timestamp; // Mint tokens to the caller _mint(msg.sender, currentReward); totalMints++; // Check if halving is required if (totalMints % HALVING_INTERVAL == 0) { currentReward /= 2; } emit Minted(msg.sender, currentReward); } function getNextMintTime() external view returns (uint256) { return lastMintTime + MINT_INTERVAL; } function getAddressCooldown(address addr) external view returns (uint256) { return lastMintByAddress[addr] + COOLDOWN_PERIOD; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"COOLDOWN_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HALVING_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getAddressCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastMintByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
608060405234801561000f575f5ffd5b506040518060400160405280600b81526020017f4269744d656d65436f696e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424d430000000000000000000000000000000000000000000000000000000000815250816003908161008b91906105dc565b50806004908161009b91906105dc565b50505060016005819055506100c03369d3c21bcecceda100000061010160201b60201c565b6802b5e3af16b18800006008819055506802b5e3af16b188000069d3c21bcecceda10000006100ef9190610705565b6007819055504260068190555061081d565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610171575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101689190610774565b60405180910390fd5b6101825f838361018660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036101d6578060025f8282546101ca919061078d565b925050819055506102a4565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561025f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610256939291906107cf565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102eb578060025f8282540392505081905550610335565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103929190610804565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061041a57607f821691505b60208210810361042d5761042c6103d6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261048f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610454565b6104998683610454565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104dd6104d86104d3846104b1565b6104ba565b6104b1565b9050919050565b5f819050919050565b6104f6836104c3565b61050a610502826104e4565b848454610460565b825550505050565b5f5f905090565b610521610512565b61052c8184846104ed565b505050565b5b8181101561054f576105445f82610519565b600181019050610532565b5050565b601f8211156105945761056581610433565b61056e84610445565b8101602085101561057d578190505b61059161058985610445565b830182610531565b50505b505050565b5f82821c905092915050565b5f6105b45f1984600802610599565b1980831691505092915050565b5f6105cc83836105a5565b9150826002028217905092915050565b6105e58261039f565b67ffffffffffffffff8111156105fe576105fd6103a9565b5b6106088254610403565b610613828285610553565b5f60209050601f831160018114610644575f8415610632578287015190505b61063c85826105c1565b8655506106a3565b601f19841661065286610433565b5f5b8281101561067957848901518255600182019150602085019450602081019050610654565b868310156106965784890151610692601f8916826105a5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61070f826104b1565b915061071a836104b1565b92508261072a576107296106ab565b5b828204905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61075e82610735565b9050919050565b61076e81610754565b82525050565b5f6020820190506107875f830184610765565b92915050565b5f610797826104b1565b91506107a2836104b1565b92508282019050808211156107ba576107b96106d8565b5b92915050565b6107c9816104b1565b82525050565b5f6060820190506107e25f830186610765565b6107ef60208301856107c0565b6107fc60408301846107c0565b949350505050565b5f6020820190506108175f8301846107c0565b92915050565b6116a68061082a5f395ff3fe608060405234801561000f575f5ffd5b506004361061014b575f3560e01c80635fd9491d116100c15780639d4635201161007a5780639d4635201461036b578063a9059cbb14610389578063be146adc146103b9578063dce279c3146103d7578063dd62ed3e14610407578063fb93a05d146104375761014b565b80635fd9491d146102a75780636e99d52f146102c557806370a08231146102e357806379cc67901461031357806384e7e3d31461032f57806395d89b411461034d5761014b565b80631f21bfbf116101135780631f21bfbf146101e357806323b872dd146102015780632ff2e9dc14610231578063313ce5671461024f57806336bcf7d61461026d57806342966c681461028b5761014b565b806306fdde031461014f57806307621eca1461016d578063095ea7b31461018b5780631249c58b146101bb57806318160ddd146101c5575b5f5ffd5b610157610467565b60405161016491906110e8565b60405180910390f35b6101756104f7565b6040516101829190611120565b60405180910390f35b6101a560048036038101906101a091906111c1565b6104fd565b6040516101b29190611219565b60405180910390f35b6101c361051f565b005b6101cd6106fc565b6040516101da9190611120565b60405180910390f35b6101eb610705565b6040516101f89190611120565b60405180910390f35b61021b60048036038101906102169190611232565b61070b565b6040516102289190611219565b60405180910390f35b610239610739565b6040516102469190611120565b60405180910390f35b610257610747565b604051610264919061129d565b60405180910390f35b61027561074f565b6040516102829190611120565b60405180910390f35b6102a560048036038101906102a091906112b6565b61075c565b005b6102af610770565b6040516102bc9190611120565b60405180910390f35b6102cd610777565b6040516102da9190611120565b60405180910390f35b6102fd60048036038101906102f891906112e1565b61077d565b60405161030a9190611120565b60405180910390f35b61032d600480360381019061032891906111c1565b6107c2565b005b6103376107e2565b6040516103449190611120565b60405180910390f35b6103556107e7565b60405161036291906110e8565b60405180910390f35b610373610877565b6040516103809190611120565b60405180910390f35b6103a3600480360381019061039e91906111c1565b61087d565b6040516103b09190611219565b60405180910390f35b6103c161089f565b6040516103ce9190611120565b60405180910390f35b6103f160048036038101906103ec91906112e1565b6108b4565b6040516103fe9190611120565b60405180910390f35b610421600480360381019061041c919061130c565b6108c9565b60405161042e9190611120565b60405180910390f35b610451600480360381019061044c91906112e1565b61094b565b60405161045e9190611120565b60405180910390f35b60606003805461047690611377565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290611377565b80156104ed5780601f106104c4576101008083540402835291602001916104ed565b820191905f5260205f20905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b60085481565b5f5f61050761099e565b90506105148185856109a5565b600191505092915050565b6105276109b7565b607860065461053691906113d4565b421015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f90611451565b60405180910390fd5b6104b060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c391906113d4565b421015610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906114b9565b60405180910390fd5b426006819055504260095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061065a33600854610a06565b60075f81548092919061066c906114d7565b91905055505f62033450600754610683919061154b565b036106a257600260085f82825461069a919061157b565b925050819055505b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe6008546040516106ea9190611120565b60405180910390a26106fa610a85565b565b5f600254905090565b60075481565b5f5f61071561099e565b9050610722858285610a8f565b61072d858585610b21565b60019150509392505050565b69d3c21bcecceda100000081565b5f6012905090565b6802b5e3af16b188000081565b61076d61076761099e565b82610c11565b50565b6203345081565b6104b081565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107d4826107ce61099e565b83610a8f565b6107de8282610c11565b5050565b607881565b6060600480546107f690611377565b80601f016020809104026020016040519081016040528092919081815260200182805461082290611377565b801561086d5780601f106108445761010080835404028352916020019161086d565b820191905f5260205f20905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b60065481565b5f5f61088761099e565b9050610894818585610b21565b600191505092915050565b5f60786006546108af91906113d4565b905090565b6009602052805f5260405f205f915090505481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f6104b060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461099791906113d4565b9050919050565b5f33905090565b6109b28383836001610c90565b505050565b6002600554036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906115f5565b60405180910390fd5b6002600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a6d9190611622565b60405180910390fd5b610a815f8383610e5f565b5050565b6001600581905550565b5f610a9a84846108c9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1b5781811015610b0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b039392919061163b565b60405180910390fd5b610b1a84848484035f610c90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b91575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b889190611622565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c01575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf89190611622565b60405180910390fd5b610c0c838383610e5f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c81575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c789190611622565b60405180910390fd5b610c8c825f83610e5f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d00575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cf79190611622565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d70575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d679190611622565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e59578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e509190611120565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaf578060025f828254610ea391906113d4565b92505081905550610f7d565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f38578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f2f9392919061163b565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc4578060025f828254039250508190555061100e565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106b9190611120565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6110ba82611078565b6110c48185611082565b93506110d4818560208601611092565b6110dd816110a0565b840191505092915050565b5f6020820190508181035f83015261110081846110b0565b905092915050565b5f819050919050565b61111a81611108565b82525050565b5f6020820190506111335f830184611111565b92915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111668261113d565b9050919050565b6111768161115c565b8114611180575f5ffd5b50565b5f813590506111918161116d565b92915050565b6111a081611108565b81146111aa575f5ffd5b50565b5f813590506111bb81611197565b92915050565b5f5f604083850312156111d7576111d6611139565b5b5f6111e485828601611183565b92505060206111f5858286016111ad565b9150509250929050565b5f8115159050919050565b611213816111ff565b82525050565b5f60208201905061122c5f83018461120a565b92915050565b5f5f5f6060848603121561124957611248611139565b5b5f61125686828701611183565b935050602061126786828701611183565b9250506040611278868287016111ad565b9150509250925092565b5f60ff82169050919050565b61129781611282565b82525050565b5f6020820190506112b05f83018461128e565b92915050565b5f602082840312156112cb576112ca611139565b5b5f6112d8848285016111ad565b91505092915050565b5f602082840312156112f6576112f5611139565b5b5f61130384828501611183565b91505092915050565b5f5f6040838503121561132257611321611139565b5b5f61132f85828601611183565b925050602061134085828601611183565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061138e57607f821691505b6020821081036113a1576113a061134a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113de82611108565b91506113e983611108565b9250828201905080821115611401576114006113a7565b5b92915050565b7f4d696e74696e67206e6f7420617661696c61626c6520796574000000000000005f82015250565b5f61143b601983611082565b915061144682611407565b602082019050919050565b5f6020820190508181035f8301526114688161142f565b9050919050565b7f41646472657373206f6e20636f6f6c646f776e000000000000000000000000005f82015250565b5f6114a3601383611082565b91506114ae8261146f565b602082019050919050565b5f6020820190508181035f8301526114d081611497565b9050919050565b5f6114e182611108565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611513576115126113a7565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61155582611108565b915061156083611108565b9250826115705761156f61151e565b5b828206905092915050565b5f61158582611108565b915061159083611108565b9250826115a05761159f61151e565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6115df601f83611082565b91506115ea826115ab565b602082019050919050565b5f6020820190508181035f83015261160c816115d3565b9050919050565b61161c8161115c565b82525050565b5f6020820190506116355f830184611613565b92915050565b5f60608201905061164e5f830186611613565b61165b6020830185611111565b6116686040830184611111565b94935050505056fea2646970667358221220fa3d61f4b8c62b3b1c6d450d3e2315c1d1168f18f1ce5057f31349adfa45d34364736f6c634300081b0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061014b575f3560e01c80635fd9491d116100c15780639d4635201161007a5780639d4635201461036b578063a9059cbb14610389578063be146adc146103b9578063dce279c3146103d7578063dd62ed3e14610407578063fb93a05d146104375761014b565b80635fd9491d146102a75780636e99d52f146102c557806370a08231146102e357806379cc67901461031357806384e7e3d31461032f57806395d89b411461034d5761014b565b80631f21bfbf116101135780631f21bfbf146101e357806323b872dd146102015780632ff2e9dc14610231578063313ce5671461024f57806336bcf7d61461026d57806342966c681461028b5761014b565b806306fdde031461014f57806307621eca1461016d578063095ea7b31461018b5780631249c58b146101bb57806318160ddd146101c5575b5f5ffd5b610157610467565b60405161016491906110e8565b60405180910390f35b6101756104f7565b6040516101829190611120565b60405180910390f35b6101a560048036038101906101a091906111c1565b6104fd565b6040516101b29190611219565b60405180910390f35b6101c361051f565b005b6101cd6106fc565b6040516101da9190611120565b60405180910390f35b6101eb610705565b6040516101f89190611120565b60405180910390f35b61021b60048036038101906102169190611232565b61070b565b6040516102289190611219565b60405180910390f35b610239610739565b6040516102469190611120565b60405180910390f35b610257610747565b604051610264919061129d565b60405180910390f35b61027561074f565b6040516102829190611120565b60405180910390f35b6102a560048036038101906102a091906112b6565b61075c565b005b6102af610770565b6040516102bc9190611120565b60405180910390f35b6102cd610777565b6040516102da9190611120565b60405180910390f35b6102fd60048036038101906102f891906112e1565b61077d565b60405161030a9190611120565b60405180910390f35b61032d600480360381019061032891906111c1565b6107c2565b005b6103376107e2565b6040516103449190611120565b60405180910390f35b6103556107e7565b60405161036291906110e8565b60405180910390f35b610373610877565b6040516103809190611120565b60405180910390f35b6103a3600480360381019061039e91906111c1565b61087d565b6040516103b09190611219565b60405180910390f35b6103c161089f565b6040516103ce9190611120565b60405180910390f35b6103f160048036038101906103ec91906112e1565b6108b4565b6040516103fe9190611120565b60405180910390f35b610421600480360381019061041c919061130c565b6108c9565b60405161042e9190611120565b60405180910390f35b610451600480360381019061044c91906112e1565b61094b565b60405161045e9190611120565b60405180910390f35b60606003805461047690611377565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290611377565b80156104ed5780601f106104c4576101008083540402835291602001916104ed565b820191905f5260205f20905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b60085481565b5f5f61050761099e565b90506105148185856109a5565b600191505092915050565b6105276109b7565b607860065461053691906113d4565b421015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f90611451565b60405180910390fd5b6104b060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c391906113d4565b421015610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906114b9565b60405180910390fd5b426006819055504260095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061065a33600854610a06565b60075f81548092919061066c906114d7565b91905055505f62033450600754610683919061154b565b036106a257600260085f82825461069a919061157b565b925050819055505b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe6008546040516106ea9190611120565b60405180910390a26106fa610a85565b565b5f600254905090565b60075481565b5f5f61071561099e565b9050610722858285610a8f565b61072d858585610b21565b60019150509392505050565b69d3c21bcecceda100000081565b5f6012905090565b6802b5e3af16b188000081565b61076d61076761099e565b82610c11565b50565b6203345081565b6104b081565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107d4826107ce61099e565b83610a8f565b6107de8282610c11565b5050565b607881565b6060600480546107f690611377565b80601f016020809104026020016040519081016040528092919081815260200182805461082290611377565b801561086d5780601f106108445761010080835404028352916020019161086d565b820191905f5260205f20905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b60065481565b5f5f61088761099e565b9050610894818585610b21565b600191505092915050565b5f60786006546108af91906113d4565b905090565b6009602052805f5260405f205f915090505481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f6104b060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461099791906113d4565b9050919050565b5f33905090565b6109b28383836001610c90565b505050565b6002600554036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906115f5565b60405180910390fd5b6002600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a6d9190611622565b60405180910390fd5b610a815f8383610e5f565b5050565b6001600581905550565b5f610a9a84846108c9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1b5781811015610b0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b039392919061163b565b60405180910390fd5b610b1a84848484035f610c90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b91575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b889190611622565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c01575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf89190611622565b60405180910390fd5b610c0c838383610e5f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c81575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c789190611622565b60405180910390fd5b610c8c825f83610e5f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d00575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cf79190611622565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d70575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d679190611622565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e59578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e509190611120565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaf578060025f828254610ea391906113d4565b92505081905550610f7d565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f38578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f2f9392919061163b565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc4578060025f828254039250508190555061100e565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106b9190611120565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6110ba82611078565b6110c48185611082565b93506110d4818560208601611092565b6110dd816110a0565b840191505092915050565b5f6020820190508181035f83015261110081846110b0565b905092915050565b5f819050919050565b61111a81611108565b82525050565b5f6020820190506111335f830184611111565b92915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111668261113d565b9050919050565b6111768161115c565b8114611180575f5ffd5b50565b5f813590506111918161116d565b92915050565b6111a081611108565b81146111aa575f5ffd5b50565b5f813590506111bb81611197565b92915050565b5f5f604083850312156111d7576111d6611139565b5b5f6111e485828601611183565b92505060206111f5858286016111ad565b9150509250929050565b5f8115159050919050565b611213816111ff565b82525050565b5f60208201905061122c5f83018461120a565b92915050565b5f5f5f6060848603121561124957611248611139565b5b5f61125686828701611183565b935050602061126786828701611183565b9250506040611278868287016111ad565b9150509250925092565b5f60ff82169050919050565b61129781611282565b82525050565b5f6020820190506112b05f83018461128e565b92915050565b5f602082840312156112cb576112ca611139565b5b5f6112d8848285016111ad565b91505092915050565b5f602082840312156112f6576112f5611139565b5b5f61130384828501611183565b91505092915050565b5f5f6040838503121561132257611321611139565b5b5f61132f85828601611183565b925050602061134085828601611183565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061138e57607f821691505b6020821081036113a1576113a061134a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113de82611108565b91506113e983611108565b9250828201905080821115611401576114006113a7565b5b92915050565b7f4d696e74696e67206e6f7420617661696c61626c6520796574000000000000005f82015250565b5f61143b601983611082565b915061144682611407565b602082019050919050565b5f6020820190508181035f8301526114688161142f565b9050919050565b7f41646472657373206f6e20636f6f6c646f776e000000000000000000000000005f82015250565b5f6114a3601383611082565b91506114ae8261146f565b602082019050919050565b5f6020820190508181035f8301526114d081611497565b9050919050565b5f6114e182611108565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611513576115126113a7565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61155582611108565b915061156083611108565b9250826115705761156f61151e565b5b828206905092915050565b5f61158582611108565b915061159083611108565b9250826115a05761159f61151e565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6115df601f83611082565b91506115ea826115ab565b602082019050919050565b5f6020820190508181035f83015261160c816115d3565b9050919050565b61161c8161115c565b82525050565b5f6020820190506116355f830184611613565b92915050565b5f60608201905061164e5f830186611613565b61165b6020830185611111565b6116686040830184611111565b94935050505056fea2646970667358221220fa3d61f4b8c62b3b1c6d450d3e2315c1d1168f18f1ce5057f31349adfa45d34364736f6c634300081b0033
Deployed Bytecode Sourcemap
26900:2013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27425:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15331:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27938:702;;;:::i;:::-;;14140:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27393:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16131:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26962:63;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13991:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27060:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23011:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27154:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27298:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14302:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23429:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27241:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13248:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27359:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14625:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28648:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27462:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14870:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28769:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13038:91;13083:13;13116:5;13109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;:::o;27425:28::-;;;;:::o;15331:190::-;15404:4;15421:13;15437:12;:10;:12::i;:::-;15421:28;;15460:31;15469:5;15476:7;15485:5;15460:8;:31::i;:::-;15509:4;15502:11;;;15331:190;;;;:::o;27938:702::-;25942:21;:19;:21::i;:::-;27282:9:::1;28014:12;;:28;;;;:::i;:::-;27995:15;:47;;27987:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27340:10;28110:17;:29;28128:10;28110:29;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28091:15;:66;;28083:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;28264:15;28249:12;:30;;;;28322:15;28290:17;:29;28308:10;28290:29;;;;;;;;;;;;;;;:47;;;;28388:32;28394:10;28406:13;;28388:5;:32::i;:::-;28431:10;;:12;;;;;;;;;:::i;:::-;;;;;;28534:1;27197:6;28501:10;;:29;;;;:::i;:::-;:34:::0;28497:85:::1;;28569:1;28552:13;;:18;;;;;;;:::i;:::-;;;;;;;;28497:85;28606:10;28599:33;;;28618:13;;28599:33;;;;;;:::i;:::-;;;;;;;;25986:20:::0;:18;:20::i;:::-;27938:702::o;14140:99::-;14192:7;14219:12;;14212:19;;14140:99;:::o;27393:25::-;;;;:::o;16131:249::-;16218:4;16235:15;16253:12;:10;:12::i;:::-;16235:30;;16276:37;16292:4;16298:7;16307:5;16276:15;:37::i;:::-;16324:26;16334:4;16340:2;16344:5;16324:9;:26::i;:::-;16368:4;16361:11;;;16131:249;;;;;:::o;26962:63::-;27003:22;26962:63;:::o;13991:84::-;14040:5;14065:2;14058:9;;13991:84;:::o;27060:56::-;27101:15;27060:56;:::o;23011:89::-;23066:26;23072:12;:10;:12::i;:::-;23086:5;23066;:26::i;:::-;23011:89;:::o;27154:49::-;27197:6;27154:49;:::o;27298:52::-;27340:10;27298:52;:::o;14302:118::-;14367:7;14394:9;:18;14404:7;14394:18;;;;;;;;;;;;;;;;14387:25;;14302:118;;;:::o;23429:161::-;23505:45;23521:7;23530:12;:10;:12::i;:::-;23544:5;23505:15;:45::i;:::-;23561:21;23567:7;23576:5;23561;:21::i;:::-;23429:161;;:::o;27241:50::-;27282:9;27241:50;:::o;13248:95::-;13295:13;13328:7;13321:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13248:95;:::o;27359:27::-;;;;:::o;14625:182::-;14694:4;14711:13;14727:12;:10;:12::i;:::-;14711:28;;14750:27;14760:5;14767:2;14771:5;14750:9;:27::i;:::-;14795:4;14788:11;;;14625:182;;;;:::o;28648:113::-;28698:7;27282:9;28725:12;;:28;;;;:::i;:::-;28718:35;;28648:113;:::o;27462:52::-;;;;;;;;;;;;;;;;;:::o;14870:142::-;14950:7;14977:11;:18;14989:5;14977:18;;;;;;;;;;;;;;;:27;14996:7;14977:27;;;;;;;;;;;;;;;;14970:34;;14870:142;;;;:::o;28769:141::-;28834:7;27340:10;28861:17;:23;28879:4;28861:23;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;28854:48;;28769:141;;;:::o;4337:98::-;4390:7;4417:10;4410:17;;4337:98;:::o;20190:130::-;20275:37;20284:5;20291:7;20300:5;20307:4;20275:8;:37::i;:::-;20190:130;;;:::o;26022:293::-;25424:1;26156:7;;:19;26148:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;25424:1;26289:7;:18;;;;26022:293::o;18885:213::-;18975:1;18956:21;;:7;:21;;;18952:93;;19030:1;19001:32;;;;;;;;;;;:::i;:::-;;;;;;;;18952:93;19055:35;19071:1;19075:7;19084:5;19055:7;:35::i;:::-;18885:213;;:::o;26323:::-;25380:1;26506:7;:22;;;;26323:213::o;21922:487::-;22022:24;22049:25;22059:5;22066:7;22049:9;:25::i;:::-;22022:52;;22109:17;22089:16;:37;22085:317;;22166:5;22147:16;:24;22143:132;;;22226:7;22235:16;22253:5;22199:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22143:132;22318:57;22327:5;22334:7;22362:5;22343:16;:24;22369:5;22318:8;:57::i;:::-;22085:317;22011:398;21922:487;;;:::o;16765:308::-;16865:1;16849:18;;:4;:18;;;16845:88;;16918:1;16891:30;;;;;;;;;;;:::i;:::-;;;;;;;;16845:88;16961:1;16947:16;;:2;:16;;;16943:88;;17016:1;16987:32;;;;;;;;;;;:::i;:::-;;;;;;;;16943:88;17041:24;17049:4;17055:2;17059:5;17041:7;:24::i;:::-;16765:308;;;:::o;19426:211::-;19516:1;19497:21;;:7;:21;;;19493:91;;19569:1;19542:30;;;;;;;;;;;:::i;:::-;;;;;;;;19493:91;19594:35;19602:7;19619:1;19623:5;19594:7;:35::i;:::-;19426:211;;:::o;21187:443::-;21317:1;21300:19;;:5;:19;;;21296:91;;21372:1;21343:32;;;;;;;;;;;:::i;:::-;;;;;;;;21296:91;21420:1;21401:21;;:7;:21;;;21397:92;;21474:1;21446:31;;;;;;;;;;;:::i;:::-;;;;;;;;21397:92;21529:5;21499:11;:18;21511:5;21499:18;;;;;;;;;;;;;;;:27;21518:7;21499:27;;;;;;;;;;;;;;;:35;;;;21549:9;21545:78;;;21596:7;21580:31;;21589:5;21580:31;;;21605:5;21580:31;;;;;;:::i;:::-;;;;;;;;21545:78;21187:443;;;;:::o;17397:1135::-;17503:1;17487:18;;:4;:18;;;17483:552;;17641:5;17625:12;;:21;;;;;;;:::i;:::-;;;;;;;;17483:552;;;17679:19;17701:9;:15;17711:4;17701:15;;;;;;;;;;;;;;;;17679:37;;17749:5;17735:11;:19;17731:117;;;17807:4;17813:11;17826:5;17782:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17731:117;18003:5;17989:11;:19;17971:9;:15;17981:4;17971:15;;;;;;;;;;;;;;;:37;;;;17664:371;17483:552;18065:1;18051:16;;:2;:16;;;18047:435;;18233:5;18217:12;;:21;;;;;;;;;;;18047:435;;;18450:5;18433:9;:13;18443:2;18433:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18047:435;18514:2;18499:25;;18508:4;18499:25;;;18518:5;18499:25;;;;;;:::i;:::-;;;;;;;;17397:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:77::-;1279:7;1308:5;1297:16;;1242:77;;;:::o;1325:118::-;1412:24;1430:5;1412:24;:::i;:::-;1407:3;1400:37;1325:118;;:::o;1449:222::-;1542:4;1580:2;1569:9;1565:18;1557:26;;1593:71;1661:1;1650:9;1646:17;1637:6;1593:71;:::i;:::-;1449:222;;;;:::o;1758:117::-;1867:1;1864;1857:12;2004:126;2041:7;2081:42;2074:5;2070:54;2059:65;;2004:126;;;:::o;2136:96::-;2173:7;2202:24;2220:5;2202:24;:::i;:::-;2191:35;;2136:96;;;:::o;2238:122::-;2311:24;2329:5;2311:24;:::i;:::-;2304:5;2301:35;2291:63;;2350:1;2347;2340:12;2291:63;2238:122;:::o;2366:139::-;2412:5;2450:6;2437:20;2428:29;;2466:33;2493:5;2466:33;:::i;:::-;2366:139;;;;:::o;2511:122::-;2584:24;2602:5;2584:24;:::i;:::-;2577:5;2574:35;2564:63;;2623:1;2620;2613:12;2564:63;2511:122;:::o;2639:139::-;2685:5;2723:6;2710:20;2701:29;;2739:33;2766:5;2739:33;:::i;:::-;2639:139;;;;:::o;2784:474::-;2852:6;2860;2909:2;2897:9;2888:7;2884:23;2880:32;2877:119;;;2915:79;;:::i;:::-;2877:119;3035:1;3060:53;3105:7;3096:6;3085:9;3081:22;3060:53;:::i;:::-;3050:63;;3006:117;3162:2;3188:53;3233:7;3224:6;3213:9;3209:22;3188:53;:::i;:::-;3178:63;;3133:118;2784:474;;;;;:::o;3264:90::-;3298:7;3341:5;3334:13;3327:21;3316:32;;3264:90;;;:::o;3360:109::-;3441:21;3456:5;3441:21;:::i;:::-;3436:3;3429:34;3360:109;;:::o;3475:210::-;3562:4;3600:2;3589:9;3585:18;3577:26;;3613:65;3675:1;3664:9;3660:17;3651:6;3613:65;:::i;:::-;3475:210;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:474::-;5484:6;5492;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5794:2;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5765:118;5416:474;;;;;:::o;5896:180::-;5944:77;5941:1;5934:88;6041:4;6038:1;6031:15;6065:4;6062:1;6055:15;6082:320;6126:6;6163:1;6157:4;6153:12;6143:22;;6210:1;6204:4;6200:12;6231:18;6221:81;;6287:4;6279:6;6275:17;6265:27;;6221:81;6349:2;6341:6;6338:14;6318:18;6315:38;6312:84;;6368:18;;:::i;:::-;6312:84;6133:269;6082:320;;;:::o;6408:180::-;6456:77;6453:1;6446:88;6553:4;6550:1;6543:15;6577:4;6574:1;6567:15;6594:191;6634:3;6653:20;6671:1;6653:20;:::i;:::-;6648:25;;6687:20;6705:1;6687:20;:::i;:::-;6682:25;;6730:1;6727;6723:9;6716:16;;6751:3;6748:1;6745:10;6742:36;;;6758:18;;:::i;:::-;6742:36;6594:191;;;;:::o;6791:175::-;6931:27;6927:1;6919:6;6915:14;6908:51;6791:175;:::o;6972:366::-;7114:3;7135:67;7199:2;7194:3;7135:67;:::i;:::-;7128:74;;7211:93;7300:3;7211:93;:::i;:::-;7329:2;7324:3;7320:12;7313:19;;6972:366;;;:::o;7344:419::-;7510:4;7548:2;7537:9;7533:18;7525:26;;7597:9;7591:4;7587:20;7583:1;7572:9;7568:17;7561:47;7625:131;7751:4;7625:131;:::i;:::-;7617:139;;7344:419;;;:::o;7769:169::-;7909:21;7905:1;7897:6;7893:14;7886:45;7769:169;:::o;7944:366::-;8086:3;8107:67;8171:2;8166:3;8107:67;:::i;:::-;8100:74;;8183:93;8272:3;8183:93;:::i;:::-;8301:2;8296:3;8292:12;8285:19;;7944:366;;;:::o;8316:419::-;8482:4;8520:2;8509:9;8505:18;8497:26;;8569:9;8563:4;8559:20;8555:1;8544:9;8540:17;8533:47;8597:131;8723:4;8597:131;:::i;:::-;8589:139;;8316:419;;;:::o;8741:233::-;8780:3;8803:24;8821:5;8803:24;:::i;:::-;8794:33;;8849:66;8842:5;8839:77;8836:103;;8919:18;;:::i;:::-;8836:103;8966:1;8959:5;8955:13;8948:20;;8741:233;;;:::o;8980:180::-;9028:77;9025:1;9018:88;9125:4;9122:1;9115:15;9149:4;9146:1;9139:15;9166:176;9198:1;9215:20;9233:1;9215:20;:::i;:::-;9210:25;;9249:20;9267:1;9249:20;:::i;:::-;9244:25;;9288:1;9278:35;;9293:18;;:::i;:::-;9278:35;9334:1;9331;9327:9;9322:14;;9166:176;;;;:::o;9348:185::-;9388:1;9405:20;9423:1;9405:20;:::i;:::-;9400:25;;9439:20;9457:1;9439:20;:::i;:::-;9434:25;;9478:1;9468:35;;9483:18;;:::i;:::-;9468:35;9525:1;9522;9518:9;9513:14;;9348:185;;;;:::o;9539:181::-;9679:33;9675:1;9667:6;9663:14;9656:57;9539:181;:::o;9726:366::-;9868:3;9889:67;9953:2;9948:3;9889:67;:::i;:::-;9882:74;;9965:93;10054:3;9965:93;:::i;:::-;10083:2;10078:3;10074:12;10067:19;;9726:366;;;:::o;10098:419::-;10264:4;10302:2;10291:9;10287:18;10279:26;;10351:9;10345:4;10341:20;10337:1;10326:9;10322:17;10315:47;10379:131;10505:4;10379:131;:::i;:::-;10371:139;;10098:419;;;:::o;10523:118::-;10610:24;10628:5;10610:24;:::i;:::-;10605:3;10598:37;10523:118;;:::o;10647:222::-;10740:4;10778:2;10767:9;10763:18;10755:26;;10791:71;10859:1;10848:9;10844:17;10835:6;10791:71;:::i;:::-;10647:222;;;;:::o;10875:442::-;11024:4;11062:2;11051:9;11047:18;11039:26;;11075:71;11143:1;11132:9;11128:17;11119:6;11075:71;:::i;:::-;11156:72;11224:2;11213:9;11209:18;11200:6;11156:72;:::i;:::-;11238;11306:2;11295:9;11291:18;11282:6;11238:72;:::i;:::-;10875:442;;;;;;:::o
Swarm Source
ipfs://fa3d61f4b8c62b3b1c6d450d3e2315c1d1168f18f1ce5057f31349adfa45d343
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.