Overview
Max Total Supply
10,000,000,000 AGG
Holders
299 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-0.01%)
Onchain Market Cap
$120,000.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,028,226.99 AGGValue
$60.34 ( ~0.0221844826561175 Eth) [0.0503%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AGGToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./Ownable.sol"; import "./TimeLock.sol"; contract AGGToken is ERC20Pausable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); uint256 public constant MAX_SUPPLY = 10000000000000000000000000000; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function mint(address to, uint256 amount) public { require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter"); require(amount + totalSupply() <= MAX_SUPPLY, "Insufficient supply"); _mint(to, amount); } function burn(uint256 _amount) public { require(hasRole(BURNER_ROLE, msg.sender), "Caller is not a burner"); _burn(msg.sender, _amount); } 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(ERC20Pausable) whenNotPaused { super._beforeTokenTransfer(_from, _to, _amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../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); _; } /** * @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 `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../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 Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../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: * * - `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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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); }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; contract Ownable { address private mainOwner; mapping(address => bool) private owners; event SetMainOwner(address indexed previousOwner, address indexed newOwner); event AddedOwner(address indexed newOwner); event RemovedOwner(address indexed removedOwner); constructor() { owners[msg.sender] = true; setMainOwner(msg.sender); } function owner() public view returns (address) { return mainOwner; } modifier onlyOwner() { require(owners[msg.sender]); _; } function isOwner(address _address) public view returns (bool) { return owners[_address]; } function setMainOwner(address _newOwner) public onlyOwner { require(_newOwner != address(0), "setMainOwner: new owner is the zero address"); require(isOwner(_newOwner) == true, "setMainOwner: new owner is not owner"); emit SetMainOwner(mainOwner, _newOwner); } function addOwner(address _newOwner) public onlyOwner { require(_newOwner != address(0), "addOwner: new owner is the zero address"); require(isOwner(_newOwner) == false, "addOwner: new owner is already the owner"); owners[_newOwner] = true; emit AddedOwner(_newOwner); } function removeOwner(address _toRemove) public onlyOwner { require(_toRemove != address(0), "removeOwner: remove owner is the zero address"); require(_toRemove != msg.sender, "removeOwner: remove owner is msg.sender"); require(isOwner(_toRemove) == true, "removeOwner: remove owner is not owner"); require(_toRemove != mainOwner, "removeOwner: Main Owner cannot be removed"); delete owners[_toRemove]; emit RemovedOwner(_toRemove); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./Ownable.sol"; contract TimeLock is Ownable { uint256 private timeLock; constructor() { timeLock = 0; } modifier notLocked() { require(timeLock <= block.timestamp, "Time lock is on"); _; } function setTimeLock(uint256 _time) public onlyOwner { timeLock = _time; } function getTimeLock() public view returns (uint256) { return timeLock; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a9138038062001a918339810160408190526200003491620002a1565b8151829082906200004d90600390602085019062000150565b5080516200006390600490602084019062000150565b50506005805460ff19169055506200007d60003362000085565b50506200035b565b62000091828262000095565b5050565b620000a1828262000121565b620000915760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000dd6200014c565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b8280546200015e9062000308565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600082601f83011262000207578081fd5b81516001600160401b038082111562000224576200022462000345565b6040516020601f8401601f19168201810183811183821017156200024c576200024c62000345565b604052838252858401810187101562000263578485fd5b8492505b8383101562000286578583018101518284018201529182019162000267565b838311156200029757848185840101525b5095945050505050565b60008060408385031215620002b4578182fd5b82516001600160401b0380821115620002cb578384fd5b620002d986838701620001f6565b93506020850151915080821115620002ef578283fd5b50620002fe85828601620001f6565b9150509250929050565b6002810460018216806200031d57607f821691505b602082108114156200033f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611726806200036b6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806340c10f19116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610306578063d539139314610319578063d547741f14610321578063dd62ed3e146103345761018e565b806395d89b41146102e3578063a217fddf146102eb578063a457c2d7146102f35761018e565b806340c10f191461028757806342966c681461029a5780635c975abb146102ad57806370a08231146102b55780638456cb59146102c857806391d14854146102d05761018e565b8063282c51f31161014b57806332cb6b0c1161012557806332cb6b0c1461025157806336568abe14610259578063395093511461026c5780633f4ba83a1461027f5761018e565b8063282c51f31461021f5780632f2ff15d14610227578063313ce5671461023c5761018e565b806301ffc9a71461019357806306fdde03146101bc578063095ea7b3146101d157806318160ddd146101e457806323b872dd146101f9578063248a9ca31461020c575b600080fd5b6101a66101a13660046110cb565b610347565b6040516101b3919061117c565b60405180910390f35b6101c4610374565b6040516101b39190611190565b6101a66101df366004611068565b610406565b6101ec610428565b6040516101b39190611187565b6101a661020736600461102d565b61042e565b6101ec61021a366004611091565b61045c565b6101ec610471565b61023a6102353660046110a9565b610495565b005b6102446104b6565b6040516101b39190611600565b6101ec6104bb565b61023a6102673660046110a9565b6104cb565b6101a661027a366004611068565b61051a565b61023a610546565b61023a610295366004611068565b61055c565b61023a6102a8366004611091565b6105e9565b6101a6610639565b6101ec6102c3366004610fe1565b610642565b61023a61065d565b6101a66102de3660046110a9565b610670565b6101c461069b565b6101ec6106aa565b6101a6610301366004611068565b6106af565b6101a6610314366004611068565b6106f7565b6101ec61070f565b61023a61032f3660046110a9565b610733565b6101ec610342366004610ffb565b61074f565b60006001600160e01b03198216637965db0b60e01b148061036c575061036c8261077a565b90505b919050565b6060600380546103839061169f565b80601f01602080910402602001604051908101604052809291908181526020018280546103af9061169f565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600080610411610793565b905061041e818585610797565b5060019392505050565b60025490565b600080610439610793565b905061044685828561084b565b610451858585610895565b506001949350505050565b60009081526006602052604090206001015490565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61049e8261045c565b6104a7816109b9565b6104b183836109ca565b505050565b601290565b6b204fce5e3e2502611000000081565b6104d3610793565b6001600160a01b0316816001600160a01b03161461050c5760405162461bcd60e51b815260040161050390611530565b60405180910390fd5b6105168282610a51565b5050565b600080610525610793565b905061041e818585610537858961074f565b610541919061160e565b610797565b6000610551816109b9565b610559610ad6565b50565b6105867f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610670565b6105a25760405162461bcd60e51b815260040161050390611394565b6b204fce5e3e250261100000006105b7610428565b6105c1908361160e565b11156105df5760405162461bcd60e51b8152600401610503906113f4565b6105168282610b28565b6106137f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610670565b61062f5760405162461bcd60e51b8152600401610503906113c4565b6105593382610bf0565b60055460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000610668816109b9565b610559610ce1565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546103839061169f565b600081565b6000806106ba610793565b905060006106c8828661074f565b9050838110156106ea5760405162461bcd60e51b8152600401610503906114eb565b6104518286868403610797565b600080610702610793565b905061041e818585610895565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61073c8261045c565b610745816109b9565b6104b18383610a51565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166107bd5760405162461bcd60e51b8152600401610503906114a7565b6001600160a01b0382166107e35760405162461bcd60e51b8152600401610503906112ab565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061083e908590611187565b60405180910390a3505050565b6000610857848461074f565b9050600019811461088f57818110156108825760405162461bcd60e51b8152600401610503906112ed565b61088f8484848403610797565b50505050565b6001600160a01b0383166108bb5760405162461bcd60e51b815260040161050390611462565b6001600160a01b0382166108e15760405162461bcd60e51b8152600401610503906111f8565b6108ec838383610d1f565b6001600160a01b038316600090815260208190526040902054818110156109255760405162461bcd60e51b815260040161050390611324565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061095c90849061160e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a69190611187565b60405180910390a361088f8484846104b1565b610559816109c5610793565b610d32565b6109d48282610670565b6105165760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a0d610793565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a5b8282610670565b156105165760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19169055610a92610793565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610ade610d96565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b11610793565b604051610b1e9190611168565b60405180910390a1565b6001600160a01b038216610b4e5760405162461bcd60e51b81526004016105039061157f565b610b5a60008383610d1f565b8060026000828254610b6c919061160e565b90915550506001600160a01b03821660009081526020819052604081208054839290610b9990849061160e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bdc908590611187565b60405180910390a3610516600083836104b1565b6001600160a01b038216610c165760405162461bcd60e51b815260040161050390611421565b610c2282600083610d1f565b6001600160a01b03821660009081526020819052604090205481811015610c5b5760405162461bcd60e51b815260040161050390611269565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c8a908490611645565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ccd908690611187565b60405180910390a36104b1836000846104b1565b610ce9610dbc565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b11610793565b610d27610dbc565b6104b1838383610de1565b610d3c8282610670565b61051657610d54816001600160a01b03166014610e11565b610d5f836020610e11565b604051602001610d709291906110f3565b60408051601f198184030181529082905262461bcd60e51b825261050391600401611190565b610d9e610639565b610dba5760405162461bcd60e51b81526004016105039061123b565b565b610dc4610639565b15610dba5760405162461bcd60e51b81526004016105039061136a565b610dec8383836104b1565b610df4610639565b156104b15760405162461bcd60e51b8152600401610503906115b6565b60606000610e20836002611626565b610e2b90600261160e565b67ffffffffffffffff811115610e5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e7b576020820181803683370190505b509050600360fc1b81600081518110610ea457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610ee157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610f05846002611626565b610f1090600161160e565b90505b6001811115610fa4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f5257634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610f7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610f9d81611688565b9050610f13565b508315610fc35760405162461bcd60e51b8152600401610503906111c3565b9392505050565b80356001600160a01b038116811461036f57600080fd5b600060208284031215610ff2578081fd5b610fc382610fca565b6000806040838503121561100d578081fd5b61101683610fca565b915061102460208401610fca565b90509250929050565b600080600060608486031215611041578081fd5b61104a84610fca565b925061105860208501610fca565b9150604084013590509250925092565b6000806040838503121561107a578182fd5b61108383610fca565b946020939093013593505050565b6000602082840312156110a2578081fd5b5035919050565b600080604083850312156110bb578182fd5b8235915061102460208401610fca565b6000602082840312156110dc578081fd5b81356001600160e01b031981168114610fc3578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161112b81601785016020880161165c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161115c81602884016020880161165c565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b60006020825282518060208401526111af81604085016020870161165c565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526016908201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604082015260600190565b60208082526016908201527521b0b63632b91034b9903737ba103090313ab93732b960511b604082015260600190565b602080825260139082015272496e73756666696369656e7420737570706c7960681b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b60ff91909116815260200190565b60008219821115611621576116216116da565b500190565b6000816000190483118215151615611640576116406116da565b500290565b600082821015611657576116576116da565b500390565b60005b8381101561167757818101518382015260200161165f565b8381111561088f5750506000910152565b600081611697576116976116da565b506000190190565b6002810460018216806116b357607f821691505b602082108114156116d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122003c5c8a294a3cdd744d56ea82d7af6a05b6fa6a6c7d29c035bd7ffd16cd14e3c64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003414747000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034147470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806340c10f19116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610306578063d539139314610319578063d547741f14610321578063dd62ed3e146103345761018e565b806395d89b41146102e3578063a217fddf146102eb578063a457c2d7146102f35761018e565b806340c10f191461028757806342966c681461029a5780635c975abb146102ad57806370a08231146102b55780638456cb59146102c857806391d14854146102d05761018e565b8063282c51f31161014b57806332cb6b0c1161012557806332cb6b0c1461025157806336568abe14610259578063395093511461026c5780633f4ba83a1461027f5761018e565b8063282c51f31461021f5780632f2ff15d14610227578063313ce5671461023c5761018e565b806301ffc9a71461019357806306fdde03146101bc578063095ea7b3146101d157806318160ddd146101e457806323b872dd146101f9578063248a9ca31461020c575b600080fd5b6101a66101a13660046110cb565b610347565b6040516101b3919061117c565b60405180910390f35b6101c4610374565b6040516101b39190611190565b6101a66101df366004611068565b610406565b6101ec610428565b6040516101b39190611187565b6101a661020736600461102d565b61042e565b6101ec61021a366004611091565b61045c565b6101ec610471565b61023a6102353660046110a9565b610495565b005b6102446104b6565b6040516101b39190611600565b6101ec6104bb565b61023a6102673660046110a9565b6104cb565b6101a661027a366004611068565b61051a565b61023a610546565b61023a610295366004611068565b61055c565b61023a6102a8366004611091565b6105e9565b6101a6610639565b6101ec6102c3366004610fe1565b610642565b61023a61065d565b6101a66102de3660046110a9565b610670565b6101c461069b565b6101ec6106aa565b6101a6610301366004611068565b6106af565b6101a6610314366004611068565b6106f7565b6101ec61070f565b61023a61032f3660046110a9565b610733565b6101ec610342366004610ffb565b61074f565b60006001600160e01b03198216637965db0b60e01b148061036c575061036c8261077a565b90505b919050565b6060600380546103839061169f565b80601f01602080910402602001604051908101604052809291908181526020018280546103af9061169f565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600080610411610793565b905061041e818585610797565b5060019392505050565b60025490565b600080610439610793565b905061044685828561084b565b610451858585610895565b506001949350505050565b60009081526006602052604090206001015490565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61049e8261045c565b6104a7816109b9565b6104b183836109ca565b505050565b601290565b6b204fce5e3e2502611000000081565b6104d3610793565b6001600160a01b0316816001600160a01b03161461050c5760405162461bcd60e51b815260040161050390611530565b60405180910390fd5b6105168282610a51565b5050565b600080610525610793565b905061041e818585610537858961074f565b610541919061160e565b610797565b6000610551816109b9565b610559610ad6565b50565b6105867f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610670565b6105a25760405162461bcd60e51b815260040161050390611394565b6b204fce5e3e250261100000006105b7610428565b6105c1908361160e565b11156105df5760405162461bcd60e51b8152600401610503906113f4565b6105168282610b28565b6106137f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610670565b61062f5760405162461bcd60e51b8152600401610503906113c4565b6105593382610bf0565b60055460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000610668816109b9565b610559610ce1565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546103839061169f565b600081565b6000806106ba610793565b905060006106c8828661074f565b9050838110156106ea5760405162461bcd60e51b8152600401610503906114eb565b6104518286868403610797565b600080610702610793565b905061041e818585610895565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61073c8261045c565b610745816109b9565b6104b18383610a51565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166107bd5760405162461bcd60e51b8152600401610503906114a7565b6001600160a01b0382166107e35760405162461bcd60e51b8152600401610503906112ab565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061083e908590611187565b60405180910390a3505050565b6000610857848461074f565b9050600019811461088f57818110156108825760405162461bcd60e51b8152600401610503906112ed565b61088f8484848403610797565b50505050565b6001600160a01b0383166108bb5760405162461bcd60e51b815260040161050390611462565b6001600160a01b0382166108e15760405162461bcd60e51b8152600401610503906111f8565b6108ec838383610d1f565b6001600160a01b038316600090815260208190526040902054818110156109255760405162461bcd60e51b815260040161050390611324565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061095c90849061160e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a69190611187565b60405180910390a361088f8484846104b1565b610559816109c5610793565b610d32565b6109d48282610670565b6105165760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a0d610793565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a5b8282610670565b156105165760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19169055610a92610793565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610ade610d96565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b11610793565b604051610b1e9190611168565b60405180910390a1565b6001600160a01b038216610b4e5760405162461bcd60e51b81526004016105039061157f565b610b5a60008383610d1f565b8060026000828254610b6c919061160e565b90915550506001600160a01b03821660009081526020819052604081208054839290610b9990849061160e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bdc908590611187565b60405180910390a3610516600083836104b1565b6001600160a01b038216610c165760405162461bcd60e51b815260040161050390611421565b610c2282600083610d1f565b6001600160a01b03821660009081526020819052604090205481811015610c5b5760405162461bcd60e51b815260040161050390611269565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c8a908490611645565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ccd908690611187565b60405180910390a36104b1836000846104b1565b610ce9610dbc565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b11610793565b610d27610dbc565b6104b1838383610de1565b610d3c8282610670565b61051657610d54816001600160a01b03166014610e11565b610d5f836020610e11565b604051602001610d709291906110f3565b60408051601f198184030181529082905262461bcd60e51b825261050391600401611190565b610d9e610639565b610dba5760405162461bcd60e51b81526004016105039061123b565b565b610dc4610639565b15610dba5760405162461bcd60e51b81526004016105039061136a565b610dec8383836104b1565b610df4610639565b156104b15760405162461bcd60e51b8152600401610503906115b6565b60606000610e20836002611626565b610e2b90600261160e565b67ffffffffffffffff811115610e5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e7b576020820181803683370190505b509050600360fc1b81600081518110610ea457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610ee157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610f05846002611626565b610f1090600161160e565b90505b6001811115610fa4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f5257634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610f7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610f9d81611688565b9050610f13565b508315610fc35760405162461bcd60e51b8152600401610503906111c3565b9392505050565b80356001600160a01b038116811461036f57600080fd5b600060208284031215610ff2578081fd5b610fc382610fca565b6000806040838503121561100d578081fd5b61101683610fca565b915061102460208401610fca565b90509250929050565b600080600060608486031215611041578081fd5b61104a84610fca565b925061105860208501610fca565b9150604084013590509250925092565b6000806040838503121561107a578182fd5b61108383610fca565b946020939093013593505050565b6000602082840312156110a2578081fd5b5035919050565b600080604083850312156110bb578182fd5b8235915061102460208401610fca565b6000602082840312156110dc578081fd5b81356001600160e01b031981168114610fc3578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161112b81601785016020880161165c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161115c81602884016020880161165c565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b60006020825282518060208401526111af81604085016020870161165c565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526016908201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604082015260600190565b60208082526016908201527521b0b63632b91034b9903737ba103090313ab93732b960511b604082015260600190565b602080825260139082015272496e73756666696369656e7420737570706c7960681b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b60ff91909116815260200190565b60008219821115611621576116216116da565b500190565b6000816000190483118215151615611640576116406116da565b500290565b600082821015611657576116576116da565b500390565b60005b8381101561167757818101518382015260200161165f565b8381111561088f5750506000910152565b600081611697576116976116da565b506000190190565b6002810460018216806116b357607f821691505b602082108114156116d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122003c5c8a294a3cdd744d56ea82d7af6a05b6fa6a6c7d29c035bd7ffd16cd14e3c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003414747000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034147470000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): AGG
Arg [1] : _symbol (string): AGG
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 4147470000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4147470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
248:1207:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606:202:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2156:98:3;;;:::i;:::-;;;;;;;:::i;4433:197::-;;;;;;:::i;:::-;;:::i;3244:106::-;;;:::i;:::-;;;;;;;:::i;5192:286::-;;;;;;:::i;:::-;;:::i;4391:129:0:-;;;;;;:::i;:::-;;:::i;372:62:11:-;;;:::i;4816:145:0:-;;;;;;:::i;:::-;;:::i;:::-;;3093:91:3;;;:::i;:::-;;;;;;;:::i;441:66:11:-;;;:::i;5925:214:0:-;;;;;;:::i;:::-;;:::i;5873:234:3:-;;;;;;:::i;:::-;;:::i;1149:82:11:-;;;:::i;657:238::-;;;;;;:::i;:::-;;:::i;901:158::-;;;;;;:::i;:::-;;:::i;1615:84:2:-;;;:::i;3408:125:3:-;;;;;;:::i;:::-;;:::i;1065:78:11:-;;;:::i;2895:145:0:-;;;;;;:::i;:::-;;:::i;2367:102:3:-;;;:::i;2027:49:0:-;;;:::i;6594:427:3:-;;;;;;:::i;:::-;;:::i;3729:189::-;;;;;;:::i;:::-;;:::i;304:62:11:-;;;:::i;5241:147:0:-;;;;;;:::i;:::-;;:::i;3976:149:3:-;;;;;;:::i;:::-;;:::i;2606:202:0:-;2691:4;-1:-1:-1;;;;;;2714:47:0;;-1:-1:-1;;;2714:47:0;;:87;;;2765:36;2789:11;2765:23;:36::i;:::-;2707:94;;2606:202;;;;:::o;2156:98:3:-;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;4532:13;4548:12;:10;:12::i;:::-;4532:28;;4570:32;4579:5;4586:7;4595:6;4570:8;:32::i;:::-;-1:-1:-1;4619:4:3;;4433:197;-1:-1:-1;;;4433:197:3:o;3244:106::-;3331:12;;3244:106;:::o;5192:286::-;5319:4;5335:15;5353:12;:10;:12::i;:::-;5335:30;;5375:38;5391:4;5397:7;5406:6;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;-1:-1:-1;5467:4:3;;5192:286;-1:-1:-1;;;;5192:286:3:o;4391:129:0:-;4465:7;4491:12;;;:6;:12;;;;;:22;;;;4391:129::o;372:62:11:-;410:24;372:62;:::o;4816:145:0:-;4899:18;4912:4;4899:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;4929:25:::1;4940:4;4946:7;4929:10;:25::i;:::-;4816:145:::0;;;:::o;3093:91:3:-;3175:2;3093:91;:::o;441:66:11:-;478:29;441:66;:::o;5925:214:0:-;6031:12;:10;:12::i;:::-;-1:-1:-1;;;;;6020:23:0;:7;-1:-1:-1;;;;;6020:23:0;;6012:83;;;;-1:-1:-1;;;6012:83:0;;;;;;;:::i;:::-;;;;;;;;;6106:26;6118:4;6124:7;6106:11;:26::i;:::-;5925:214;;:::o;5873:234:3:-;5961:4;5977:13;5993:12;:10;:12::i;:::-;5977:28;;6015:64;6024:5;6031:7;6068:10;6040:25;6050:5;6057:7;6040:9;:25::i;:::-;:38;;;;:::i;:::-;6015:8;:64::i;1149:82:11:-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;1214:10:11::1;:8;:10::i;:::-;1149:82:::0;:::o;657:238::-;724:32;342:24;745:10;724:7;:32::i;:::-;716:67;;;;-1:-1:-1;;;716:67:11;;;;;;;:::i;:::-;478:29;810:13;:11;:13::i;:::-;801:22;;:6;:22;:::i;:::-;:36;;793:68;;;;-1:-1:-1;;;793:68:11;;;;;;;:::i;:::-;871:17;877:2;881:6;871:5;:17::i;901:158::-;957:32;410:24;978:10;957:7;:32::i;:::-;949:67;;;;-1:-1:-1;;;949:67:11;;;;;;;:::i;:::-;1026:26;1032:10;1044:7;1026:5;:26::i;1615:84:2:-;1685:7;;;;1615:84;:::o;3408:125:3:-;-1:-1:-1;;;;;3508:18:3;3482:7;3508:18;;;;;;;;;;;;3408:125::o;1065:78:11:-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;1128:8:11::1;:6;:8::i;2895:145:0:-:0;2981:4;3004:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;3004:29:0;;;;;;;;;;;;;;;2895:145::o;2367:102:3:-;2423:13;2455:7;2448:14;;;;;:::i;2027:49:0:-;2072:4;2027:49;:::o;6594:427:3:-;6687:4;6703:13;6719:12;:10;:12::i;:::-;6703:28;;6741:24;6768:25;6778:5;6785:7;6768:9;:25::i;:::-;6741:52;;6831:15;6811:16;:35;;6803:85;;;;-1:-1:-1;;;6803:85:3;;;;;;;:::i;:::-;6922:60;6931:5;6938:7;6966:15;6947:16;:34;6922:8;:60::i;3729:189::-;3808:4;3824:13;3840:12;:10;:12::i;:::-;3824:28;;3862;3872:5;3879:2;3883:6;3862:9;:28::i;304:62:11:-;342:24;304:62;:::o;5241:147:0:-;5325:18;5338:4;5325:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;5355:26:::1;5367:4;5373:7;5355:11;:26::i;3976:149:3:-:0;-1:-1:-1;;;;;4091:18:3;;;4065:7;4091:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3976:149::o;829:155:9:-;-1:-1:-1;;;;;;937:40:9;;-1:-1:-1;;;937:40:9;829:155;;;:::o;640:96:7:-;719:10;640:96;:::o;10110:370:3:-;-1:-1:-1;;;;;10241:19:3;;10233:68;;;;-1:-1:-1;;;10233:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10319:21:3;;10311:68;;;;-1:-1:-1;;;10311:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10390:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10441:32;;;;;10420:6;;10441:32;:::i;:::-;;;;;;;;10110:370;;;:::o;10761:441::-;10891:24;10918:25;10928:5;10935:7;10918:9;:25::i;:::-;10891:52;;-1:-1:-1;;10957:16:3;:37;10953:243;;11038:6;11018:16;:26;;11010:68;;;;-1:-1:-1;;;11010:68:3;;;;;;;:::i;:::-;11120:51;11129:5;11136:7;11164:6;11145:16;:25;11120:8;:51::i;:::-;10761:441;;;;:::o;7475:651::-;-1:-1:-1;;;;;7601:18:3;;7593:68;;;;-1:-1:-1;;;7593:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;7679:16:3;;7671:64;;;;-1:-1:-1;;;7671:64:3;;;;;;;:::i;:::-;7746:38;7767:4;7773:2;7777:6;7746:20;:38::i;:::-;-1:-1:-1;;;;;7817:15:3;;7795:19;7817:15;;;;;;;;;;;7850:21;;;;7842:72;;;;-1:-1:-1;;;7842:72:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;7948:15:3;;;:9;:15;;;;;;;;;;;7966:20;;;7948:38;;8006:13;;;;;;;;:23;;7980:6;;7948:9;8006:23;;7980:6;;8006:23;:::i;:::-;;;;;;;;8060:2;-1:-1:-1;;;;;8045:26:3;8054:4;-1:-1:-1;;;;;8045:26:3;;8064:6;8045:26;;;;;;:::i;:::-;;;;;;;;8082:37;8102:4;8108:2;8112:6;8082:19;:37::i;3334:103:0:-;3400:30;3411:4;3417:12;:10;:12::i;:::-;3400:10;:30::i;7474:233::-;7557:22;7565:4;7571:7;7557;:22::i;:::-;7552:149;;7595:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7595:29:0;;;;;;;;;:36;;-1:-1:-1;;7595:36:0;7627:4;7595:36;;;7677:12;:10;:12::i;:::-;-1:-1:-1;;;;;7650:40:0;7668:7;-1:-1:-1;;;;;7650:40:0;7662:4;7650:40;;;;;;;;;;7474:233;;:::o;7878:234::-;7961:22;7969:4;7975:7;7961;:22::i;:::-;7957:149;;;8031:5;7999:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7999:29:0;;;;;;;;;:37;;-1:-1:-1;;7999:37:0;;;8082:12;:10;:12::i;:::-;-1:-1:-1;;;;;8055:40:0;8073:7;-1:-1:-1;;;;;8055:40:0;8067:4;8055:40;;;;;;;;;;7878:234;;:::o;2433:117:2:-;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;2491:15:2::1;::::0;;2521:22:::1;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;8402:389:3:-;-1:-1:-1;;;;;8485:21:3;;8477:65;;;;-1:-1:-1;;;8477:65:3;;;;;;;:::i;:::-;8553:49;8582:1;8586:7;8595:6;8553:20;:49::i;:::-;8629:6;8613:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8645:18:3;;:9;:18;;;;;;;;;;:28;;8667:6;;8645:9;:28;;8667:6;;8645:28;:::i;:::-;;;;-1:-1:-1;;8688:37:3;;-1:-1:-1;;;;;8688:37:3;;;8705:1;;8688:37;;;;8718:6;;8688:37;:::i;:::-;;;;;;;;8736:48;8764:1;8768:7;8777:6;8736:19;:48::i;9111:576::-;-1:-1:-1;;;;;9194:21:3;;9186:67;;;;-1:-1:-1;;;9186:67:3;;;;;;;:::i;:::-;9264:49;9285:7;9302:1;9306:6;9264:20;:49::i;:::-;-1:-1:-1;;;;;9349:18:3;;9324:22;9349:18;;;;;;;;;;;9385:24;;;;9377:71;;;;-1:-1:-1;;;9377:71:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;9482:18:3;;:9;:18;;;;;;;;;;9503:23;;;9482:44;;9546:12;:22;;9520:6;;9482:9;9546:22;;9520:6;;9546:22;:::i;:::-;;;;-1:-1:-1;;9584:37:3;;9610:1;;-1:-1:-1;;;;;9584:37:3;;;;;;;9614:6;;9584:37;:::i;:::-;;;;;;;;9632:48;9652:7;9669:1;9673:6;9632:19;:48::i;2186:115:2:-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;2245:14:2::1;2255:4;2245:14;::::0;;2274:20:::1;2281:12;:10;:12::i;1237:216:11:-:0;1239:19:2;:17;:19::i;:::-;1399:47:11::1;1426:5;1433:3;1438:7;1399:26;:47::i;3718:492:0:-:0;3806:22;3814:4;3820:7;3806;:22::i;:::-;3801:403;;3989:41;4017:7;-1:-1:-1;;;;;3989:41:0;4027:2;3989:19;:41::i;:::-;4101:38;4129:4;4136:2;4101:19;:38::i;:::-;3896:265;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3896:265:0;;;;;;;;;;-1:-1:-1;;;3844:349:0;;;;;;;:::i;1945:106:2:-;2011:8;:6;:8::i;:::-;2003:41;;;;-1:-1:-1;;;2003:41:2;;;;;;;:::i;:::-;1945:106::o;1767:::-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:2;;;;;;;:::i;665:264:5:-;803:44;830:4;836:2;840:6;803:26;:44::i;:::-;867:8;:6;:8::i;:::-;866:9;858:64;;;;-1:-1:-1;;;858:64:5;;;;;;;:::i;1652:441:8:-;1727:13;1752:19;1784:10;1788:6;1784:1;:10;:::i;:::-;:14;;1797:1;1784:14;:::i;:::-;1774:25;;;;;;-1:-1:-1;;;1774:25:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1774:25:8;;1752:47;;-1:-1:-1;;;1809:6:8;1816:1;1809:9;;;;;;-1:-1:-1;;;1809:9:8;;;;;;;;;;;;:15;-1:-1:-1;;;;;1809:15:8;;;;;;;;;-1:-1:-1;;;1834:6:8;1841:1;1834:9;;;;;;-1:-1:-1;;;1834:9:8;;;;;;;;;;;;:15;-1:-1:-1;;;;;1834:15:8;;;;;;;;-1:-1:-1;1864:9:8;1876:10;1880:6;1876:1;:10;:::i;:::-;:14;;1889:1;1876:14;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;-1:-1:-1;;;1943:5:8;1951:3;1943:11;1930:25;;;;;-1:-1:-1;;;1930:25:8;;;;;;;;;;;;1918:6;1925:1;1918:9;;;;;;-1:-1:-1;;;1918:9:8;;;;;;;;;;;;:37;-1:-1:-1;;;;;1918:37:8;;;;;;;;-1:-1:-1;1979:1:8;1969:11;;;;;1899:3;;;:::i;:::-;;;1859:132;;;-1:-1:-1;2008:10:8;;2000:55;;;;-1:-1:-1;;;2000:55:8;;;;;;;:::i;:::-;2079:6;1652:441;-1:-1:-1;;;1652:441:8:o;14:175:14:-;84:20;;-1:-1:-1;;;;;133:31:14;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:14:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:14;;1364:120;-1:-1:-1;1364:120:14:o;1489:266::-;;;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1639:6;1631;1624:22;1586:2;1680:9;1667:23;1657:33;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;1760:306::-;;1871:2;1859:9;1850:7;1846:23;1842:32;1839:2;;;1892:6;1884;1877:22;1839:2;1923:23;;-1:-1:-1;;;;;;1975:32:14;;1965:43;;1955:2;;2027:6;2019;2012:22;2266:786;;2677:25;2672:3;2665:38;2732:6;2726:13;2748:62;2803:6;2798:2;2793:3;2789:12;2782:4;2774:6;2770:17;2748:62;:::i;:::-;-1:-1:-1;;;2869:2:14;2829:16;;;2861:11;;;2854:40;2919:13;;2941:63;2919:13;2990:2;2982:11;;2975:4;2963:17;;2941:63;:::i;:::-;3024:17;3043:2;3020:26;;2655:397;-1:-1:-1;;;;2655:397:14:o;3057:203::-;-1:-1:-1;;;;;3221:32:14;;;;3203:51;;3191:2;3176:18;;3158:102::o;3265:187::-;3430:14;;3423:22;3405:41;;3393:2;3378:18;;3360:92::o;3457:177::-;3603:25;;;3591:2;3576:18;;3558:76::o;3639:383::-;;3788:2;3777:9;3770:21;3820:6;3814:13;3863:6;3858:2;3847:9;3843:18;3836:34;3879:66;3938:6;3933:2;3922:9;3918:18;3913:2;3905:6;3901:15;3879:66;:::i;:::-;4006:2;3985:15;-1:-1:-1;;3981:29:14;3966:45;;;;4013:2;3962:54;;3760:262;-1:-1:-1;;3760:262:14:o;4027:356::-;4229:2;4211:21;;;4248:18;;;4241:30;4307:34;4302:2;4287:18;;4280:62;4374:2;4359:18;;4201:182::o;4388:399::-;4590:2;4572:21;;;4629:2;4609:18;;;4602:30;4668:34;4663:2;4648:18;;4641:62;-1:-1:-1;;;4734:2:14;4719:18;;4712:33;4777:3;4762:19;;4562:225::o;4792:344::-;4994:2;4976:21;;;5033:2;5013:18;;;5006:30;-1:-1:-1;;;5067:2:14;5052:18;;5045:50;5127:2;5112:18;;4966:170::o;5141:398::-;5343:2;5325:21;;;5382:2;5362:18;;;5355:30;5421:34;5416:2;5401:18;;5394:62;-1:-1:-1;;;5487:2:14;5472:18;;5465:32;5529:3;5514:19;;5315:224::o;5544:398::-;5746:2;5728:21;;;5785:2;5765:18;;;5758:30;5824:34;5819:2;5804:18;;5797:62;-1:-1:-1;;;5890:2:14;5875:18;;5868:32;5932:3;5917:19;;5718:224::o;5947:353::-;6149:2;6131:21;;;6188:2;6168:18;;;6161:30;6227:31;6222:2;6207:18;;6200:59;6291:2;6276:18;;6121:179::o;6305:402::-;6507:2;6489:21;;;6546:2;6526:18;;;6519:30;6585:34;6580:2;6565:18;;6558:62;-1:-1:-1;;;6651:2:14;6636:18;;6629:36;6697:3;6682:19;;6479:228::o;6712:340::-;6914:2;6896:21;;;6953:2;6933:18;;;6926:30;-1:-1:-1;;;6987:2:14;6972:18;;6965:46;7043:2;7028:18;;6886:166::o;7057:346::-;7259:2;7241:21;;;7298:2;7278:18;;;7271:30;-1:-1:-1;;;7332:2:14;7317:18;;7310:52;7394:2;7379:18;;7231:172::o;7408:346::-;7610:2;7592:21;;;7649:2;7629:18;;;7622:30;-1:-1:-1;;;7683:2:14;7668:18;;7661:52;7745:2;7730:18;;7582:172::o;7759:343::-;7961:2;7943:21;;;8000:2;7980:18;;;7973:30;-1:-1:-1;;;8034:2:14;8019:18;;8012:49;8093:2;8078:18;;7933:169::o;8107:397::-;8309:2;8291:21;;;8348:2;8328:18;;;8321:30;8387:34;8382:2;8367:18;;8360:62;-1:-1:-1;;;8453:2:14;8438:18;;8431:31;8494:3;8479:19;;8281:223::o;8509:401::-;8711:2;8693:21;;;8750:2;8730:18;;;8723:30;8789:34;8784:2;8769:18;;8762:62;-1:-1:-1;;;8855:2:14;8840:18;;8833:35;8900:3;8885:19;;8683:227::o;8915:400::-;9117:2;9099:21;;;9156:2;9136:18;;;9129:30;9195:34;9190:2;9175:18;;9168:62;-1:-1:-1;;;9261:2:14;9246:18;;9239:34;9305:3;9290:19;;9089:226::o;9320:401::-;9522:2;9504:21;;;9561:2;9541:18;;;9534:30;9600:34;9595:2;9580:18;;9573:62;-1:-1:-1;;;9666:2:14;9651:18;;9644:35;9711:3;9696:19;;9494:227::o;9726:411::-;9928:2;9910:21;;;9967:2;9947:18;;;9940:30;10006:34;10001:2;9986:18;;9979:62;-1:-1:-1;;;10072:2:14;10057:18;;10050:45;10127:3;10112:19;;9900:237::o;10142:355::-;10344:2;10326:21;;;10383:2;10363:18;;;10356:30;10422:33;10417:2;10402:18;;10395:61;10488:2;10473:18;;10316:181::o;10502:406::-;10704:2;10686:21;;;10743:2;10723:18;;;10716:30;10782:34;10777:2;10762:18;;10755:62;-1:-1:-1;;;10848:2:14;10833:18;;10826:40;10898:3;10883:19;;10676:232::o;11095:184::-;11267:4;11255:17;;;;11237:36;;11225:2;11210:18;;11192:87::o;11284:128::-;;11355:1;11351:6;11348:1;11345:13;11342:2;;;11361:18;;:::i;:::-;-1:-1:-1;11397:9:14;;11332:80::o;11417:168::-;;11523:1;11519;11515:6;11511:14;11508:1;11505:21;11500:1;11493:9;11486:17;11482:45;11479:2;;;11530:18;;:::i;:::-;-1:-1:-1;11570:9:14;;11469:116::o;11590:125::-;;11658:1;11655;11652:8;11649:2;;;11663:18;;:::i;:::-;-1:-1:-1;11700:9:14;;11639:76::o;11720:258::-;11792:1;11802:113;11816:6;11813:1;11810:13;11802:113;;;11892:11;;;11886:18;11873:11;;;11866:39;11838:2;11831:10;11802:113;;;11933:6;11930:1;11927:13;11924:2;;;-1:-1:-1;;11968:1:14;11950:16;;11943:27;11773:205::o;11983:136::-;;12050:5;12040:2;;12059:18;;:::i;:::-;-1:-1:-1;;;12095:18:14;;12030:89::o;12124:380::-;12209:1;12199:12;;12256:1;12246:12;;;12267:2;;12321:4;12313:6;12309:17;12299:27;;12267:2;12374;12366:6;12363:14;12343:18;12340:38;12337:2;;;12420:10;12415:3;12411:20;12408:1;12401:31;12455:4;12452:1;12445:15;12483:4;12480:1;12473:15;12337:2;;12179:325;;;:::o;12509:127::-;12570:10;12565:3;12561:20;12558:1;12551:31;12601:4;12598:1;12591:15;12625:4;12622:1;12615:15
Swarm Source
ipfs://03c5c8a294a3cdd744d56ea82d7af6a05b6fa6a6c7d29c035bd7ffd16cd14e3c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.