Feature Tip: Add private address tag to any address under My Name Tag !
ZARP Stablecoin token contract has migrated to a new address.
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 199 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Burn | 20182949 | 213 days ago | IN | 0 ETH | 0.00027135 | ||||
Burn | 20182910 | 213 days ago | IN | 0 ETH | 0.0002238 | ||||
Transfer | 20182731 | 213 days ago | IN | 0 ETH | 0.00018827 | ||||
Transfer | 19419057 | 320 days ago | IN | 0 ETH | 0.00176902 | ||||
Transfer | 19418007 | 320 days ago | IN | 0 ETH | 0.00253617 | ||||
Transfer | 18640314 | 429 days ago | IN | 0 ETH | 0.00093727 | ||||
Transfer | 18640294 | 429 days ago | IN | 0 ETH | 0.00105332 | ||||
Transfer | 18620073 | 432 days ago | IN | 0 ETH | 0.00090834 | ||||
Transfer | 18620070 | 432 days ago | IN | 0 ETH | 0.00102148 | ||||
Transfer | 18483298 | 451 days ago | IN | 0 ETH | 0.0006726 | ||||
Transfer | 18483117 | 451 days ago | IN | 0 ETH | 0.00118509 | ||||
Transfer | 18483041 | 451 days ago | IN | 0 ETH | 0.00074761 | ||||
Transfer | 17394029 | 604 days ago | IN | 0 ETH | 0.00126573 | ||||
Transfer | 17394029 | 604 days ago | IN | 0 ETH | 0.00126617 | ||||
Burn | 17320947 | 614 days ago | IN | 0 ETH | 0.00176722 | ||||
Transfer | 17320926 | 614 days ago | IN | 0 ETH | 0.00106958 | ||||
Transfer | 17320921 | 614 days ago | IN | 0 ETH | 0.00147835 | ||||
Transfer | 17264113 | 622 days ago | IN | 0 ETH | 0.00153886 | ||||
Transfer | 17244616 | 625 days ago | IN | 0 ETH | 0.00451284 | ||||
Transfer | 17244531 | 625 days ago | IN | 0 ETH | 0.00242798 | ||||
Transfer | 17244526 | 625 days ago | IN | 0 ETH | 0.00242798 | ||||
Transfer | 17242323 | 625 days ago | IN | 0 ETH | 0.00296428 | ||||
Transfer | 17242271 | 625 days ago | IN | 0 ETH | 0.0031132 | ||||
Transfer | 17236134 | 626 days ago | IN | 0 ETH | 0.00319403 | ||||
Transfer | 17235952 | 626 days ago | IN | 0 ETH | 0.00326628 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ZARP
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-11 */ // Dependency file: @openzeppelin/contracts/access/IAccessControl.sol // SPDX-License-Identifier: MIT // 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; } // Dependency file: @openzeppelin/contracts/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; } } // Dependency file: @openzeppelin/contracts/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); } } // Dependency file: @openzeppelin/contracts/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); } // Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @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; } } // Dependency file: @openzeppelin/contracts/access/AccessControl.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/access/IAccessControl.sol"; // import "@openzeppelin/contracts/utils/Context.sol"; // import "@openzeppelin/contracts/utils/Strings.sol"; // import "@openzeppelin/contracts/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: * * ``` * 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 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 { 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 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 granted `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}. * ==== */ 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); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // Dependency file: @openzeppelin/contracts/security/Pausable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/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 { /** * @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); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @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()); } } // Dependency file: @openzeppelin/contracts/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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); } // Dependency file: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @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); } // Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; // import "@openzeppelin/contracts/utils/Context.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}. * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} } // Dependency file: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import "@openzeppelin/contracts/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 `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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // Root file: contracts/zarp.sol pragma solidity ^0.8.7; // import "@openzeppelin/contracts/access/AccessControl.sol"; // import "@openzeppelin/contracts/security/Pausable.sol"; // import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract ZARP is ERC20, ERC20Burnable, AccessControl, Pausable { mapping(address => bool) private _verified; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant VERIFIER_ROLE = keccak256("VERIFIER_ROLE"); event AddressVerificationChanged(address indexed account, address indexed sender, bool verificationStatus); constructor() ERC20("ZARP Stablecoin", "ZARP") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function verify(address account) public whenNotPaused onlyRole(VERIFIER_ROLE) { _verified[account] = true; emit AddressVerificationChanged(account, _msgSender(), true); } function removeVerification(address account) public whenNotPaused onlyRole(VERIFIER_ROLE) { _verified[account] = false; emit AddressVerificationChanged(account, _msgSender(), false); } function isVerified(address account) public view virtual returns (bool) { return _verified[account]; } function mint(address account, uint256 amount) public onlyRole(MINTER_ROLE) { require(_verified[account], "Account needs to be verified to accept minting"); _mint(account, amount); } function burn(uint256 amount) public override onlyRole(BURNER_ROLE) { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyRole(BURNER_ROLE) { super.burnFrom(account, amount); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if (hasRole(BURNER_ROLE, recipient)) { require(_verified[_msgSender()], "Sender Account needs to be verified to allow transfer to burn account"); } _transfer(_msgSender(), recipient, amount); return true; } function pause() public onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override whenNotPaused { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bool","name":"verificationStatus","type":"bool"}],"name":"AddressVerificationChanged","type":"event"},{"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":"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":[],"name":"VERIFIER_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":"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":"account","type":"address"}],"name":"isVerified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"address","name":"account","type":"address"}],"name":"removeVerification","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"verify","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600f81526e2d20a9281029ba30b13632b1b7b4b760891b60208083019182528351808501909452600484526305a4152560e41b90840152815191929162000065916003916200014f565b5080516200007b9060049060208401906200014f565b50506006805460ff1916905550620000956000336200009b565b62000232565b620000a78282620000ab565b5050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620000a75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200010b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b61187d80620002426000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806363a9c3d711610104578063a457c2d7116100a2578063d547741f11610071578063d547741f14610402578063dd62ed3e14610415578063e7705db61461044e578063f7d139cb1461047557600080fd5b8063a457c2d714610389578063a9059cbb1461039c578063b9209e33146103af578063d5391393146103db57600080fd5b80638456cb59116100de5780638456cb591461035e57806391d148541461036657806395d89b4114610379578063a217fddf1461038157600080fd5b806363a9c3d71461030f57806370a082311461032257806379cc67901461034b57600080fd5b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a146102d657806340c10f19146102de57806342966c68146102f15780635c975abb1461030457600080fd5b80632f2ff15d1461028c578063313ce567146102a157806336568abe146102b057806339509351146102c357600080fd5b806318160ddd116101b857806318160ddd1461022f57806323b872dd14610241578063248a9ca314610254578063282c51f31461027757600080fd5b806301ffc9a7146101df57806306fdde0314610207578063095ea7b31461021c575b600080fd5b6101f26101ed36600461161d565b610488565b60405190151581526020015b60405180910390f35b61020f6104bf565b6040516101fe91906116bc565b6101f261022a3660046115b7565b610551565b6002545b6040519081526020016101fe565b6101f261024f36600461157b565b610567565b6102336102623660046115e1565b60009081526005602052604090206001015490565b61023360008051602061182883398151915281565b61029f61029a3660046115fa565b610616565b005b604051601281526020016101fe565b61029f6102be3660046115fa565b610641565b6101f26102d13660046115b7565b6106bf565b61029f6106fb565b61029f6102ec3660046115b7565b610712565b61029f6102ff3660046115e1565b6107c6565b60065460ff166101f2565b61029f61031d36600461152d565b6107e8565b61023361033036600461152d565b6001600160a01b031660009081526020819052604090205490565b61029f6103593660046115b7565b6108b3565b61029f6108d6565b6101f26103743660046115fa565b6108ea565b61020f610915565b610233600081565b6101f26103973660046115b7565b610924565b6101f26103aa3660046115b7565b6109bd565b6101f26103bd36600461152d565b6001600160a01b031660009081526007602052604090205460ff1690565b6102337f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61029f6104103660046115fa565b610a7a565b610233610423366004611548565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102337f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea0981565b61029f61048336600461152d565b610aa0565b60006001600160e01b03198216637965db0b60e01b14806104b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104ce906117aa565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa906117aa565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b600061055e338484610b40565b50600192915050565b6000610574848484610c64565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61060b8533858403610b40565b506001949350505050565b6000828152600560205260409020600101546106328133610e3f565b61063c8383610ea3565b505050565b6001600160a01b03811633146106b15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105f5565b6106bb8282610f29565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161055e9185906106f6908690611719565b610b40565b60006107078133610e3f565b61070f610f90565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661073d8133610e3f565b6001600160a01b03831660009081526007602052604090205460ff166107bc5760405162461bcd60e51b815260206004820152602e60248201527f4163636f756e74206e6565647320746f20626520766572696669656420746f2060448201526d616363657074206d696e74696e6760901b60648201526084016105f5565b61063c8383611023565b6000805160206118288339815191526107df8133610e3f565b6106bb8261110e565b60065460ff161561080b5760405162461bcd60e51b81526004016105f5906116ef565b7f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea096108368133610e3f565b6001600160a01b0382166000908152600760205260409020805460ff191660011790556108603390565b6001600160a01b0316826001600160a01b03167f540c9a9d775bc7631a212d06088c691295384d781750ad547782e6d5c6e36c0560016040516108a7911515815260200190565b60405180910390a35050565b6000805160206118288339815191526108cc8133610e3f565b61063c8383611118565b60006108e28133610e3f565b61070f611199565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546104ce906117aa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f5565b6109b33385858403610b40565b5060019392505050565b60006109d7600080516020611828833981519152846108ea565b15610a6f573360009081526007602052604090205460ff16610a6f5760405162461bcd60e51b815260206004820152604560248201527f53656e646572204163636f756e74206e6565647320746f20626520766572696660448201527f69656420746f20616c6c6f77207472616e7366657220746f206275726e20616360648201526418dbdd5b9d60da1b608482015260a4016105f5565b61055e338484610c64565b600082815260056020526040902060010154610a968133610e3f565b61063c8383610f29565b60065460ff1615610ac35760405162461bcd60e51b81526004016105f5906116ef565b7f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea09610aee8133610e3f565b6001600160a01b0382166000818152600760209081526040808320805460ff19169055519182523392917f540c9a9d775bc7631a212d06088c691295384d781750ad547782e6d5c6e36c0591016108a7565b6001600160a01b038316610ba25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f5565b6001600160a01b038216610c035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cc85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f5565b6001600160a01b038216610d2a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f5565b610d358383836111f1565b6001600160a01b03831660009081526020819052604090205481811015610dad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610de4908490611719565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3091815260200190565b60405180910390a35b50505050565b610e4982826108ea565b6106bb57610e61816001600160a01b03166014611214565b610e6c836020611214565b604051602001610e7d929190611647565b60408051601f198184030181529082905262461bcd60e51b82526105f5916004016116bc565b610ead82826108ea565b6106bb5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ee53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f3382826108ea565b156106bb5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16610fd95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105f5565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110795760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105f5565b611085600083836111f1565b80600260008282546110979190611719565b90915550506001600160a01b038216600090815260208190526040812080548392906110c4908490611719565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b61070f33826113b7565b60006111248333610423565b9050818110156111825760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105f5565b61118f8333848403610b40565b61063c83836113b7565b60065460ff16156111bc5760405162461bcd60e51b81526004016105f5906116ef565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110063390565b60065460ff161561063c5760405162461bcd60e51b81526004016105f5906116ef565b60606000611223836002611731565b61122e906002611719565b67ffffffffffffffff81111561124657611246611811565b6040519080825280601f01601f191660200182016040528015611270576020820181803683370190505b509050600360fc1b8160008151811061128b5761128b6117fb565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112ba576112ba6117fb565b60200101906001600160f81b031916908160001a90535060006112de846002611731565b6112e9906001611719565b90505b6001811115611361576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061131d5761131d6117fb565b1a60f81b828281518110611333576113336117fb565b60200101906001600160f81b031916908160001a90535060049490941c9361135a81611793565b90506112ec565b5083156113b05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105f5565b9392505050565b6001600160a01b0382166114175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105f5565b611423826000836111f1565b6001600160a01b038216600090815260208190526040902054818110156114975760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105f5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906114c6908490611750565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b038116811461152857600080fd5b919050565b60006020828403121561153f57600080fd5b6113b082611511565b6000806040838503121561155b57600080fd5b61156483611511565b915061157260208401611511565b90509250929050565b60008060006060848603121561159057600080fd5b61159984611511565b92506115a760208501611511565b9150604084013590509250925092565b600080604083850312156115ca57600080fd5b6115d383611511565b946020939093013593505050565b6000602082840312156115f357600080fd5b5035919050565b6000806040838503121561160d57600080fd5b8235915061157260208401611511565b60006020828403121561162f57600080fd5b81356001600160e01b0319811681146113b057600080fd5b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161167f816017850160208801611767565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116b0816028840160208801611767565b01602801949350505050565b60208152600082518060208401526116db816040850160208701611767565b601f01601f19169190910160400192915050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561172c5761172c6117e5565b500190565b600081600019048311821515161561174b5761174b6117e5565b500290565b600082821015611762576117626117e5565b500390565b60005b8381101561178257818101518382015260200161176a565b83811115610e395750506000910152565b6000816117a2576117a26117e5565b506000190190565b600181811c908216806117be57607f821691505b602082108114156117df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848a26469706673582212207a8bc5b8b5643da800dac3c53a4ef3fd572059ad73110f17e1ab12b08ae6c53764736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806363a9c3d711610104578063a457c2d7116100a2578063d547741f11610071578063d547741f14610402578063dd62ed3e14610415578063e7705db61461044e578063f7d139cb1461047557600080fd5b8063a457c2d714610389578063a9059cbb1461039c578063b9209e33146103af578063d5391393146103db57600080fd5b80638456cb59116100de5780638456cb591461035e57806391d148541461036657806395d89b4114610379578063a217fddf1461038157600080fd5b806363a9c3d71461030f57806370a082311461032257806379cc67901461034b57600080fd5b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a146102d657806340c10f19146102de57806342966c68146102f15780635c975abb1461030457600080fd5b80632f2ff15d1461028c578063313ce567146102a157806336568abe146102b057806339509351146102c357600080fd5b806318160ddd116101b857806318160ddd1461022f57806323b872dd14610241578063248a9ca314610254578063282c51f31461027757600080fd5b806301ffc9a7146101df57806306fdde0314610207578063095ea7b31461021c575b600080fd5b6101f26101ed36600461161d565b610488565b60405190151581526020015b60405180910390f35b61020f6104bf565b6040516101fe91906116bc565b6101f261022a3660046115b7565b610551565b6002545b6040519081526020016101fe565b6101f261024f36600461157b565b610567565b6102336102623660046115e1565b60009081526005602052604090206001015490565b61023360008051602061182883398151915281565b61029f61029a3660046115fa565b610616565b005b604051601281526020016101fe565b61029f6102be3660046115fa565b610641565b6101f26102d13660046115b7565b6106bf565b61029f6106fb565b61029f6102ec3660046115b7565b610712565b61029f6102ff3660046115e1565b6107c6565b60065460ff166101f2565b61029f61031d36600461152d565b6107e8565b61023361033036600461152d565b6001600160a01b031660009081526020819052604090205490565b61029f6103593660046115b7565b6108b3565b61029f6108d6565b6101f26103743660046115fa565b6108ea565b61020f610915565b610233600081565b6101f26103973660046115b7565b610924565b6101f26103aa3660046115b7565b6109bd565b6101f26103bd36600461152d565b6001600160a01b031660009081526007602052604090205460ff1690565b6102337f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61029f6104103660046115fa565b610a7a565b610233610423366004611548565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102337f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea0981565b61029f61048336600461152d565b610aa0565b60006001600160e01b03198216637965db0b60e01b14806104b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104ce906117aa565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa906117aa565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b600061055e338484610b40565b50600192915050565b6000610574848484610c64565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61060b8533858403610b40565b506001949350505050565b6000828152600560205260409020600101546106328133610e3f565b61063c8383610ea3565b505050565b6001600160a01b03811633146106b15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105f5565b6106bb8282610f29565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161055e9185906106f6908690611719565b610b40565b60006107078133610e3f565b61070f610f90565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661073d8133610e3f565b6001600160a01b03831660009081526007602052604090205460ff166107bc5760405162461bcd60e51b815260206004820152602e60248201527f4163636f756e74206e6565647320746f20626520766572696669656420746f2060448201526d616363657074206d696e74696e6760901b60648201526084016105f5565b61063c8383611023565b6000805160206118288339815191526107df8133610e3f565b6106bb8261110e565b60065460ff161561080b5760405162461bcd60e51b81526004016105f5906116ef565b7f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea096108368133610e3f565b6001600160a01b0382166000908152600760205260409020805460ff191660011790556108603390565b6001600160a01b0316826001600160a01b03167f540c9a9d775bc7631a212d06088c691295384d781750ad547782e6d5c6e36c0560016040516108a7911515815260200190565b60405180910390a35050565b6000805160206118288339815191526108cc8133610e3f565b61063c8383611118565b60006108e28133610e3f565b61070f611199565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546104ce906117aa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f5565b6109b33385858403610b40565b5060019392505050565b60006109d7600080516020611828833981519152846108ea565b15610a6f573360009081526007602052604090205460ff16610a6f5760405162461bcd60e51b815260206004820152604560248201527f53656e646572204163636f756e74206e6565647320746f20626520766572696660448201527f69656420746f20616c6c6f77207472616e7366657220746f206275726e20616360648201526418dbdd5b9d60da1b608482015260a4016105f5565b61055e338484610c64565b600082815260056020526040902060010154610a968133610e3f565b61063c8383610f29565b60065460ff1615610ac35760405162461bcd60e51b81526004016105f5906116ef565b7f0ce23c3e399818cfee81a7ab0880f714e53d7672b08df0fa62f2843416e1ea09610aee8133610e3f565b6001600160a01b0382166000818152600760209081526040808320805460ff19169055519182523392917f540c9a9d775bc7631a212d06088c691295384d781750ad547782e6d5c6e36c0591016108a7565b6001600160a01b038316610ba25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f5565b6001600160a01b038216610c035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cc85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f5565b6001600160a01b038216610d2a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f5565b610d358383836111f1565b6001600160a01b03831660009081526020819052604090205481811015610dad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610de4908490611719565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3091815260200190565b60405180910390a35b50505050565b610e4982826108ea565b6106bb57610e61816001600160a01b03166014611214565b610e6c836020611214565b604051602001610e7d929190611647565b60408051601f198184030181529082905262461bcd60e51b82526105f5916004016116bc565b610ead82826108ea565b6106bb5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ee53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f3382826108ea565b156106bb5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16610fd95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105f5565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110795760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105f5565b611085600083836111f1565b80600260008282546110979190611719565b90915550506001600160a01b038216600090815260208190526040812080548392906110c4908490611719565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b61070f33826113b7565b60006111248333610423565b9050818110156111825760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105f5565b61118f8333848403610b40565b61063c83836113b7565b60065460ff16156111bc5760405162461bcd60e51b81526004016105f5906116ef565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110063390565b60065460ff161561063c5760405162461bcd60e51b81526004016105f5906116ef565b60606000611223836002611731565b61122e906002611719565b67ffffffffffffffff81111561124657611246611811565b6040519080825280601f01601f191660200182016040528015611270576020820181803683370190505b509050600360fc1b8160008151811061128b5761128b6117fb565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112ba576112ba6117fb565b60200101906001600160f81b031916908160001a90535060006112de846002611731565b6112e9906001611719565b90505b6001811115611361576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061131d5761131d6117fb565b1a60f81b828281518110611333576113336117fb565b60200101906001600160f81b031916908160001a90535060049490941c9361135a81611793565b90506112ec565b5083156113b05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105f5565b9392505050565b6001600160a01b0382166114175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105f5565b611423826000836111f1565b6001600160a01b038216600090815260208190526040902054818110156114975760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105f5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906114c6908490611750565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b038116811461152857600080fd5b919050565b60006020828403121561153f57600080fd5b6113b082611511565b6000806040838503121561155b57600080fd5b61156483611511565b915061157260208401611511565b90509250929050565b60008060006060848603121561159057600080fd5b61159984611511565b92506115a760208501611511565b9150604084013590509250925092565b600080604083850312156115ca57600080fd5b6115d383611511565b946020939093013593505050565b6000602082840312156115f357600080fd5b5035919050565b6000806040838503121561160d57600080fd5b8235915061157260208401611511565b60006020828403121561162f57600080fd5b81356001600160e01b0319811681146113b057600080fd5b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161167f816017850160208801611767565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116b0816028840160208801611767565b01602801949350505050565b60208152600082518060208401526116db816040850160208701611767565b601f01601f19169190910160400192915050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561172c5761172c6117e5565b500190565b600081600019048311821515161561174b5761174b6117e5565b500290565b600082821015611762576117626117e5565b500390565b60005b8381101561178257818101518382015260200161176a565b83811115610e395750506000910152565b6000816117a2576117a26117e5565b506000190190565b600181811c908216806117be57607f821691505b602082108114156117df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848a26469706673582212207a8bc5b8b5643da800dac3c53a4ef3fd572059ad73110f17e1ab12b08ae6c53764736f6c63430008070033
Deployed Bytecode Sourcemap
35147:2180:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10638:204;;;;;;:::i;:::-;;:::i;:::-;;;3324:14:1;;3317:22;3299:41;;3287:2;3272:18;10638:204:0;;;;;;;;23453:100;;;:::i;:::-;;;;;;;:::i;25620:169::-;;;;;;:::i;:::-;;:::i;24573:108::-;24661:12;;24573:108;;;3497:25:1;;;3485:2;3470:18;24573:108:0;3351:177:1;26271:492:0;;;;;;:::i;:::-;;:::i;12049:123::-;;;;;;:::i;:::-;12115:7;12142:12;;;:6;:12;;;;;:22;;;;12049:123;35329:62;;-1:-1:-1;;;;;;;;;;;35329:62:0;;12434:147;;;;;;:::i;:::-;;:::i;:::-;;24415:93;;;24498:2;11019:36:1;;11007:2;10992:18;24415:93:0;10877:184:1;13482:218:0;;;;;;:::i;:::-;;:::i;27172:215::-;;;;;;:::i;:::-;;:::i;37059:78::-;;;:::i;36198:195::-;;;;;;:::i;:::-;;:::i;36399:99::-;;;;;;:::i;:::-;;:::i;16404:86::-;16475:7;;;;16404:86;;35690:183;;;;;;:::i;:::-;;:::i;24744:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24845:18:0;24818:7;24845:18;;;;;;;;;;;;24744:127;36504:133;;;;;;:::i;:::-;;:::i;36979:74::-;;;:::i;10934:139::-;;;;;;:::i;:::-;;:::i;23672:104::-;;;:::i;10025:49::-;;10070:4;10025:49;;27890:413;;;;;;:::i;:::-;;:::i;36643:330::-;;;;;;:::i;:::-;;:::i;36082:110::-;;;;;;:::i;:::-;-1:-1:-1;;;;;36168:18:0;36148:4;36168:18;;;:9;:18;;;;;;;;;36082:110;35262:62;;35300:24;35262:62;;12826:149;;;;;;:::i;:::-;;:::i;25322:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25438:18:0;;;25411:7;25438:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25322:151;35396:66;;35436:26;35396:66;;35879:197;;;;;;:::i;:::-;;:::i;10638:204::-;10723:4;-1:-1:-1;;;;;;10747:47:0;;-1:-1:-1;;;10747:47:0;;:87;;-1:-1:-1;;;;;;;;;;7815:40:0;;;10798:36;10740:94;10638:204;-1:-1:-1;;10638:204:0:o;23453:100::-;23507:13;23540:5;23533:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23453:100;:::o;25620:169::-;25703:4;25720:39;3743:10;25743:7;25752:6;25720:8;:39::i;:::-;-1:-1:-1;25777:4:0;25620:169;;;;:::o;26271:492::-;26411:4;26428:36;26438:6;26446:9;26457:6;26428:9;:36::i;:::-;-1:-1:-1;;;;;26504:19:0;;26477:24;26504:19;;;:11;:19;;;;;;;;3743:10;26504:33;;;;;;;;26556:26;;;;26548:79;;;;-1:-1:-1;;;26548:79:0;;7273:2:1;26548:79:0;;;7255:21:1;7312:2;7292:18;;;7285:30;7351:34;7331:18;;;7324:62;-1:-1:-1;;;7402:18:1;;;7395:38;7450:19;;26548:79:0;;;;;;;;;26663:57;26672:6;3743:10;26713:6;26694:16;:25;26663:8;:57::i;:::-;-1:-1:-1;26751:4:0;;26271:492;-1:-1:-1;;;;26271:492:0:o;12434:147::-;12115:7;12142:12;;;:6;:12;;;;;:22;;;10516:30;10527:4;3743:10;10516;:30::i;:::-;12548:25:::1;12559:4;12565:7;12548:10;:25::i;:::-;12434:147:::0;;;:::o;13482:218::-;-1:-1:-1;;;;;13578:23:0;;3743:10;13578:23;13570:83;;;;-1:-1:-1;;;13570:83:0;;10121:2:1;13570:83:0;;;10103:21:1;10160:2;10140:18;;;10133:30;10199:34;10179:18;;;10172:62;-1:-1:-1;;;10250:18:1;;;10243:45;10305:19;;13570:83:0;9919:411:1;13570:83:0;13666:26;13678:4;13684:7;13666:11;:26::i;:::-;13482:218;;:::o;27172:215::-;3743:10;27260:4;27309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27309:34:0;;;;;;;;;;27260:4;;27277:80;;27300:7;;27309:47;;27346:10;;27309:47;:::i;:::-;27277:8;:80::i;37059:78::-;10070:4;10516:30;10070:4;3743:10;10516;:30::i;:::-;37121:10:::1;:8;:10::i;:::-;37059:78:::0;:::o;36198:195::-;35300:24;10516:30;35300:24;3743:10;10516;:30::i;:::-;-1:-1:-1;;;;;36289:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;36281:77;;;::::0;-1:-1:-1;;;36281:77:0;;9300:2:1;36281:77:0::1;::::0;::::1;9282:21:1::0;9339:2;9319:18;;;9312:30;9378:34;9358:18;;;9351:62;-1:-1:-1;;;9429:18:1;;;9422:44;9483:19;;36281:77:0::1;9098:410:1::0;36281:77:0::1;36365:22;36371:7;36380:6;36365:5;:22::i;36399:99::-:0;-1:-1:-1;;;;;;;;;;;10516:30:0;35367:24;3743:10;10516;:30::i;:::-;36474:18:::1;36485:6;36474:10;:18::i;35690:183::-:0;16475:7;;;;16729:9;16721:38;;;;-1:-1:-1;;;16721:38:0;;;;;;;:::i;:::-;35436:26:::1;10516:30;35436:26:::0;3743:10;10516;:30::i;:::-:1;-1:-1:-1::0;;;;;35775:18:0;::::2;;::::0;;;:9:::2;:18;::::0;;;;:25;;-1:-1:-1;;35775:25:0::2;35796:4;35775:25;::::0;;35848:12:::2;3743:10:::0;;3663:98;35848:12:::2;-1:-1:-1::0;;;;;35812:55:0::2;35839:7;-1:-1:-1::0;;;;;35812:55:0::2;;35862:4;35812:55;;;;3324:14:1::0;3317:22;3299:41;;3287:2;3272:18;;3159:187;35812:55:0::2;;;;;;;;16770:1:::1;35690:183:::0;:::o;36504:133::-;-1:-1:-1;;;;;;;;;;;10516:30:0;35367:24;3743:10;10516;:30::i;:::-;36600:31:::1;36615:7;36624:6;36600:14;:31::i;36979:74::-:0;10070:4;10516:30;10070:4;3743:10;10516;:30::i;:::-;37039:8:::1;:6;:8::i;10934:139::-:0;11012:4;11036:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11036:29:0;;;;;;;;;;;;;;;10934:139::o;23672:104::-;23728:13;23761:7;23754:14;;;;;:::i;27890:413::-;3743:10;27983:4;28027:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28027:34:0;;;;;;;;;;28080:35;;;;28072:85;;;;-1:-1:-1;;;28072:85:0;;9715:2:1;28072:85:0;;;9697:21:1;9754:2;9734:18;;;9727:30;9793:34;9773:18;;;9766:62;-1:-1:-1;;;9844:18:1;;;9837:35;9889:19;;28072:85:0;9513:401:1;28072:85:0;28193:67;3743:10;28216:7;28244:15;28225:16;:34;28193:8;:67::i;:::-;-1:-1:-1;28291:4:0;;27890:413;-1:-1:-1;;;27890:413:0:o;36643:330::-;36729:4;36746:31;-1:-1:-1;;;;;;;;;;;36767:9:0;36746:7;:31::i;:::-;36742:159;;;3743:10;36796:23;;;;:9;:23;;;;;;;;36788:105;;;;-1:-1:-1;;;36788:105:0;;6450:2:1;36788:105:0;;;6432:21:1;6489:2;6469:18;;;6462:30;6528:34;6508:18;;;6501:62;6599:34;6579:18;;;6572:62;-1:-1:-1;;;6650:19:1;;;6643:36;6696:19;;36788:105:0;6248:473:1;36788:105:0;36907:42;3743:10;36931:9;36942:6;36907:9;:42::i;12826:149::-;12115:7;12142:12;;;:6;:12;;;;;:22;;;10516:30;10527:4;3743:10;10516;:30::i;:::-;12941:26:::1;12953:4;12959:7;12941:11;:26::i;35879:197::-:0;16475:7;;;;16729:9;16721:38;;;;-1:-1:-1;;;16721:38:0;;;;;;;:::i;:::-;35436:26:::1;10516:30;35436:26:::0;3743:10;10516;:30::i;:::-:1;-1:-1:-1::0;;;;;35976:18:0;::::2;35997:5;35976:18:::0;;;:9:::2;:18;::::0;;;;;;;:26;;-1:-1:-1;;35976:26:0::2;::::0;;36014:56;3299:41:1;;;3743:10:0;;35976:18;36014:56:::2;::::0;3272:18:1;36014:56:0::2;3159:187:1::0;31574:380:0;-1:-1:-1;;;;;31710:19:0;;31702:68;;;;-1:-1:-1;;;31702:68:0;;8895:2:1;31702:68:0;;;8877:21:1;8934:2;8914:18;;;8907:30;8973:34;8953:18;;;8946:62;-1:-1:-1;;;9024:18:1;;;9017:34;9068:19;;31702:68:0;8693:400:1;31702:68:0;-1:-1:-1;;;;;31789:21:0;;31781:68;;;;-1:-1:-1;;;31781:68:0;;5640:2:1;31781:68:0;;;5622:21:1;5679:2;5659:18;;;5652:30;5718:34;5698:18;;;5691:62;-1:-1:-1;;;5769:18:1;;;5762:32;5811:19;;31781:68:0;5438:398:1;31781:68:0;-1:-1:-1;;;;;31862:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31914:32;;3497:25:1;;;31914:32:0;;3470:18:1;31914:32:0;;;;;;;31574:380;;;:::o;28793:733::-;-1:-1:-1;;;;;28933:20:0;;28925:70;;;;-1:-1:-1;;;28925:70:0;;8489:2:1;28925:70:0;;;8471:21:1;8528:2;8508:18;;;8501:30;8567:34;8547:18;;;8540:62;-1:-1:-1;;;8618:18:1;;;8611:35;8663:19;;28925:70:0;8287:401:1;28925:70:0;-1:-1:-1;;;;;29014:23:0;;29006:71;;;;-1:-1:-1;;;29006:71:0;;4484:2:1;29006:71:0;;;4466:21:1;4523:2;4503:18;;;4496:30;4562:34;4542:18;;;4535:62;-1:-1:-1;;;4613:18:1;;;4606:33;4656:19;;29006:71:0;4282:399:1;29006:71:0;29090:47;29111:6;29119:9;29130:6;29090:20;:47::i;:::-;-1:-1:-1;;;;;29174:17:0;;29150:21;29174:17;;;;;;;;;;;29210:23;;;;29202:74;;;;-1:-1:-1;;;29202:74:0;;6043:2:1;29202:74:0;;;6025:21:1;6082:2;6062:18;;;6055:30;6121:34;6101:18;;;6094:62;-1:-1:-1;;;6172:18:1;;;6165:36;6218:19;;29202:74:0;5841:402:1;29202:74:0;-1:-1:-1;;;;;29312:17:0;;;:9;:17;;;;;;;;;;;29332:22;;;29312:42;;29376:20;;;;;;;;:30;;29348:6;;29312:9;29376:30;;29348:6;;29376:30;:::i;:::-;;;;;;;;29441:9;-1:-1:-1;;;;;29424:35:0;29433:6;-1:-1:-1;;;;;29424:35:0;;29452:6;29424:35;;;;3497:25:1;;3485:2;3470:18;;3351:177;29424:35:0;;;;;;;;29472:46;28914:612;28793:733;;;:::o;11363:497::-;11444:22;11452:4;11458:7;11444;:22::i;:::-;11439:414;;11632:41;11660:7;-1:-1:-1;;;;;11632:41:0;11670:2;11632:19;:41::i;:::-;11746:38;11774:4;11781:2;11746:19;:38::i;:::-;11537:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11537:270:0;;;;;;;;;;-1:-1:-1;;;11483:358:0;;;;;;;:::i;14786:229::-;14861:22;14869:4;14875:7;14861;:22::i;:::-;14856:152;;14900:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14900:29:0;;;;;;;;;:36;;-1:-1:-1;;14900:36:0;14932:4;14900:36;;;14983:12;3743:10;;3663:98;14983:12;-1:-1:-1;;;;;14956:40:0;14974:7;-1:-1:-1;;;;;14956:40:0;14968:4;14956:40;;;;;;;;;;14786:229;;:::o;15023:230::-;15098:22;15106:4;15112:7;15098;:22::i;:::-;15094:152;;;15169:5;15137:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15137:29:0;;;;;;;;;;:37;;-1:-1:-1;;15137:37:0;;;15194:40;3743:10;;15137:12;;15194:40;;15169:5;15194:40;15023:230;;:::o;17463:120::-;16475:7;;;;16999:41;;;;-1:-1:-1;;;16999:41:0;;4888:2:1;16999:41:0;;;4870:21:1;4927:2;4907:18;;;4900:30;-1:-1:-1;;;4946:18:1;;;4939:50;5006:18;;16999:41:0;4686:344:1;16999:41:0;17522:7:::1;:15:::0;;-1:-1:-1;;17522:15:0::1;::::0;;17553:22:::1;3743:10:::0;17562:12:::1;17553:22;::::0;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;17553:22:0::1;;;;;;;17463:120::o:0;29813:399::-;-1:-1:-1;;;;;29897:21:0;;29889:65;;;;-1:-1:-1;;;29889:65:0;;10537:2:1;29889:65:0;;;10519:21:1;10576:2;10556:18;;;10549:30;10615:33;10595:18;;;10588:61;10666:18;;29889:65:0;10335:355:1;29889:65:0;29967:49;29996:1;30000:7;30009:6;29967:20;:49::i;:::-;30045:6;30029:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;30062:18:0;;:9;:18;;;;;;;;;;:28;;30084:6;;30062:9;:28;;30084:6;;30062:28;:::i;:::-;;;;-1:-1:-1;;30106:37:0;;3497:25:1;;;-1:-1:-1;;;;;30106:37:0;;;30123:1;;30106:37;;3485:2:1;3470:18;30106:37:0;;;;;;;13482:218;;:::o;34033:91::-;34089:27;3743:10;34109:6;34089:5;:27::i;34443:368::-;34520:24;34547:32;34557:7;3743:10;25322:151;:::i;34547:32::-;34520:59;;34618:6;34598:16;:26;;34590:75;;;;-1:-1:-1;;;34590:75:0;;7682:2:1;34590:75:0;;;7664:21:1;7721:2;7701:18;;;7694:30;7760:34;7740:18;;;7733:62;-1:-1:-1;;;7811:18:1;;;7804:34;7855:19;;34590:75:0;7480:400:1;34590:75:0;34701:58;34710:7;3743:10;34752:6;34733:16;:25;34701:8;:58::i;:::-;34781:22;34787:7;34796:6;34781:5;:22::i;17204:118::-;16475:7;;;;16729:9;16721:38;;;;-1:-1:-1;;;16721:38:0;;;;;;;:::i;:::-;17264:7:::1;:14:::0;;-1:-1:-1;;17264:14:0::1;17274:4;17264:14;::::0;;17294:20:::1;17301:12;3743:10:::0;;3663:98;37143:181;16475:7;;;;16729:9;16721:38;;;;-1:-1:-1;;;16721:38:0;;;;;;;:::i;5503:451::-;5578:13;5604:19;5636:10;5640:6;5636:1;:10;:::i;:::-;:14;;5649:1;5636:14;:::i;:::-;5626:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5626:25:0;;5604:47;;-1:-1:-1;;;5662:6:0;5669:1;5662:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5662:15:0;;;;;;;;;-1:-1:-1;;;5688:6:0;5695:1;5688:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5688:15:0;;;;;;;;-1:-1:-1;5719:9:0;5731:10;5735:6;5731:1;:10;:::i;:::-;:14;;5744:1;5731:14;:::i;:::-;5719:26;;5714:135;5751:1;5747;:5;5714:135;;;-1:-1:-1;;;5799:5:0;5807:3;5799:11;5786:25;;;;;;;:::i;:::-;;;;5774:6;5781:1;5774:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;5774:37:0;;;;;;;;-1:-1:-1;5836:1:0;5826:11;;;;;5754:3;;;:::i;:::-;;;5714:135;;;-1:-1:-1;5867:10:0;;5859:55;;;;-1:-1:-1;;;5859:55:0;;4123:2:1;5859:55:0;;;4105:21:1;;;4142:18;;;4135:30;4201:34;4181:18;;;4174:62;4253:18;;5859:55:0;3921:356:1;5859:55:0;5939:6;5503:451;-1:-1:-1;;;5503:451:0:o;30545:591::-;-1:-1:-1;;;;;30629:21:0;;30621:67;;;;-1:-1:-1;;;30621:67:0;;8087:2:1;30621:67:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:31;8257:19;;30621:67:0;7885:397:1;30621:67:0;30701:49;30722:7;30739:1;30743:6;30701:20;:49::i;:::-;-1:-1:-1;;;;;30788:18:0;;30763:22;30788:18;;;;;;;;;;;30825:24;;;;30817:71;;;;-1:-1:-1;;;30817:71:0;;5237:2:1;30817:71:0;;;5219:21:1;5276:2;5256:18;;;5249:30;5315:34;5295:18;;;5288:62;-1:-1:-1;;;5366:18:1;;;5359:32;5408:19;;30817:71:0;5035:398:1;30817:71:0;-1:-1:-1;;;;;30924:18:0;;:9;:18;;;;;;;;;;30945:23;;;30924:44;;30990:12;:22;;30962:6;;30924:9;30990:22;;30962:6;;30990:22;:::i;:::-;;;;-1:-1:-1;;31030:37:0;;3497:25:1;;;31056:1:0;;-1:-1:-1;;;;;31030:37:0;;;;;3485:2:1;3470:18;31030:37:0;;;;;;;12434:147;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1425:254::-;1493:6;1501;1554:2;1542:9;1533:7;1529:23;1525:32;1522:52;;;1570:1;1567;1560:12;1522:52;1606:9;1593:23;1583:33;;1635:38;1669:2;1658:9;1654:18;1635:38;:::i;1684:286::-;1742:6;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1837:23;;-1:-1:-1;;;;;;1889:32:1;;1879:43;;1869:71;;1936:1;1933;1926:12;2160:786;2571:25;2566:3;2559:38;2541:3;2626:6;2620:13;2642:62;2697:6;2692:2;2687:3;2683:12;2676:4;2668:6;2664:17;2642:62;:::i;:::-;-1:-1:-1;;;2763:2:1;2723:16;;;2755:11;;;2748:40;2813:13;;2835:63;2813:13;2884:2;2876:11;;2869:4;2857:17;;2835:63;:::i;:::-;2918:17;2937:2;2914:26;;2160:786;-1:-1:-1;;;;2160:786:1:o;3533:383::-;3682:2;3671:9;3664:21;3645:4;3714:6;3708:13;3757:6;3752:2;3741:9;3737:18;3730:34;3773:66;3832:6;3827:2;3816:9;3812:18;3807:2;3799:6;3795:15;3773:66;:::i;:::-;3900:2;3879:15;-1:-1:-1;;3875:29:1;3860:45;;;;3907:2;3856:54;;3533:383;-1:-1:-1;;3533:383:1:o;6726:340::-;6928:2;6910:21;;;6967:2;6947:18;;;6940:30;-1:-1:-1;;;7001:2:1;6986:18;;6979:46;7057:2;7042:18;;6726:340::o;11066:128::-;11106:3;11137:1;11133:6;11130:1;11127:13;11124:39;;;11143:18;;:::i;:::-;-1:-1:-1;11179:9:1;;11066:128::o;11199:168::-;11239:7;11305:1;11301;11297:6;11293:14;11290:1;11287:21;11282:1;11275:9;11268:17;11264:45;11261:71;;;11312:18;;:::i;:::-;-1:-1:-1;11352:9:1;;11199:168::o;11372:125::-;11412:4;11440:1;11437;11434:8;11431:34;;;11445:18;;:::i;:::-;-1:-1:-1;11482:9:1;;11372:125::o;11502:258::-;11574:1;11584:113;11598:6;11595:1;11592:13;11584:113;;;11674:11;;;11668:18;11655:11;;;11648:39;11620:2;11613:10;11584:113;;;11715:6;11712:1;11709:13;11706:48;;;-1:-1:-1;;11750:1:1;11732:16;;11725:27;11502:258::o;11765:136::-;11804:3;11832:5;11822:39;;11841:18;;:::i;:::-;-1:-1:-1;;;11877:18:1;;11765:136::o;11906:380::-;11985:1;11981:12;;;;12028;;;12049:61;;12103:4;12095:6;12091:17;12081:27;;12049:61;12156:2;12148:6;12145:14;12125:18;12122:38;12119:161;;;12202:10;12197:3;12193:20;12190:1;12183:31;12237:4;12234:1;12227:15;12265:4;12262:1;12255:15;12119:161;;11906:380;;;:::o;12291:127::-;12352:10;12347:3;12343:20;12340:1;12333:31;12383:4;12380:1;12373:15;12407:4;12404:1;12397:15;12423:127;12484:10;12479:3;12475:20;12472:1;12465:31;12515:4;12512:1;12505:15;12539:4;12536:1;12529:15;12555:127;12616:10;12611:3;12607:20;12604:1;12597:31;12647:4;12644:1;12637:15;12671:4;12668:1;12661:15
Swarm Source
ipfs://7a8bc5b8b5643da800dac3c53a4ef3fd572059ad73110f17e1ab12b08ae6c537
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.