Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 20 from a total of 20 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 20048588 | 128 days ago | IN | 0 ETH | 0.00000412 | ||||
| Transfer | 19474194 | 137 days ago | IN | 0 ETH | 0.00000412 | ||||
| Transfer | 19172977 | 142 days ago | IN | 0 ETH | 0.00000513 | ||||
| Transfer | 17691262 | 161 days ago | IN | 0 ETH | 0.00000512 | ||||
| Transfer | 16541670 | 175 days ago | IN | 0 ETH | 0.00000412 | ||||
| Transfer | 16286619 | 178 days ago | IN | 0 ETH | 0.00000513 | ||||
| Transfer | 14024630 | 205 days ago | IN | 0 ETH | 0.00000411 | ||||
| Transfer | 13721563 | 208 days ago | IN | 0 ETH | 0.00000411 | ||||
| Transfer | 13185237 | 215 days ago | IN | 0 ETH | 0.00000408 | ||||
| Transfer | 13018164 | 217 days ago | IN | 0 ETH | 0.00000408 | ||||
| Transfer | 12360759 | 225 days ago | IN | 0 ETH | 0.00000395 | ||||
| Transfer | 12359098 | 225 days ago | IN | 0 ETH | 0.00000395 | ||||
| Transfer | 11375261 | 237 days ago | IN | 0 ETH | 0.00000517 | ||||
| Transfer | 11353105 | 237 days ago | IN | 0 ETH | 0.00000498 | ||||
| Transfer | 11285341 | 238 days ago | IN | 0 ETH | 0.00000396 | ||||
| Transfer | 11105292 | 240 days ago | IN | 0 ETH | 0.00000508 | ||||
| Transfer | 10946905 | 242 days ago | IN | 0 ETH | 0.00000505 | ||||
| Transfer | 9683533 | 257 days ago | IN | 0 ETH | 0.00000395 | ||||
| Transfer | 9681932 | 257 days ago | IN | 0 ETH | 0.00000504 | ||||
| Grant Role | 8440234 | 271 days ago | IN | 0 ETH | 0.0000055 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 8437770 | 271 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ExShowdown
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.28; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; /// @custom:security-contact [email protected] contract ExShowdown is ERC20, ERC20Burnable, ERC20Pausable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor() ERC20(_getName(), _getSymbol()) { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); } function pause() external onlyRole(PAUSER_ROLE) { _pause(); } function unpause() external onlyRole(PAUSER_ROLE) { _unpause(); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function _getName() pure internal virtual returns(string memory) { return "ExShowdown"; } function _getSymbol() pure internal virtual returns(string memory) { return "EXSHOWDOWN"; } // The following functions are overrides required by Solidity. function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Pausable) { super._update(from, to, value); } }
// 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.3.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Pausable.sol)
pragma solidity ^0.8.20;
import {ERC20} from "../ERC20.sol";
import {Pausable} from "../../../utils/Pausable.sol";
/**
* @dev ERC-20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*
* IMPORTANT: This contract does not include public pause and unpause functions. In
* addition to inheriting this contract, you must define both functions, invoking the
* {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
* access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
* make the contract pause mechanism of the contract unreachable, and thus unusable.
*/
abstract contract ERC20Pausable is ERC20, Pausable {
/**
* @dev See {ERC20-_update}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _update(address from, address to, uint256 value) internal virtual override whenNotPaused {
super._update(from, to, value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";
/**
* @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);
}
}// 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;
}
}// 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.1.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted to signal this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// 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.1.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"mode": "3",
"fallback_to_optimizing_for_size": true
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"abi"
]
}
},
"detectMissingLibraries": false,
"forceEVMLA": false,
"enableEraVMExtensions": false,
"codegen": "yul",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001c79a2d26df0b3a93cb18cca161ac3b8562fe06ce17f55d873cfc7c57c600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00030000000000020000008003000039000000400030043f0000000100200190000000280000c13d00000060021002700000017602200197000000040020008c000003f80000413d000000000301043b000000e003300270000001870030009c0000005b0000213d000001970030009c0000007b0000213d0000019f0030009c000001180000213d000001a30030009c000002230000613d000001a40030009c0000016b0000613d000001a50030009c000003f80000c13d000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b000300000002001d0000017f0020009c000003f80000213d0000002401100370000000000301043b0000000002000411000000000002004b000002fb0000c13d000001ba010000410000032a0000013d0000000001000416000000000001004b000003f80000c13d0000000a01000039000000800010043f0000017702000041000000a00020043f0000010002000039000000400020043f000000c00010043f0000017801000041000000e00010043f0000000301000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000000550000c13d000000200020008c000000480000413d00000179030000410000001f0220003900000005022002700000017a0220009a000000000003041b0000000103300039000000000023004b000000440000413d0000017b02000041000000000021041b0000000401000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000940000613d000001b201000041000000000010043f0000002201000039000000040010043f000001b301000041000005d600010430000001880030009c000001090000213d000001900030009c000001270000213d000001940030009c000002340000613d000001950030009c000001830000613d000001960030009c000003f80000c13d000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b0000017f0020009c000003f80000213d00000000040200190000002401100370000000000301043b000200000003001d00000000020004110000000001040019000300000004001d05d404270000040f0000000301000029000000020200002905d405620000040f0000000001000019000005d50001042e000001980030009c0000014d0000213d0000019c0030009c0000023f0000613d0000019d0030009c000001910000613d0000019e0030009c000003f80000c13d000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000002402100370000000000302043b0000017f0030009c000003f80000213d0000000002000411000000000023004b000002ff0000c13d0000000401100370000000000101043b05d405110000040f0000000001000019000005d50001042e000000200020008c0000009e0000413d0000017c030000410000001f0220003900000005022002700000017d0220009a000000000003041b0000000103300039000000000023004b0000009a0000413d0000017e02000041000000000021041b00000000010004110000017f01100197000300000001001d000000000010043f0000018001000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000000d30000c13d0000000301000029000000000010043f0000018001000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000201041a000001be0220019700000001022001bf000000000021041b0000000001000414000001760010009c0000017601008041000000c00110021000000182011001c70000800d020000390000000403000039000001830400004100000000050000190000000306000029000000000700041105d405ca0000040f0000000100200190000003f80000613d0000000301000029000000000010043f0000018401000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000001040000c13d0000000301000029000000000010043f0000018401000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000201041a000001be0220019700000001022001bf000000000021041b0000000001000414000001760010009c0000017601008041000000c00110021000000182011001c70000800d020000390000000403000039000001830400004100000185050000410000000306000029000000000700041105d405ca0000040f0000000100200190000003f80000613d0000002001000039000001000010044300000120000004430000018601000041000005d50001042e000001890030009c0000015e0000213d0000018d0030009c000002830000613d0000018e0030009c000001980000613d0000018f0030009c000003f80000c13d0000000001000416000000000001004b000003f80000c13d000001a701000041000000800010043f000001a601000041000005d50001042e000001a00030009c000002890000613d000001a10030009c000001a50000613d000001a20030009c000003f80000c13d000000240020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000401100370000000000101043b05d404150000040f000001c10000013d000001910030009c000002910000613d000001920030009c000001c80000613d000001930030009c000003f80000c13d0000000001000416000000000001004b000003f80000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000550000c13d000000800010043f000000000005004b0000017d0000613d000000000030043f000000020020008c000002f10000413d0000017c0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001440000413d0000030d0000013d000001990030009c000002bd0000613d0000019a0030009c000001e10000613d0000019b0030009c000003f80000c13d000000240020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000401100370000000000201043b000000000100041105d405620000040f0000000001000019000005d50001042e0000018a0030009c000002da0000613d0000018b0030009c000002080000613d0000018c0030009c000003f80000c13d0000000001000416000000000001004b000003f80000c13d0000018501000041000000800010043f000001a601000041000005d50001042e0000000001000416000000000001004b000003f80000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000550000c13d000000800010043f000000000005004b000002ee0000c13d000001be01200197000000a00010043f000000000004004b000000c001000039000000a0010060390000030e0000013d000000240020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000401100370000000000101043b0000017f0010009c000003f80000213d000000000010043f000000200000043f00000040020000390000000001000019000002210000013d0000000001000416000000000001004b000003f80000c13d0000001201000039000000800010043f000001a601000041000005d50001042e000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b0000017f0020009c000003f80000213d0000002401100370000000000301043b0000000001000411000001bf0000013d000000640020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b0000017f0020009c000003f80000213d00000000030200190000002402100370000000000202043b000300000002001d0000017f0020009c000003f80000213d0000004401100370000000000401043b000200000004001d00000000020004110000000001030019000100000003001d000000000304001905d404270000040f00000001010000290000000302000029000000020300002905d404820000040f0000000101000039000000400200043d0000000000120435000001760020009c00000176020080410000004001200210000001a8011001c7000005d50001042e000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000002402100370000000000202043b000300000002001d0000017f0020009c000003f80000213d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f0000004002000039000000000100001905d405b50000040f0000000302000029000000000020043f000000200010043f0000000001000019000000400200003905d405b50000040f000002380000013d000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b000300000002001d0000017f0020009c000003f80000213d0000002401100370000000000101043b000200000001001d00000000010004110000017f01100197000000000010043f000001ae01000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000003270000c13d000001ac01000041000000000010043f0000000001000411000000040010043f000001a701000041000000240010043f000001ad01000041000005d600010430000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b0000017f0020009c000003f80000213d0000002401100370000000000101043b000300000001001d0000017f0010009c000003f80000213d000000000020043f0000000101000039000000200010043f0000004002000039000000000100001905d405b50000040f0000000302000029000000000020043f000000200010043f0000000001000019000000400200003905d405b50000040f0000028d0000013d000000240020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000401100370000000000101043b000001bb00100198000003f80000c13d000001bc0010009c00000000020000390000000102006039000001bd0010009c00000001022061bf000000800020043f000001a601000041000005d50001042e0000000001000416000000000001004b000003f80000c13d0000000501000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000001a601000041000005d50001042e000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000000402100370000000000202043b000300000002001d0000002401100370000000000101043b000200000001001d0000017f0010009c000003f80000213d0000000301000029000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b0000000101100039000000000101041a000100000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b00000000020004110000017f02200197000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000003ad0000c13d000001ac01000041000000000010043f0000000001000411000000040010043f0000000101000029000000240010043f000001ad01000041000005d6000104300000000001000416000000000001004b000003f80000c13d000000800000043f000001a601000041000005d50001042e0000000001000416000000000001004b000003f80000c13d0000000201000039000000000101041a000000800010043f000001a601000041000005d50001042e0000000001000416000000000001004b000003f80000c13d00000000010004110000017f01100197000000000010043f0000018401000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000002d20000613d0000000501000039000000000201041a000000ff00200190000003a90000c13d000001be0220019700000001022001bf000000000021041b000000400100043d00000000020004110000000000210435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000103000039000001ab040000410000033f0000013d0000000001000416000000000001004b000003f80000c13d00000000010004110000017f01100197000000000010043f0000018401000041000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000002f30000c13d000001ac01000041000000000010043f0000000001000411000000040010043f0000018501000041000000240010043f000001ad01000041000005d600010430000000440020008c000003f80000413d0000000002000416000000000002004b000003f80000c13d0000002402100370000000000202043b000300000002001d0000017f0020009c000003f80000213d0000000401100370000000000101043b000200000001001d05d404150000040f05d404e60000040f0000000201000029000000030200002905d405110000040f0000000001000019000005d50001042e000000000030043f000000020020008c000003030000813d0000002001000039000003180000013d0000000501000039000000000201041a000000ff002001900000032e0000c13d000001b601000041000000000010043f000001b001000041000005d600010430000000030000006b000003440000c13d000001b9010000410000032a0000013d000001b701000041000000000010043f000001b001000041000005d600010430000001790200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003050000413d000000c001300039000000610110008a000001bf01100197000001a90010009c000003180000a13d000001b201000041000000000010043f0000004101000039000000040010043f000001b301000041000005d6000104300000008001100039000300000001001d000000400010043f000000800200003905d404000000040f00000003020000290000000001210049000001760010009c00000176010080410000006001100210000001760020009c00000176020080410000004002200210000000000121019f000005d50001042e000000030000006b0000037c0000c13d000001b401000041000000000010043f000000040000043f000001b301000041000005d600010430000001be02200197000000000021041b000000400100043d00000000020004110000000000210435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000103000039000001b50400004105d405ca0000040f0000000100200190000003f80000613d0000000001000019000005d50001042e000200000003001d000000000020043f0000000101000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000303000039000001b8040000410000000005000411000000030600002905d405ca0000040f0000000100200190000003f80000613d000000400100043d00000001020000390000000000210435000001760010009c00000176010080410000004001100210000001a8011001c7000005d50001042e0000000501000039000000000101041a000000ff00100190000003a90000c13d0000000201000039000000000201041a0000000203000029000000000032001a000003fa0000413d0000000002320019000000000021041b0000000301000029000000000010043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000303000039000001b104000041000000000500001900000003060000290000033f0000013d000001af01000041000000000010043f000001b001000041000005d6000104300000000301000029000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000101041a000000ff00100190000003420000c13d0000000301000029000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000003f80000613d000000000101043b000000000201041a000001be0220019700000001022001bf000000000021041b0000000001000414000001760010009c0000017601008041000000c00110021000000182011001c70000800d020000390000000403000039000001830400004100000003050000290000000206000029000000000700041105d405ca0000040f0000000100200190000003420000c13d0000000001000019000005d600010430000001b201000041000000000010043f0000001101000039000000040010043f000001b301000041000005d60001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000040f0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000004080000413d000000000321001900000000000304350000001f02200039000001bf022001970000000001210019000000000001042d000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004250000613d000000000101043b0000000101100039000000000101041a000000000001042d0000000001000019000005d6000104300003000000000002000200000003001d000300000002001d0000017f01100197000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004710000613d000000000101043b00000003020000290000017f02200197000300000002001d000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004710000613d000000000101043b000000000101041a000001c20010009c000004700000613d0000000203000029000000000431004b000004730000413d0000000102000029000000000002004b0000047b0000613d000200000004001d000000030000006b0000047d0000613d000000000020043f0000000101000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004710000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004710000613d000000000101043b0000000202000029000000000021041b000000000001042d0000000001000019000005d600010430000001c002000041000000000020043f0000000302000029000000040020043f000000240010043f000000440030043f000001c101000041000005d600010430000001ba010000410000047e0000013d000001b901000041000000000010043f000000040000043f000001b301000041000005d6000104300004000000000002000400000003001d0000017f03100198000004d20000613d0002017f0020019c000004d40000613d0000000501000039000000000101041a000000ff00100190000004d90000c13d000300000003001d000000000030043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004d00000613d000000000101043b000000000101041a0001000400100074000004dd0000413d0000000301000029000000000010043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004d00000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000004d00000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000303000039000001b1040000410000000305000029000000020600002905d405ca0000040f0000000100200190000004d00000613d000000000001042d0000000001000019000005d600010430000001c401000041000004d50000013d000001b401000041000000000010043f000000040000043f000001b301000041000005d600010430000001af01000041000000000010043f000001b001000041000005d600010430000001c302000041000000000020043f0000000302000029000000040020043f000000240010043f0000000401000029000000440010043f000001c101000041000005d6000104300001000000000002000100000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005070000613d000000000101043b00000000020004110000017f02200197000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005070000613d000000000101043b000000000101041a000000ff00100190000005090000613d000000000001042d0000000001000019000005d600010430000001ac01000041000000000010043f0000000001000411000000040010043f0000000101000029000000240010043f000001ad01000041000005d6000104300002000000000002000100000002001d000200000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005600000613d000000000101043b00000001020000290000017f02200197000100000002001d000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005600000613d000000000101043b000000000101041a000000ff001001900000055f0000613d0000000201000029000000000010043f0000000601000039000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005600000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005600000613d000000000101043b000000000201041a000001be02200197000000000021041b0000000001000414000001760010009c0000017601008041000000c00110021000000182011001c70000800d0200003900000004030000390000000007000411000001c5040000410000000205000029000000010600002905d405ca0000040f0000000100200190000005600000613d000000000001042d0000000001000019000005d6000104300003000000000002000300000002001d0000017f03100198000005a40000613d0000000501000039000000000101041a000000ff00100190000005a90000c13d000000000030043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c70000801002000039000200000003001d05d405cf0000040f0000000100200190000005a20000613d0000000203000029000000000101043b000000000101041a0001000300100074000005ad0000413d000000000030043f000000200000043f0000000001000414000001760010009c0000017601008041000000c00110021000000181011001c7000080100200003905d405cf0000040f0000000100200190000005a20000613d000000000101043b0000000102000029000000000021041b0000000201000039000000000201041a00000003030000290000000002320049000000000021041b000000400100043d0000000000310435000001760010009c000001760100804100000040011002100000000002000414000001760020009c0000017602008041000000c002200210000000000112019f000001aa011001c70000800d020000390000000303000039000001b1040000410000000205000029000000000600001905d405ca0000040f0000000100200190000005a20000613d000000000001042d0000000001000019000005d600010430000001c401000041000000000010043f000000040000043f000001b301000041000005d600010430000001af01000041000000000010043f000001b001000041000005d600010430000001c302000041000000000020043f000000040030043f000000240010043f0000000301000029000000440010043f000001c101000041000005d600010430000001760010009c00000176010080410000004001100210000001760020009c00000176020080410000006002200210000000000112019f0000000002000414000001760020009c0000017602008041000000c002200210000000000112019f00000182011001c7000080100200003905d405cf0000040f0000000100200190000005c80000613d000000000101043b000000000001042d0000000001000019000005d600010430000005cd002104210000000102000039000000000001042d0000000002000019000000000001042d000005d2002104230000000102000039000000000001042d0000000002000019000000000001042d000005d400000432000005d50001042e000005d600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff457853686f77646f776e00000000000000000000000000000000000000000000455853484f57444f574e00000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5457853686f77646f776e000000000000000000000000000000000000000000148a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e65455853484f57444f574e00000000000000000000000000000000000000000014000000000000000000000000ffffffffffffffffffffffffffffffffffffffff54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0de09f975e15f8f53f24cbbc282b13c40b84df485fcdb8d3997fa103dc5a4ef84165d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000005c975aba00000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e63ab1e900000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000d5391393000000000000000000000000000000000000000000000000000000008456cb58000000000000000000000000000000000000000000000000000000008456cb590000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000003f4ba839000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000008000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a60000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f020000000000000000000000000000000000002000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258e2517d3f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000003195c024b2ddd6d9b8f6c836aa52f67fe69376c8903d009b80229b3ce4425f51d93c0665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ec442f05000000000000000000000000000000000000000000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa8dfc202b000000000000000000000000000000000000000000000000000000006697b232000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d6200000000000000000000000000000000000000000000000000000000e602df050000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0fb8f41b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171bbc6b148c78b96830417d2db9e2a4ced2ef0eaba9533e12eb1d5969eb8e3f59f1
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.