Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ParticlonUtilityToken
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * 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[EIP 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 signaling this. * * _Available since v3.1._ */ 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, an admin role * bearer except when using {AccessControl-_setupRole}. */ 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 `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @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: * * ``` * 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}: * * ``` * 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. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 override 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. */ function grantRole(bytes32 role, address account) public virtual override 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. */ function revokeRole(bytes32 role, address account) public virtual override 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 `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @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 Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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 `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` 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 * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/ParticlonUtilityToken.sol pragma solidity ^0.8.0; contract ParticlonUtilityToken is ERC20, ERC20Burnable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); constructor() ERC20("Particlon Utility Token", "PUT") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); _grantRole(BURNER_ROLE, msg.sender); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { require(totalSupply() + amount <= 15_000_000 * 10**18, "Capped (15M)"); _mint(to, amount); } function burn(address from, uint256 amount) public onlyRole(BURNER_ROLE) { _burn(from, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601781526020017f5061727469636c6f6e205574696c69747920546f6b656e0000000000000000008152506040518060400160405280600381526020016214155560ea1b81525081600390805190602001906200007c929190620001a7565b50805162000092906004906020840190620001a7565b50620000a49150600090503362000102565b620000d07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000102565b620000fc7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483362000102565b62000289565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620001a35760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001623390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b828054620001b5906200024d565b90600052602060002090601f016020900481019282620001d9576000855562000224565b82601f10620001f457805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022457825182559160200191906001019062000207565b506200023292915062000236565b5090565b5b8082111562000232576000815560010162000237565b600181811c908216806200026257607f821691505b6020821081036200028357634e487b7160e01b600052602260045260246000fd5b50919050565b61133880620002996000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806342966c68116100c3578063a217fddf1161007c578063a217fddf146102f6578063a457c2d7146102fe578063a9059cbb14610311578063d539139314610324578063d547741f1461034b578063dd62ed3e1461035e57600080fd5b806342966c681461027957806370a082311461028c57806379cc6790146102b557806391d14854146102c857806395d89b41146102db5780639dc29fac146102e357600080fd5b8063282c51f311610115578063282c51f3146101f55780632f2ff15d1461021c578063313ce5671461023157806336568abe14610240578063395093511461025357806340c10f191461026657600080fd5b806301ffc9a71461015d57806306fdde0314610185578063095ea7b31461019a57806318160ddd146101ad57806323b872dd146101bf578063248a9ca3146101d2575b600080fd5b61017061016b366004611017565b610397565b60405190151581526020015b60405180910390f35b61018d6103ce565b60405161017c919061106d565b6101706101a83660046110bc565b610460565b6002545b60405190815260200161017c565b6101706101cd3660046110e6565b610478565b6101b16101e0366004611122565b60009081526005602052604090206001015490565b6101b17f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61022f61022a36600461113b565b61049c565b005b6040516012815260200161017c565b61022f61024e36600461113b565b6104c7565b6101706102613660046110bc565b61054a565b61022f6102743660046110bc565b610589565b61022f610287366004611122565b61061b565b6101b161029a366004611167565b6001600160a01b031660009081526020819052604090205490565b61022f6102c33660046110bc565b610628565b6101706102d636600461113b565b61063d565b61018d610668565b61022f6102f13660046110bc565b610677565b6101b1600081565b61017061030c3660046110bc565b6106ac565b61017061031f3660046110bc565b61073e565b6101b17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61022f61035936600461113b565b61074c565b6101b161036c366004611182565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806103c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546103dd906111ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610409906111ac565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b60003361046e818585610772565b5060019392505050565b600033610486858285610896565b610491858585610928565b506001949350505050565b6000828152600560205260409020600101546104b88133610af6565b6104c28383610b5a565b505050565b6001600160a01b038116331461053c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105468282610be0565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061046e90829086906105849087906111fc565b610772565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105b48133610af6565b6a0c685fa11e01ec6f000000826105ca60025490565b6105d491906111fc565b11156106115760405162461bcd60e51b815260206004820152600c60248201526b436170706564202831354d2960a01b6044820152606401610533565b6104c28383610c47565b6106253382610d26565b50565b610633823383610896565b6105468282610d26565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546103dd906111ac565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486106a28133610af6565b6104c28383610d26565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156107315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610533565b6104918286868403610772565b60003361046e818585610928565b6000828152600560205260409020600101546107688133610af6565b6104c28383610be0565b6001600160a01b0383166107d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610533565b6001600160a01b0382166108355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610533565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461092257818110156109155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610533565b6109228484848403610772565b50505050565b6001600160a01b03831661098c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610533565b6001600160a01b0382166109ee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610533565b6001600160a01b03831660009081526020819052604090205481811015610a665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610533565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a9d9084906111fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae991815260200190565b60405180910390a3610922565b610b00828261063d565b61054657610b18816001600160a01b03166014610e74565b610b23836020610e74565b604051602001610b34929190611214565b60408051601f198184030181529082905262461bcd60e51b82526105339160040161106d565b610b64828261063d565b6105465760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b9c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610bea828261063d565b156105465760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610533565b8060026000828254610caf91906111fc565b90915550506001600160a01b03821660009081526020819052604081208054839290610cdc9084906111fc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d865760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610533565b6001600160a01b03821660009081526020819052604090205481811015610dfa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610533565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e29908490611289565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60606000610e838360026112a0565b610e8e9060026111fc565b67ffffffffffffffff811115610ea657610ea66112bf565b6040519080825280601f01601f191660200182016040528015610ed0576020820181803683370190505b509050600360fc1b81600081518110610eeb57610eeb6112d5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f1a57610f1a6112d5565b60200101906001600160f81b031916908160001a9053506000610f3e8460026112a0565b610f499060016111fc565b90505b6001811115610fc1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f7d57610f7d6112d5565b1a60f81b828281518110610f9357610f936112d5565b60200101906001600160f81b031916908160001a90535060049490941c93610fba816112eb565b9050610f4c565b5083156110105760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610533565b9392505050565b60006020828403121561102957600080fd5b81356001600160e01b03198116811461101057600080fd5b60005b8381101561105c578181015183820152602001611044565b838111156109225750506000910152565b602081526000825180602084015261108c816040850160208701611041565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146110b757600080fd5b919050565b600080604083850312156110cf57600080fd5b6110d8836110a0565b946020939093013593505050565b6000806000606084860312156110fb57600080fd5b611104846110a0565b9250611112602085016110a0565b9150604084013590509250925092565b60006020828403121561113457600080fd5b5035919050565b6000806040838503121561114e57600080fd5b8235915061115e602084016110a0565b90509250929050565b60006020828403121561117957600080fd5b611010826110a0565b6000806040838503121561119557600080fd5b61119e836110a0565b915061115e602084016110a0565b600181811c908216806111c057607f821691505b6020821081036111e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561120f5761120f6111e6565b500190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161124c816017850160208801611041565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161127d816028840160208801611041565b01602801949350505050565b60008282101561129b5761129b6111e6565b500390565b60008160001904831182151516156112ba576112ba6111e6565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816112fa576112fa6111e6565b50600019019056fea2646970667358221220ab79446361c77e59dce728a701338ff2cebdfab73811bd6eef123b1b5973db9964736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806342966c68116100c3578063a217fddf1161007c578063a217fddf146102f6578063a457c2d7146102fe578063a9059cbb14610311578063d539139314610324578063d547741f1461034b578063dd62ed3e1461035e57600080fd5b806342966c681461027957806370a082311461028c57806379cc6790146102b557806391d14854146102c857806395d89b41146102db5780639dc29fac146102e357600080fd5b8063282c51f311610115578063282c51f3146101f55780632f2ff15d1461021c578063313ce5671461023157806336568abe14610240578063395093511461025357806340c10f191461026657600080fd5b806301ffc9a71461015d57806306fdde0314610185578063095ea7b31461019a57806318160ddd146101ad57806323b872dd146101bf578063248a9ca3146101d2575b600080fd5b61017061016b366004611017565b610397565b60405190151581526020015b60405180910390f35b61018d6103ce565b60405161017c919061106d565b6101706101a83660046110bc565b610460565b6002545b60405190815260200161017c565b6101706101cd3660046110e6565b610478565b6101b16101e0366004611122565b60009081526005602052604090206001015490565b6101b17f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61022f61022a36600461113b565b61049c565b005b6040516012815260200161017c565b61022f61024e36600461113b565b6104c7565b6101706102613660046110bc565b61054a565b61022f6102743660046110bc565b610589565b61022f610287366004611122565b61061b565b6101b161029a366004611167565b6001600160a01b031660009081526020819052604090205490565b61022f6102c33660046110bc565b610628565b6101706102d636600461113b565b61063d565b61018d610668565b61022f6102f13660046110bc565b610677565b6101b1600081565b61017061030c3660046110bc565b6106ac565b61017061031f3660046110bc565b61073e565b6101b17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61022f61035936600461113b565b61074c565b6101b161036c366004611182565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806103c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546103dd906111ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610409906111ac565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b60003361046e818585610772565b5060019392505050565b600033610486858285610896565b610491858585610928565b506001949350505050565b6000828152600560205260409020600101546104b88133610af6565b6104c28383610b5a565b505050565b6001600160a01b038116331461053c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105468282610be0565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061046e90829086906105849087906111fc565b610772565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105b48133610af6565b6a0c685fa11e01ec6f000000826105ca60025490565b6105d491906111fc565b11156106115760405162461bcd60e51b815260206004820152600c60248201526b436170706564202831354d2960a01b6044820152606401610533565b6104c28383610c47565b6106253382610d26565b50565b610633823383610896565b6105468282610d26565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546103dd906111ac565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486106a28133610af6565b6104c28383610d26565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156107315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610533565b6104918286868403610772565b60003361046e818585610928565b6000828152600560205260409020600101546107688133610af6565b6104c28383610be0565b6001600160a01b0383166107d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610533565b6001600160a01b0382166108355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610533565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461092257818110156109155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610533565b6109228484848403610772565b50505050565b6001600160a01b03831661098c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610533565b6001600160a01b0382166109ee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610533565b6001600160a01b03831660009081526020819052604090205481811015610a665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610533565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a9d9084906111fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae991815260200190565b60405180910390a3610922565b610b00828261063d565b61054657610b18816001600160a01b03166014610e74565b610b23836020610e74565b604051602001610b34929190611214565b60408051601f198184030181529082905262461bcd60e51b82526105339160040161106d565b610b64828261063d565b6105465760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b9c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610bea828261063d565b156105465760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610533565b8060026000828254610caf91906111fc565b90915550506001600160a01b03821660009081526020819052604081208054839290610cdc9084906111fc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d865760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610533565b6001600160a01b03821660009081526020819052604090205481811015610dfa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610533565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e29908490611289565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60606000610e838360026112a0565b610e8e9060026111fc565b67ffffffffffffffff811115610ea657610ea66112bf565b6040519080825280601f01601f191660200182016040528015610ed0576020820181803683370190505b509050600360fc1b81600081518110610eeb57610eeb6112d5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f1a57610f1a6112d5565b60200101906001600160f81b031916908160001a9053506000610f3e8460026112a0565b610f499060016111fc565b90505b6001811115610fc1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f7d57610f7d6112d5565b1a60f81b828281518110610f9357610f936112d5565b60200101906001600160f81b031916908160001a90535060049490941c93610fba816112eb565b9050610f4c565b5083156110105760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610533565b9392505050565b60006020828403121561102957600080fd5b81356001600160e01b03198116811461101057600080fd5b60005b8381101561105c578181015183820152602001611044565b838111156109225750506000910152565b602081526000825180602084015261108c816040850160208701611041565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146110b757600080fd5b919050565b600080604083850312156110cf57600080fd5b6110d8836110a0565b946020939093013593505050565b6000806000606084860312156110fb57600080fd5b611104846110a0565b9250611112602085016110a0565b9150604084013590509250925092565b60006020828403121561113457600080fd5b5035919050565b6000806040838503121561114e57600080fd5b8235915061115e602084016110a0565b90509250929050565b60006020828403121561117957600080fd5b611010826110a0565b6000806040838503121561119557600080fd5b61119e836110a0565b915061115e602084016110a0565b600181811c908216806111c057607f821691505b6020821081036111e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561120f5761120f6111e6565b500190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161124c816017850160208801611041565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161127d816028840160208801611041565b01602801949350505050565b60008282101561129b5761129b6111e6565b500390565b60008160001904831182151516156112ba576112ba6111e6565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816112fa576112fa6111e6565b50600019019056fea2646970667358221220ab79446361c77e59dce728a701338ff2cebdfab73811bd6eef123b1b5973db9964736f6c634300080d0033
Deployed Bytecode Sourcemap
33415:742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10628:204;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;10628:204:0;;;;;;;;21373:100;;;:::i;:::-;;;;;;;:::i;23724:201::-;;;;;;:::i;:::-;;:::i;22493:108::-;22581:12;;22493:108;;;1731:25:1;;;1719:2;1704:18;22493:108:0;1585:177:1;24505:295:0;;;;;;:::i;:::-;;:::i;12055:131::-;;;;;;:::i;:::-;12129:7;12156:12;;;:6;:12;;;;;:22;;;;12055:131;33561:62;;33599:24;33561:62;;12448:147;;;;;;:::i;:::-;;:::i;:::-;;22335:93;;;22418:2;2868:36:1;;2856:2;2841:18;22335:93:0;2726:184:1;13496:218:0;;;;;;:::i;:::-;;:::i;25209:240::-;;;;;;:::i;:::-;;:::i;33847:188::-;;;;;;:::i;:::-;;:::i;32751:91::-;;;;;;:::i;:::-;;:::i;22664:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;22765:18:0;22738:7;22765:18;;;;;;;;;;;;22664:127;33161:164;;;;;;:::i;:::-;;:::i;10924:147::-;;;;;;:::i;:::-;;:::i;21592:104::-;;;:::i;34043:111::-;;;;;;:::i;:::-;;:::i;10015:49::-;;10060:4;10015:49;;25952:438;;;;;;:::i;:::-;;:::i;22997:193::-;;;;;;:::i;:::-;;:::i;33492:62::-;;33530:24;33492:62;;12840:149;;;;;;:::i;:::-;;:::i;23253:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23369:18:0;;;23342:7;23369:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23253:151;10628:204;10713:4;-1:-1:-1;;;;;;10737:47:0;;-1:-1:-1;;;10737:47:0;;:87;;-1:-1:-1;;;;;;;;;;1924:40:0;;;10788:36;10730:94;10628:204;-1:-1:-1;;10628:204:0:o;21373:100::-;21427:13;21460:5;21453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21373:100;:::o;23724:201::-;23807:4;7903:10;23863:32;7903:10;23879:7;23888:6;23863:8;:32::i;:::-;-1:-1:-1;23913:4:0;;23724:201;-1:-1:-1;;;23724:201:0:o;24505:295::-;24636:4;7903:10;24694:38;24710:4;7903:10;24725:6;24694:15;:38::i;:::-;24743:27;24753:4;24759:2;24763:6;24743:9;:27::i;:::-;-1:-1:-1;24788:4:0;;24505:295;-1:-1:-1;;;;24505:295:0:o;12448:147::-;12129:7;12156:12;;;:6;:12;;;;;:22;;;10506:30;10517:4;7903:10;10506;:30::i;:::-;12562:25:::1;12573:4;12579:7;12562:10;:25::i;:::-;12448:147:::0;;;:::o;13496:218::-;-1:-1:-1;;;;;13592:23:0;;7903:10;13592:23;13584:83;;;;-1:-1:-1;;;13584:83:0;;4143:2:1;13584:83:0;;;4125:21:1;4182:2;4162:18;;;4155:30;4221:34;4201:18;;;4194:62;-1:-1:-1;;;4272:18:1;;;4265:45;4327:19;;13584:83:0;;;;;;;;;13680:26;13692:4;13698:7;13680:11;:26::i;:::-;13496:218;;:::o;25209:240::-;7903:10;25297:4;25378:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;25378:27:0;;;;;;;;;;25297:4;;7903:10;25353:66;;7903:10;;25378:27;;:40;;25408:10;;25378:40;:::i;:::-;25353:8;:66::i;33847:188::-;33530:24;10506:30;33530:24;7903:10;10506;:30::i;:::-;33963:19:::1;33953:6;33937:13;22581:12:::0;;;22493:108;33937:13:::1;:22;;;;:::i;:::-;:45;;33929:70;;;::::0;-1:-1:-1;;;33929:70:0;;4824:2:1;33929:70:0::1;::::0;::::1;4806:21:1::0;4863:2;4843:18;;;4836:30;-1:-1:-1;;;4882:18:1;;;4875:42;4934:18;;33929:70:0::1;4622:336:1::0;33929:70:0::1;34010:17;34016:2;34020:6;34010:5;:17::i;32751:91::-:0;32807:27;7903:10;32827:6;32807:5;:27::i;:::-;32751:91;:::o;33161:164::-;33238:46;33254:7;7903:10;33277:6;33238:15;:46::i;:::-;33295:22;33301:7;33310:6;33295:5;:22::i;10924:147::-;11010:4;11034:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11034:29:0;;;;;;;;;;;;;;;10924:147::o;21592:104::-;21648:13;21681:7;21674:14;;;;;:::i;34043:111::-;33599:24;10506:30;33599:24;7903:10;10506;:30::i;:::-;34127:19:::1;34133:4;34139:6;34127:5;:19::i;25952:438::-:0;7903:10;26045:4;26128:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;26128:27:0;;;;;;;;;;26045:4;;7903:10;26174:35;;;;26166:85;;;;-1:-1:-1;;;26166:85:0;;5165:2:1;26166:85:0;;;5147:21:1;5204:2;5184:18;;;5177:30;5243:34;5223:18;;;5216:62;-1:-1:-1;;;5294:18:1;;;5287:35;5339:19;;26166:85:0;4963:401:1;26166:85:0;26287:60;26296:5;26303:7;26331:15;26312:16;:34;26287:8;:60::i;22997:193::-;23076:4;7903:10;23132:28;7903:10;23149:2;23153:6;23132:9;:28::i;12840:149::-;12129:7;12156:12;;;:6;:12;;;;;:22;;;10506:30;10517:4;7903:10;10506;:30::i;:::-;12955:26:::1;12967:4;12973:7;12955:11;:26::i;29588:380::-:0;-1:-1:-1;;;;;29724:19:0;;29716:68;;;;-1:-1:-1;;;29716:68:0;;5571:2:1;29716:68:0;;;5553:21:1;5610:2;5590:18;;;5583:30;5649:34;5629:18;;;5622:62;-1:-1:-1;;;5700:18:1;;;5693:34;5744:19;;29716:68:0;5369:400:1;29716:68:0;-1:-1:-1;;;;;29803:21:0;;29795:68;;;;-1:-1:-1;;;29795:68:0;;5976:2:1;29795:68:0;;;5958:21:1;6015:2;5995:18;;;5988:30;6054:34;6034:18;;;6027:62;-1:-1:-1;;;6105:18:1;;;6098:32;6147:19;;29795:68:0;5774:398:1;29795:68:0;-1:-1:-1;;;;;29876:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29928:32;;1731:25:1;;;29928:32:0;;1704:18:1;29928:32:0;;;;;;;29588:380;;;:::o;30255:453::-;-1:-1:-1;;;;;23369:18:0;;;30390:24;23369:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;30457:37:0;;30453:248;;30539:6;30519:16;:26;;30511:68;;;;-1:-1:-1;;;30511:68:0;;6379:2:1;30511:68:0;;;6361:21:1;6418:2;6398:18;;;6391:30;6457:31;6437:18;;;6430:59;6506:18;;30511:68:0;6177:353:1;30511:68:0;30623:51;30632:5;30639:7;30667:6;30648:16;:25;30623:8;:51::i;:::-;30379:329;30255:453;;;:::o;26869:671::-;-1:-1:-1;;;;;27000:18:0;;26992:68;;;;-1:-1:-1;;;26992:68:0;;6737:2:1;26992:68:0;;;6719:21:1;6776:2;6756:18;;;6749:30;6815:34;6795:18;;;6788:62;-1:-1:-1;;;6866:18:1;;;6859:35;6911:19;;26992:68:0;6535:401:1;26992:68:0;-1:-1:-1;;;;;27079:16:0;;27071:64;;;;-1:-1:-1;;;27071:64:0;;7143:2:1;27071:64:0;;;7125:21:1;7182:2;7162:18;;;7155:30;7221:34;7201:18;;;7194:62;-1:-1:-1;;;7272:18:1;;;7265:33;7315:19;;27071:64:0;6941:399:1;27071:64:0;-1:-1:-1;;;;;27221:15:0;;27199:19;27221:15;;;;;;;;;;;27255:21;;;;27247:72;;;;-1:-1:-1;;;27247:72:0;;7547:2:1;27247:72:0;;;7529:21:1;7586:2;7566:18;;;7559:30;7625:34;7605:18;;;7598:62;-1:-1:-1;;;7676:18:1;;;7669:36;7722:19;;27247:72:0;7345:402:1;27247:72:0;-1:-1:-1;;;;;27355:15:0;;;:9;:15;;;;;;;;;;;27373:20;;;27355:38;;27415:13;;;;;;;;:23;;27387:6;;27355:9;27415:23;;27387:6;;27415:23;:::i;:::-;;;;;;;;27471:2;-1:-1:-1;;;;;27456:26:0;27465:4;-1:-1:-1;;;;;27456:26:0;;27475:6;27456:26;;;;1731:25:1;;1719:2;1704:18;;1585:177;27456:26:0;;;;;;;;27495:37;12448:147;11361:505;11450:22;11458:4;11464:7;11450;:22::i;:::-;11445:414;;11638:41;11666:7;-1:-1:-1;;;;;11638:41:0;11676:2;11638:19;:41::i;:::-;11752:38;11780:4;11787:2;11752:19;:38::i;:::-;11543:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11543:270:0;;;;;;;;;;-1:-1:-1;;;11489:358:0;;;;;;;:::i;14997:238::-;15081:22;15089:4;15095:7;15081;:22::i;:::-;15076:152;;15120:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15120:29:0;;;;;;;;;:36;;-1:-1:-1;;15120:36:0;15152:4;15120:36;;;15203:12;7903:10;;7823:98;15203:12;-1:-1:-1;;;;;15176:40:0;15194:7;-1:-1:-1;;;;;15176:40:0;15188:4;15176:40;;;;;;;;;;14997:238;;:::o;15367:239::-;15451:22;15459:4;15465:7;15451;:22::i;:::-;15447:152;;;15522:5;15490:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15490:29:0;;;;;;;;;;:37;;-1:-1:-1;;15490:37:0;;;15547:40;7903:10;;15490:12;;15547:40;;15522:5;15547:40;15367:239;;:::o;27827:399::-;-1:-1:-1;;;;;27911:21:0;;27903:65;;;;-1:-1:-1;;;27903:65:0;;8745:2:1;27903:65:0;;;8727:21:1;8784:2;8764:18;;;8757:30;8823:33;8803:18;;;8796:61;8874:18;;27903:65:0;8543:355:1;27903:65:0;28059:6;28043:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;28076:18:0;;:9;:18;;;;;;;;;;:28;;28098:6;;28076:9;:28;;28098:6;;28076:28;:::i;:::-;;;;-1:-1:-1;;28120:37:0;;1731:25:1;;;-1:-1:-1;;;;;28120:37:0;;;28137:1;;28120:37;;1719:2:1;1704:18;28120:37:0;;;;;;;13496:218;;:::o;28559:591::-;-1:-1:-1;;;;;28643:21:0;;28635:67;;;;-1:-1:-1;;;28635:67:0;;9105:2:1;28635:67:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183:34;9163:18;;;9156:62;-1:-1:-1;;;9234:18:1;;;9227:31;9275:19;;28635:67:0;8903:397:1;28635:67:0;-1:-1:-1;;;;;28802:18:0;;28777:22;28802:18;;;;;;;;;;;28839:24;;;;28831:71;;;;-1:-1:-1;;;28831:71:0;;9507:2:1;28831:71:0;;;9489:21:1;9546:2;9526:18;;;9519:30;9585:34;9565:18;;;9558:62;-1:-1:-1;;;9636:18:1;;;9629:32;9678:19;;28831:71:0;9305:398:1;28831:71:0;-1:-1:-1;;;;;28938:18:0;;:9;:18;;;;;;;;;;28959:23;;;28938:44;;29004:12;:22;;28976:6;;28938:9;29004:22;;28976:6;;29004:22;:::i;:::-;;;;-1:-1:-1;;29044:37:0;;1731:25:1;;;29070:1:0;;-1:-1:-1;;;;;29044:37:0;;;;;1719:2:1;1704:18;29044:37:0;;;;;;;12448:147;;;:::o;3645:451::-;3720:13;3746:19;3778:10;3782:6;3778:1;:10;:::i;:::-;:14;;3791:1;3778:14;:::i;:::-;3768:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3768:25:0;;3746:47;;-1:-1:-1;;;3804:6:0;3811:1;3804:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3804:15:0;;;;;;;;;-1:-1:-1;;;3830:6:0;3837:1;3830:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3830:15:0;;;;;;;;-1:-1:-1;3861:9:0;3873:10;3877:6;3873:1;:10;:::i;:::-;:14;;3886:1;3873:14;:::i;:::-;3861:26;;3856:135;3893:1;3889;:5;3856:135;;;-1:-1:-1;;;3941:5:0;3949:3;3941:11;3928:25;;;;;;;:::i;:::-;;;;3916:6;3923:1;3916:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;3916:37:0;;;;;;;;-1:-1:-1;3978:1:0;3968:11;;;;;3896:3;;;:::i;:::-;;;3856:135;;;-1:-1:-1;4009:10:0;;4001:55;;;;-1:-1:-1;;;4001:55:0;;10618:2:1;4001:55:0;;;10600:21:1;;;10637:18;;;10630:30;10696:34;10676:18;;;10669:62;10748:18;;4001:55:0;10416:356:1;4001:55:0;4081:6;3645:451;-1:-1:-1;;;3645:451:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:258;569:1;579:113;593:6;590:1;587:13;579:113;;;669:11;;;663:18;650:11;;;643:39;615:2;608:10;579:113;;;710:6;707:1;704:13;701:48;;;-1:-1:-1;;745:1:1;727:16;;720:27;497:258::o;760:383::-;909:2;898:9;891:21;872:4;941:6;935:13;984:6;979:2;968:9;964:18;957:34;1000:66;1059:6;1054:2;1043:9;1039:18;1034:2;1026:6;1022:15;1000:66;:::i;:::-;1127:2;1106:15;-1:-1:-1;;1102:29:1;1087:45;;;;1134:2;1083:54;;760:383;-1:-1:-1;;760:383:1:o;1148:173::-;1216:20;;-1:-1:-1;;;;;1265:31:1;;1255:42;;1245:70;;1311:1;1308;1301:12;1245:70;1148:173;;;:::o;1326:254::-;1394:6;1402;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:29;1513:9;1494:29;:::i;:::-;1484:39;1570:2;1555:18;;;;1542:32;;-1:-1:-1;;;1326:254:1:o;1767:328::-;1844:6;1852;1860;1913:2;1901:9;1892:7;1888:23;1884:32;1881:52;;;1929:1;1926;1919:12;1881:52;1952:29;1971:9;1952:29;:::i;:::-;1942:39;;2000:38;2034:2;2023:9;2019:18;2000:38;:::i;:::-;1990:48;;2085:2;2074:9;2070:18;2057:32;2047:42;;1767:328;;;;;:::o;2100:180::-;2159:6;2212:2;2200:9;2191:7;2187:23;2183:32;2180:52;;;2228:1;2225;2218:12;2180:52;-1:-1:-1;2251:23:1;;2100:180;-1:-1:-1;2100:180:1:o;2467:254::-;2535:6;2543;2596:2;2584:9;2575:7;2571:23;2567:32;2564:52;;;2612:1;2609;2602:12;2564:52;2648:9;2635:23;2625:33;;2677:38;2711:2;2700:9;2696:18;2677:38;:::i;:::-;2667:48;;2467:254;;;;;:::o;3100:186::-;3159:6;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3251:29;3270:9;3251:29;:::i;3291:260::-;3359:6;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;:::-;3449:39;;3507:38;3541:2;3530:9;3526:18;3507:38;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;4357:127::-;4418:10;4413:3;4409:20;4406:1;4399:31;4449:4;4446:1;4439:15;4473:4;4470:1;4463:15;4489:128;4529:3;4560:1;4556:6;4553:1;4550:13;4547:39;;;4566:18;;:::i;:::-;-1:-1:-1;4602:9:1;;4489:128::o;7752:786::-;8163:25;8158:3;8151:38;8133:3;8218:6;8212:13;8234:62;8289:6;8284:2;8279:3;8275:12;8268:4;8260:6;8256:17;8234:62;:::i;:::-;-1:-1:-1;;;8355:2:1;8315:16;;;8347:11;;;8340:40;8405:13;;8427:63;8405:13;8476:2;8468:11;;8461:4;8449:17;;8427:63;:::i;:::-;8510:17;8529:2;8506:26;;7752:786;-1:-1:-1;;;;7752:786:1:o;9708:125::-;9748:4;9776:1;9773;9770:8;9767:34;;;9781:18;;:::i;:::-;-1:-1:-1;9818:9:1;;9708:125::o;9838:168::-;9878:7;9944:1;9940;9936:6;9932:14;9929:1;9926:21;9921:1;9914:9;9907:17;9903:45;9900:71;;;9951:18;;:::i;:::-;-1:-1:-1;9991:9:1;;9838:168::o;10011:127::-;10072:10;10067:3;10063:20;10060:1;10053:31;10103:4;10100:1;10093:15;10127:4;10124:1;10117:15;10143:127;10204:10;10199:3;10195:20;10192:1;10185:31;10235:4;10232:1;10225:15;10259:4;10256:1;10249:15;10275:136;10314:3;10342:5;10332:39;;10351:18;;:::i;:::-;-1:-1:-1;;;10387:18:1;;10275:136::o
Swarm Source
ipfs://ab79446361c77e59dce728a701338ff2cebdfab73811bd6eef123b1b5973db99
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 33 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.