Source Code
Overview
BTT Balance
Multichain Info
N/A
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 58791825 | 66 days ago | IN | 0 BTT | 417.654 | ||||
| Approve | 58707880 | 68 days ago | IN | 0 BTT | 417.654 | ||||
| Approve | 57548628 | 95 days ago | IN | 0 BTT | 417.654 | ||||
| Approve | 54451792 | 169 days ago | IN | 0 BTT | 696.09 | ||||
| Set Minter | 53834676 | 184 days ago | IN | 0 BTT | 141.669 | ||||
| Set Minter | 53834629 | 184 days ago | IN | 0 BTT | 677.196 | ||||
| Set Minter | 53671561 | 188 days ago | IN | 0 BTT | 1,385.16 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | Amount | ||
|---|---|---|---|---|---|---|
| 61556928 | 35 mins ago | 0 BTT | ||||
| 61556928 | 35 mins ago | 0 BTT | ||||
| 61556802 | 39 mins ago | 0 BTT | ||||
| 61556802 | 39 mins ago | 0 BTT | ||||
| 61550931 | 4 hrs ago | 0 BTT | ||||
| 61550931 | 4 hrs ago | 0 BTT | ||||
| 61548328 | 5 hrs ago | 0 BTT | ||||
| 61548328 | 5 hrs ago | 0 BTT | ||||
| 61545783 | 6 hrs ago | 0 BTT | ||||
| 61545783 | 6 hrs ago | 0 BTT | ||||
| 61545773 | 6 hrs ago | 0 BTT | ||||
| 61545773 | 6 hrs ago | 0 BTT | ||||
| 61538257 | 11 hrs ago | 0 BTT | ||||
| 61538257 | 11 hrs ago | 0 BTT | ||||
| 61537229 | 11 hrs ago | 0 BTT | ||||
| 61537229 | 11 hrs ago | 0 BTT | ||||
| 61528705 | 16 hrs ago | 0 BTT | ||||
| 61528705 | 16 hrs ago | 0 BTT | ||||
| 61525870 | 18 hrs ago | 0 BTT | ||||
| 61525870 | 18 hrs ago | 0 BTT | ||||
| 61515033 | 24 hrs ago | 0 BTT | ||||
| 61515033 | 24 hrs ago | 0 BTT | ||||
| 61514907 | 24 hrs ago | 0 BTT | ||||
| 61514907 | 24 hrs ago | 0 BTT | ||||
| 61509036 | 28 hrs ago | 0 BTT |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CherriToken
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract CherriToken is ERC20, Ownable {
mapping(address => bool) public isMinter;
event MinterUpdated(address indexed minter, bool status);
address[] public minterList;
modifier onlyMinter() {
require(isMinter[msg.sender], "Not authorized to mint");
_;
}
constructor() ERC20("Cherri", "CHRI") Ownable(msg.sender) {}
function decimals() public pure override returns (uint8) {
return 18;
}
function setMinter(address minter, bool status) external onlyOwner {
if (status && !isMinter[minter]) {
minterList.push(minter);
}
isMinter[minter] = status;
emit MinterUpdated(minter, status);
}
function mint(address to, uint256 amount) external onlyMinter {
_mint(to, amount);
}
function getActiveMinters() external view returns (address[] memory) {
uint count;
for (uint i = 0; i < minterList.length; i++) {
if (isMinter[minterList[i]]) {
count++;
}
}
address[] memory result = new address[](count);
uint index;
for (uint i = 0; i < minterList.length; i++) {
if (isMinter[minterList[i]]) {
result[index++] = minterList[i];
}
}
return result;
}
}// 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);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.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
* 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}.
*
* Both 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);
}
}
}
}// 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);
}// 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.
*/
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);
}// 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;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"bool","name":"status","type":"bool"}],"name":"MinterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"pure","type":"function"},{"inputs":[],"name":"getActiveMinters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minterList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","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
60806040523480156200001157600080fd5b50336040518060400160405280600681526020016543686572726960d01b815250604051806040016040528060048152602001634348524960e01b8152508160039081620000609190620001ac565b5060046200006f8282620001ac565b5050506001600160a01b038116620000a157604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000ac81620000b3565b5062000278565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013057607f821691505b6020821081036200015157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a7576000816000526020600020601f850160051c81016020861015620001825750805b601f850160051c820191505b81811015620001a3578281556001016200018e565b5050505b505050565b81516001600160401b03811115620001c857620001c862000105565b620001e081620001d984546200011b565b8462000157565b602080601f831160018114620002185760008415620001ff5750858301515b600019600386901b1c1916600185901b178555620001a3565b600085815260208120601f198616915b82811015620002495788860151825594840194600190910190840162000228565b5085821015620002685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610d3080620002886000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063aa271e1a11610071578063aa271e1a14610222578063cf456ae714610245578063dd62ed3e14610258578063ed00364314610291578063f2fde38b146102a657600080fd5b8063715018a6146101ee5780638da5cb5b146101f657806395d89b4114610207578063a9059cbb1461020f57600080fd5b8063279ad7ab116100de578063279ad7ab14610176578063313ce567146101a157806340c10f19146101b057806370a08231146101c557600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102b9565b6040516101259190610a8a565b60405180910390f35b61014161013c366004610af5565b61034b565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b1f565b610365565b610189610184366004610b5b565b610389565b6040516001600160a01b039091168152602001610125565b60405160128152602001610125565b6101c36101be366004610af5565b6103b3565b005b6101556101d3366004610b74565b6001600160a01b031660009081526020819052604090205490565b6101c361041e565b6005546001600160a01b0316610189565b610118610432565b61014161021d366004610af5565b610441565b610141610230366004610b74565b60066020526000908152604090205460ff1681565b6101c3610253366004610b96565b61044f565b610155610266366004610bd2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61029961052d565b6040516101259190610c05565b6101c36102b4366004610b74565b6106a8565b6060600380546102c890610c52565b80601f01602080910402602001604051908101604052809291908181526020018280546102f490610c52565b80156103415780601f1061031657610100808354040283529160200191610341565b820191906000526020600020905b81548152906001019060200180831161032457829003601f168201915b5050505050905090565b6000336103598185856106e6565b60019150505b92915050565b6000336103738582856106f8565b61037e858585610777565b506001949350505050565b6007818154811061039957600080fd5b6000918252602090912001546001600160a01b0316905081565b3360009081526006602052604090205460ff166104105760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b60448201526064015b60405180910390fd5b61041a82826107d6565b5050565b61042661080c565b6104306000610839565b565b6060600480546102c890610c52565b600033610359818585610777565b61045761080c565b80801561047d57506001600160a01b03821660009081526006602052604090205460ff16155b156104ce57600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb19910160405180910390a25050565b60606000805b60075481101561059757600660006007838154811061055457610554610c8c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff161561058f578161058b81610cb8565b9250505b600101610533565b5060008167ffffffffffffffff8111156105b3576105b3610cd1565b6040519080825280602002602001820160405280156105dc578160200160208202803683370190505b5090506000805b60075481101561069f57600660006007838154811061060457610604610c8c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610697576007818154811061064457610644610c8c565b6000918252602090912001546001600160a01b0316838361066481610cb8565b94508151811061067657610676610c8c565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6001016105e3565b50909392505050565b6106b061080c565b6001600160a01b0381166106da57604051631e4fbdf760e01b815260006004820152602401610407565b6106e381610839565b50565b6106f3838383600161088b565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610771578181101561076257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610407565b6107718484848403600061088b565b50505050565b6001600160a01b0383166107a157604051634b637e8f60e11b815260006004820152602401610407565b6001600160a01b0382166107cb5760405163ec442f0560e01b815260006004820152602401610407565b6106f3838383610960565b6001600160a01b0382166108005760405163ec442f0560e01b815260006004820152602401610407565b61041a60008383610960565b6005546001600160a01b031633146104305760405163118cdaa760e01b8152336004820152602401610407565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166108b55760405163e602df0560e01b815260006004820152602401610407565b6001600160a01b0383166108df57604051634a1406b160e11b815260006004820152602401610407565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561077157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161095291815260200190565b60405180910390a350505050565b6001600160a01b03831661098b5780600260008282546109809190610ce7565b909155506109fd9050565b6001600160a01b038316600090815260208190526040902054818110156109de5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610407565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610a1957600280548290039055610a38565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a7d91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b81811015610ab857858101830151858201604001528201610a9c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af057600080fd5b919050565b60008060408385031215610b0857600080fd5b610b1183610ad9565b946020939093013593505050565b600080600060608486031215610b3457600080fd5b610b3d84610ad9565b9250610b4b60208501610ad9565b9150604084013590509250925092565b600060208284031215610b6d57600080fd5b5035919050565b600060208284031215610b8657600080fd5b610b8f82610ad9565b9392505050565b60008060408385031215610ba957600080fd5b610bb283610ad9565b915060208301358015158114610bc757600080fd5b809150509250929050565b60008060408385031215610be557600080fd5b610bee83610ad9565b9150610bfc60208401610ad9565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c465783516001600160a01b031683529284019291840191600101610c21565b50909695505050505050565b600181811c90821680610c6657607f821691505b602082108103610c8657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610cca57610cca610ca2565b5060010190565b634e487b7160e01b600052604160045260246000fd5b8082018082111561035f5761035f610ca256fea264697066735822122012e6d3b372020707374df09540e1a1c0820dac75523b3bfbb42be18c158a305b64736f6c63430008180033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063aa271e1a11610071578063aa271e1a14610222578063cf456ae714610245578063dd62ed3e14610258578063ed00364314610291578063f2fde38b146102a657600080fd5b8063715018a6146101ee5780638da5cb5b146101f657806395d89b4114610207578063a9059cbb1461020f57600080fd5b8063279ad7ab116100de578063279ad7ab14610176578063313ce567146101a157806340c10f19146101b057806370a08231146101c557600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102b9565b6040516101259190610a8a565b60405180910390f35b61014161013c366004610af5565b61034b565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b1f565b610365565b610189610184366004610b5b565b610389565b6040516001600160a01b039091168152602001610125565b60405160128152602001610125565b6101c36101be366004610af5565b6103b3565b005b6101556101d3366004610b74565b6001600160a01b031660009081526020819052604090205490565b6101c361041e565b6005546001600160a01b0316610189565b610118610432565b61014161021d366004610af5565b610441565b610141610230366004610b74565b60066020526000908152604090205460ff1681565b6101c3610253366004610b96565b61044f565b610155610266366004610bd2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61029961052d565b6040516101259190610c05565b6101c36102b4366004610b74565b6106a8565b6060600380546102c890610c52565b80601f01602080910402602001604051908101604052809291908181526020018280546102f490610c52565b80156103415780601f1061031657610100808354040283529160200191610341565b820191906000526020600020905b81548152906001019060200180831161032457829003601f168201915b5050505050905090565b6000336103598185856106e6565b60019150505b92915050565b6000336103738582856106f8565b61037e858585610777565b506001949350505050565b6007818154811061039957600080fd5b6000918252602090912001546001600160a01b0316905081565b3360009081526006602052604090205460ff166104105760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b60448201526064015b60405180910390fd5b61041a82826107d6565b5050565b61042661080c565b6104306000610839565b565b6060600480546102c890610c52565b600033610359818585610777565b61045761080c565b80801561047d57506001600160a01b03821660009081526006602052604090205460ff16155b156104ce57600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb19910160405180910390a25050565b60606000805b60075481101561059757600660006007838154811061055457610554610c8c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff161561058f578161058b81610cb8565b9250505b600101610533565b5060008167ffffffffffffffff8111156105b3576105b3610cd1565b6040519080825280602002602001820160405280156105dc578160200160208202803683370190505b5090506000805b60075481101561069f57600660006007838154811061060457610604610c8c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610697576007818154811061064457610644610c8c565b6000918252602090912001546001600160a01b0316838361066481610cb8565b94508151811061067657610676610c8c565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6001016105e3565b50909392505050565b6106b061080c565b6001600160a01b0381166106da57604051631e4fbdf760e01b815260006004820152602401610407565b6106e381610839565b50565b6106f3838383600161088b565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610771578181101561076257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610407565b6107718484848403600061088b565b50505050565b6001600160a01b0383166107a157604051634b637e8f60e11b815260006004820152602401610407565b6001600160a01b0382166107cb5760405163ec442f0560e01b815260006004820152602401610407565b6106f3838383610960565b6001600160a01b0382166108005760405163ec442f0560e01b815260006004820152602401610407565b61041a60008383610960565b6005546001600160a01b031633146104305760405163118cdaa760e01b8152336004820152602401610407565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166108b55760405163e602df0560e01b815260006004820152602401610407565b6001600160a01b0383166108df57604051634a1406b160e11b815260006004820152602401610407565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561077157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161095291815260200190565b60405180910390a350505050565b6001600160a01b03831661098b5780600260008282546109809190610ce7565b909155506109fd9050565b6001600160a01b038316600090815260208190526040902054818110156109de5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610407565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610a1957600280548290039055610a38565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a7d91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b81811015610ab857858101830151858201604001528201610a9c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af057600080fd5b919050565b60008060408385031215610b0857600080fd5b610b1183610ad9565b946020939093013593505050565b600080600060608486031215610b3457600080fd5b610b3d84610ad9565b9250610b4b60208501610ad9565b9150604084013590509250925092565b600060208284031215610b6d57600080fd5b5035919050565b600060208284031215610b8657600080fd5b610b8f82610ad9565b9392505050565b60008060408385031215610ba957600080fd5b610bb283610ad9565b915060208301358015158114610bc757600080fd5b809150509250929050565b60008060408385031215610be557600080fd5b610bee83610ad9565b9150610bfc60208401610ad9565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c465783516001600160a01b031683529284019291840191600101610c21565b50909695505050505050565b600181811c90821680610c6657607f821691505b602082108103610c8657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610cca57610cca610ca2565b5060010190565b634e487b7160e01b600052604160045260246000fd5b8082018082111561035f5761035f610ca256fea264697066735822122012e6d3b372020707374df09540e1a1c0820dac75523b3bfbb42be18c158a305b64736f6c63430008180033
Deployed Bytecode Sourcemap
168:1319:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3979:186;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:7;;1162:22;1144:41;;1132:2;1117:18;3979:186:2;1004:187:7;2830:97:2;2908:12;;2830:97;;;1342:25:7;;;1330:2;1315:18;2830:97:2;1196:177:7;4757:244:2;;;;;;:::i;:::-;;:::i;321:27:6:-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2060:32:7;;;2042:51;;2030:2;2015:18;321:27:6;1896:203:7;532:83:6;;;606:2;2246:36:7;;2234:2;2219:18;532:83:6;2104:184:7;870:96:6;;;;;;:::i;:::-;;:::i;:::-;;2985:116:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3076:18:2;3050:7;3076:18;;;;;;;;;;;;2985:116;2293:101:0;;;:::i;1638:85::-;1710:6;;-1:-1:-1;;;;;1710:6:0;1638:85;;1962:93:2;;;:::i;3296:178::-;;;;;;:::i;:::-;;:::i;213:40:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;621:243;;;;;;:::i;:::-;;:::i;3532:140:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3638:18:2;;;3612:7;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3532:140;972:513:6;;;:::i;:::-;;;;;;;:::i;2543:215:0:-;;;;;;:::i;:::-;;:::i;1760:89:2:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3979:186::-;4052:4;735:10:5;4106:31:2;735:10:5;4122:7:2;4131:5;4106:8;:31::i;:::-;4154:4;4147:11;;;3979:186;;;;;:::o;4757:244::-;4844:4;735:10:5;4900:37:2;4916:4;735:10:5;4931:5:2;4900:15;:37::i;:::-;4947:26;4957:4;4963:2;4967:5;4947:9;:26::i;:::-;-1:-1:-1;4990:4:2;;4757:244;-1:-1:-1;;;;4757:244:2:o;321:27:6:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;321:27:6;;-1:-1:-1;321:27:6;:::o;870:96::-;404:10;395:20;;;;:8;:20;;;;;;;;387:55;;;;-1:-1:-1;;;387:55:6;;4351:2:7;387:55:6;;;4333:21:7;4390:2;4370:18;;;4363:30;-1:-1:-1;;;4409:18:7;;;4402:52;4471:18;;387:55:6;;;;;;;;;942:17:::1;948:2;952:6;942:5;:17::i;:::-;870:96:::0;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1962:93:2:-;2009:13;2041:7;2034:14;;;;;:::i;3296:178::-;3365:4;735:10:5;3419:27:2;735:10:5;3436:2:2;3440:5;3419:9;:27::i;621:243:6:-;1531:13:0;:11;:13::i;:::-;702:6:6::1;:27;;;;-1:-1:-1::0;;;;;;713:16:6;::::1;;::::0;;;:8:::1;:16;::::0;;;;;::::1;;712:17;702:27;698:81;;;745:10;:23:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;745:23:6;;;;;::::1;::::0;;-1:-1:-1;;;;;;745:23:6::1;-1:-1:-1::0;;;;;745:23:6;::::1;;::::0;;698:81:::1;-1:-1:-1::0;;;;;788:16:6;::::1;;::::0;;;:8:::1;:16;::::0;;;;;;;;:25;;-1:-1:-1;;788:25:6::1;::::0;::::1;;::::0;;::::1;::::0;;;828:29;;1144:41:7;;;828:29:6::1;::::0;1117:18:7;828:29:6::1;;;;;;;621:243:::0;;:::o;972:513::-;1023:16;1051:10;;1071:138;1092:10;:17;1088:21;;1071:138;;;1134:8;:23;1143:10;1154:1;1143:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1143:13:6;1134:23;;;;;;;;;;;;;;;1130:69;;;1177:7;;;;:::i;:::-;;;;1130:69;1111:3;;1071:138;;;;1218:23;1258:5;1244:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1244:20:6;-1:-1:-1;1218:46:6;-1:-1:-1;1274:10:6;;1294:162;1315:10;:17;1311:21;;1294:162;;;1357:8;:23;1366:10;1377:1;1366:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1366:13:6;1357:23;;;;;;;;;;;;;;;1353:93;;;1418:10;1429:1;1418:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1418:13:6;1400:6;1407:7;;;;:::i;:::-;;;1400:15;;;;;;;;:::i;:::-;;;;;;:31;-1:-1:-1;;;;;1400:31:6;;;-1:-1:-1;;;;;1400:31:6;;;;;1353:93;1334:3;;1294:162;;;-1:-1:-1;1472:6:6;;972:513;-1:-1:-1;;;972:513:6:o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;2042:51:7::0;2015:18;;2672:31:0::1;1896:203:7::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;8707:128:2:-;8791:37;8800:5;8807:7;8816:5;8823:4;8791:8;:37::i;:::-;8707:128;;;:::o;10396:476::-;-1:-1:-1;;;;;3638:18:2;;;10495:24;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10561:36:2;;10557:309;;;10636:5;10617:16;:24;10613:130;;;10668:60;;-1:-1:-1;;;10668:60:2;;-1:-1:-1;;;;;5256:32:7;;10668:60:2;;;5238:51:7;5305:18;;;5298:34;;;5348:18;;;5341:34;;;5211:18;;10668:60:2;5036:345:7;10613:130:2;10784:57;10793:5;10800:7;10828:5;10809:16;:24;10835:5;10784:8;:57::i;:::-;10485:387;10396:476;;;:::o;5374:300::-;-1:-1:-1;;;;;5457:18:2;;5453:86;;5498:30;;-1:-1:-1;;;5498:30:2;;5525:1;5498:30;;;2042:51:7;2015:18;;5498:30:2;1896:203:7;5453:86:2;-1:-1:-1;;;;;5552:16:2;;5548:86;;5591:32;;-1:-1:-1;;;5591:32:2;;5620:1;5591:32;;;2042:51:7;2015:18;;5591:32:2;1896:203:7;5548:86:2;5643:24;5651:4;5657:2;5661:5;5643:7;:24::i;7439:208::-;-1:-1:-1;;;;;7509:21:2;;7505:91;;7553:32;;-1:-1:-1;;;7553:32:2;;7582:1;7553:32;;;2042:51:7;2015:18;;7553:32:2;1896:203:7;7505:91:2;7605:35;7621:1;7625:7;7634:5;7605:7;:35::i;1796:162:0:-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;2042:51:7;2015:18;;1901:40:0;1896:203:7;2912:187:0;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;9682:432:2:-;-1:-1:-1;;;;;9794:19:2;;9790:89;;9836:32;;-1:-1:-1;;;9836:32:2;;9865:1;9836:32;;;2042:51:7;2015:18;;9836:32:2;1896:203:7;9790:89:2;-1:-1:-1;;;;;9892:21:2;;9888:90;;9936:31;;-1:-1:-1;;;9936:31:2;;9964:1;9936:31;;;2042:51:7;2015:18;;9936:31:2;1896:203:7;9888:90:2;-1:-1:-1;;;;;9987:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10032:76;;;;10082:7;-1:-1:-1;;;;;10066:31:2;10075:5;-1:-1:-1;;;;;10066:31:2;;10091:5;10066:31;;;;1342:25:7;;1330:2;1315:18;;1196:177;10066:31:2;;;;;;;;9682:432;;;;:::o;5989:1107::-;-1:-1:-1;;;;;6078:18:2;;6074:540;;6230:5;6214:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6074:540:2;;-1:-1:-1;6074:540:2;;-1:-1:-1;;;;;6288:15:2;;6266:19;6288:15;;;;;;;;;;;6321:19;;;6317:115;;;6367:50;;-1:-1:-1;;;6367:50:2;;-1:-1:-1;;;;;5256:32:7;;6367:50:2;;;5238:51:7;5305:18;;;5298:34;;;5348:18;;;5341:34;;;5211:18;;6367:50:2;5036:345:7;6317:115:2;-1:-1:-1;;;;;6552:15:2;;:9;:15;;;;;;;;;;6570:19;;;;6552:37;;6074:540;-1:-1:-1;;;;;6628:16:2;;6624:425;;6791:12;:21;;;;;;;6624:425;;;-1:-1:-1;;;;;7002:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6624:425;7079:2;-1:-1:-1;;;;;7064:25:2;7073:4;-1:-1:-1;;;;;7064:25:2;;7083:5;7064:25;;;;1342::7;;1330:2;1315:18;;1196:177;7064:25:2;;;;;;;;5989:1107;;;:::o;14:548:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:7;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:7:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:7;;1711:180;-1:-1:-1;1711:180:7:o;2293:186::-;2352:6;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;:::-;2434:39;2293:186;-1:-1:-1;;;2293:186:7:o;2484:347::-;2549:6;2557;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;:::-;2639:39;;2728:2;2717:9;2713:18;2700:32;2775:5;2768:13;2761:21;2754:5;2751:32;2741:60;;2797:1;2794;2787:12;2741:60;2820:5;2810:15;;;2484:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:658::-;3272:2;3324:21;;;3394:13;;3297:18;;;3416:22;;;3243:4;;3272:2;3495:15;;;;3469:2;3454:18;;;3243:4;3538:195;3552:6;3549:1;3546:13;3538:195;;;3617:13;;-1:-1:-1;;;;;3613:39:7;3601:52;;3708:15;;;;3673:12;;;;3649:1;3567:9;3538:195;;;-1:-1:-1;3750:3:7;;3101:658;-1:-1:-1;;;;;;3101:658:7:o;3764:380::-;3843:1;3839:12;;;;3886;;;3907:61;;3961:4;3953:6;3949:17;3939:27;;3907:61;4014:2;4006:6;4003:14;3983:18;3980:38;3977:161;;4060:10;4055:3;4051:20;4048:1;4041:31;4095:4;4092:1;4085:15;4123:4;4120:1;4113:15;3977:161;;3764:380;;;:::o;4500:127::-;4561:10;4556:3;4552:20;4549:1;4542:31;4592:4;4589:1;4582:15;4616:4;4613:1;4606:15;4632:127;4693:10;4688:3;4684:20;4681:1;4674:31;4724:4;4721:1;4714:15;4748:4;4745:1;4738:15;4764:135;4803:3;4824:17;;;4821:43;;4844:18;;:::i;:::-;-1:-1:-1;4891:1:7;4880:13;;4764:135::o;4904:127::-;4965:10;4960:3;4956:20;4953:1;4946:31;4996:4;4993:1;4986:15;5020:4;5017:1;5010:15;5386:125;5451:9;;;5472:10;;;5469:36;;;5485:18;;:::i
Swarm Source
ipfs://12e6d3b372020707374df09540e1a1c0820dac75523b3bfbb42be18c158a305b
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.