More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 112 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Tokens | 20813505 | 71 days ago | IN | 0 ETH | 0.00253654 | ||||
Set Allocation | 20278269 | 146 days ago | IN | 0 ETH | 0.00092455 | ||||
Set Allocation | 20238710 | 151 days ago | IN | 0 ETH | 0.00201444 | ||||
Set Allocation | 20195654 | 157 days ago | IN | 0 ETH | 0.00036001 | ||||
Set Allocation | 20182279 | 159 days ago | IN | 0 ETH | 0.00097118 | ||||
Set Allocation | 20147336 | 164 days ago | IN | 0 ETH | 0.00064515 | ||||
Set Allocation | 20084344 | 173 days ago | IN | 0 ETH | 0.00235377 | ||||
Set Allocation | 20061847 | 176 days ago | IN | 0 ETH | 0.00161144 | ||||
Set Allocation | 20054574 | 177 days ago | IN | 0 ETH | 0.00146848 | ||||
Set Allocation | 19938369 | 193 days ago | IN | 0 ETH | 0.0015551 | ||||
Set Allocation | 19897352 | 199 days ago | IN | 0 ETH | 0.00060155 | ||||
Set Allocation | 19889927 | 200 days ago | IN | 0 ETH | 0.00104893 | ||||
Set Allocation | 19870850 | 203 days ago | IN | 0 ETH | 0.00096903 | ||||
Set Allocation | 19847088 | 206 days ago | IN | 0 ETH | 0.00088977 | ||||
Set Allocation | 19811269 | 211 days ago | IN | 0 ETH | 0.00099446 | ||||
Set Allocation | 19796628 | 213 days ago | IN | 0 ETH | 0.0008582 | ||||
Set Allocation | 19763281 | 218 days ago | IN | 0 ETH | 0.00136767 | ||||
Set Allocation | 19738233 | 221 days ago | IN | 0 ETH | 0.00141501 | ||||
Set Allocation | 19727292 | 223 days ago | IN | 0 ETH | 0.00224472 | ||||
Set Allocation | 19710883 | 225 days ago | IN | 0 ETH | 0.00157625 | ||||
Set Allocation | 19703371 | 226 days ago | IN | 0 ETH | 0.00119059 | ||||
Set Allocation | 19695602 | 227 days ago | IN | 0 ETH | 0.00124208 | ||||
Set Allocation | 19626562 | 237 days ago | IN | 0 ETH | 0.00461694 | ||||
Set Allocation | 19626450 | 237 days ago | IN | 0 ETH | 0.00387852 | ||||
Set Allocation | 19626419 | 237 days ago | IN | 0 ETH | 0.00363576 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18339692 | 417 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
TokenVesting
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./TokenContract.sol"; contract TokenVesting is AccessControl { TokenContract public token; uint256 private constant MONTH = 30 days; uint256 private constant YEAR = 12 * MONTH; uint256 private constant DECIMAL_FACTOR = 10 ** 18; uint256 private constant SIZE_OF_ALLOCATIONS = 8; /// Constant public member variables uint256 public constant SUPPLY = 1000000000 * DECIMAL_FACTOR; uint256 public constant CANCELATION_PERIOD = 1 days; bytes32 public constant DISTRIBUTOR_ROLE = keccak256('DISTRIBUTOR_ROLE'); bytes32 public constant SALE_ROLE = keccak256('SALE_ROLE'); uint256 public availableAmount = SUPPLY; uint256 public grandTotalClaimed = 0; AllocationStructure[SIZE_OF_ALLOCATIONS] private _allocationTypes; mapping(address => Allocation) private _allocations; address[] private _allocatedAddresses; enum AllocationState { NotAllocated, Allocated, Canceled } enum AllocationType { Ecosystem, Advisors, Marketing, Partners, Presale, Private1, Private2, Public } struct AllocationStructure { uint256 lockupPeriod; uint256 vesting; uint256 totalAmount; uint256 availableAmount; } struct Allocation { AllocationType allocationType; uint256 allocationTime; uint256 amount; uint256 amountClaimed; AllocationState state; } event NewAllocation(address indexed recipient, AllocationType indexed allocationType, uint256 amount); event TokenClaimed(address indexed recipient, AllocationType indexed allocationType, uint256 amountClaimed); event CancelAllocation(address indexed recipient); event BurnAllocation(AllocationType indexed allocationType, uint256 amount); constructor() { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _initAllocationTypes(); _checkAllocations(); token = new TokenContract(); } function setAllocation(address recipient_, uint256 amount_, AllocationType allocationType_) public { require(address(0x0) != recipient_, 'Recipient address cannot be 0x0'); require(0 < amount_, 'Allocated amount must be greater than 0'); _checkRole(_msgSender(), allocationType_); Allocation storage a = _allocations[recipient_]; require(AllocationState.Allocated != a.state, 'Recipient already has allocation'); if (AllocationState.NotAllocated == a.state) { _allocatedAddresses.push(recipient_); } a.allocationType = allocationType_; a.allocationTime = block.timestamp; a.amount = amount_; a.state = AllocationState.Allocated; _allocationTypes[uint256(allocationType_)].availableAmount -= amount_; availableAmount -= amount_; emit NewAllocation(recipient_, allocationType_, amount_); } /// Sets allocation for the given recipient with corresponding amount. function burn(AllocationType allocationType_) public { require(AllocationType.Presale == allocationType_ || AllocationType.Private1 == allocationType_ || AllocationType.Private2 == allocationType_ || AllocationType.Public == allocationType_, "Burnable only Presale, Private1, Private2, Public"); _checkRole(_msgSender(), allocationType_); uint256 i = uint256(allocationType_); if (0 != _allocationTypes[i].availableAmount) { token.burn(_allocationTypes[i].availableAmount); availableAmount -= _allocationTypes[i].availableAmount; emit BurnAllocation(allocationType_, _allocationTypes[i].availableAmount); _allocationTypes[i].availableAmount = 0; } } /// Cancels allocation for the given recipient function cancelAllocation(address recipient_) public { Allocation storage a = _allocations[recipient_]; _checkRole(_msgSender(), a.allocationType); require(AllocationState.Allocated == a.state, 'There is no allocation'); require(0 == a.amountClaimed, 'Cannot cancel allocation with claimed tokens'); require(block.timestamp < a.allocationTime + CANCELATION_PERIOD, 'Cancellation period expired'); a.state = AllocationState.Canceled; availableAmount += a.amount; _allocationTypes[uint256(a.allocationType)].availableAmount += a.amount; emit CancelAllocation(recipient_); } function claimTokens(address recipient_) public { Allocation storage a = _allocations[recipient_]; require(AllocationState.Allocated == a.state, 'There is no allocation for the recipient'); require(a.amountClaimed < a.amount, 'Allocations have already been transferred'); AllocationStructure storage at = _allocationTypes[uint256(a.allocationType)]; uint256 newPercentage = 0; if (a.allocationType == AllocationType.Ecosystem) { uint256 october1_2024 = 1727730000; if (block.timestamp >= october1_2024) { uint256 periodsAfterOctober = (block.timestamp - october1_2024) / (10 * MONTH); newPercentage = 25 * (periodsAfterOctober + 1); if (newPercentage > 100) { newPercentage = 100; } } } else if (a.allocationType == AllocationType.Marketing) { uint256 september23_2024 = 1727049600; if (block.timestamp >= september23_2024) { uint256 quartersAfterSeptember = (block.timestamp - september23_2024) / (3 * MONTH); newPercentage = 10 + (30 * quartersAfterSeptember); if (newPercentage > 100) { newPercentage = 100; } } } else if (a.allocationType == AllocationType.Public) { uint256 september23_2024 = 1727049600; if (block.timestamp >= september23_2024) { newPercentage = 100; } } else { if (block.timestamp > a.allocationTime + at.lockupPeriod) { if (block.timestamp > a.allocationTime + at.lockupPeriod + at.vesting) { newPercentage = 100; } else { uint256 timeSinceLockupEnd = block.timestamp - (a.allocationTime + at.lockupPeriod); uint256 monthsSinceLockupEnd = timeSinceLockupEnd / MONTH; newPercentage = 10 + (10 * monthsSinceLockupEnd); if (newPercentage > 100) { newPercentage = 100; } } } } uint256 newAmountClaimed = a.amount; if (newPercentage < 100) { newAmountClaimed = a.amount * newPercentage / 100; } require(newAmountClaimed > a.amountClaimed, 'Tokens for this period are already transferred'); uint256 tokensToTransfer = newAmountClaimed - a.amountClaimed; require(token.transfer(recipient_, tokensToTransfer), 'Cannot transfer tokens'); grandTotalClaimed += tokensToTransfer; a.amountClaimed = newAmountClaimed; emit TokenClaimed(recipient_, a.allocationType, tokensToTransfer); } function canClaimTokens(address recipient_) public view returns (bool) { Allocation storage a = _allocations[recipient_]; if (a.state != AllocationState.Allocated) { return false; } uint256 newPercentage = 0; if (a.allocationType == AllocationType.Ecosystem) { uint256 october1_2024 = 1727730000; if (block.timestamp >= october1_2024) { uint256 periodsAfterOctober = (block.timestamp - october1_2024) / (10 * MONTH); newPercentage = 25 * (periodsAfterOctober + 1); if (newPercentage > 100) { newPercentage = 100; } } } else if (a.allocationType == AllocationType.Marketing || a.allocationType == AllocationType.Public) { uint256 september23_2024 = 1727049600; if (block.timestamp >= september23_2024) { uint256 quartersAfterSeptember = (block.timestamp - september23_2024) / (3 * MONTH); newPercentage = 10 + (30 * quartersAfterSeptember); if (newPercentage > 100) { newPercentage = 100; } } } else { AllocationStructure storage at = _allocationTypes[uint256(a.allocationType)]; if (block.timestamp > a.allocationTime + at.lockupPeriod) { if (block.timestamp > a.allocationTime + at.lockupPeriod + at.vesting) { newPercentage = 100; } else { uint256 timeSinceLockupEnd = block.timestamp - (a.allocationTime + at.lockupPeriod); uint256 monthsSinceLockupEnd = timeSinceLockupEnd / MONTH; newPercentage = 10 + (10 * monthsSinceLockupEnd); if (newPercentage > 100) { newPercentage = 100; } } } } uint256 newAmountClaimed = a.amount * newPercentage / 100; return newAmountClaimed > a.amountClaimed; } function refundTokens(address recipientAddress_, address erc20Address_) external { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), 'Must have admin role to refund'); require(erc20Address_ != address(token), 'Cannot refund tokens'); ERC20 erc20 = ERC20(erc20Address_); uint256 balance = erc20.balanceOf(address(this)); require(erc20.transfer(recipientAddress_, balance), 'Cannot transfer tokens'); } function refund(address payable recipientAddress_) external payable { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), 'Must have admin role to refund'); recipientAddress_.transfer(address(this).balance); } function allocatedAddresses() view external returns(address[] memory) { return _allocatedAddresses; } function allocationTypes() view external returns(AllocationStructure[SIZE_OF_ALLOCATIONS] memory) { return _allocationTypes; } function allocation(address address_) view external returns(AllocationType allocationType, uint256 allocationTime, uint256 amount, uint256 amountClaimed, AllocationState state) { allocationType = _allocations[address_].allocationType; allocationTime = _allocations[address_].allocationTime; amount = _allocations[address_].amount; amountClaimed = _allocations[address_].amountClaimed; state = _allocations[address_].state; } function _initAllocationTypes() private { _allocationTypes[uint256(AllocationType.Ecosystem)] = AllocationStructure( 0, 30 * MONTH, 570000000 * DECIMAL_FACTOR, 570000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Advisors)] = AllocationStructure( 1 * YEAR, 10 * MONTH, 30000000 * DECIMAL_FACTOR, 30000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Partners)] = AllocationStructure( 1 * YEAR, 10 * MONTH, 50000000 * DECIMAL_FACTOR, 50000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Marketing)] = AllocationStructure( 0, 3 * MONTH, 100000000 * DECIMAL_FACTOR, 100000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Presale)] = AllocationStructure( 1 * YEAR, 10 * MONTH, 60000000 * DECIMAL_FACTOR, 60000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Private1)] = AllocationStructure( 1 * YEAR, 10 * MONTH, 80000000 * DECIMAL_FACTOR, 80000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Private2)] = AllocationStructure( 1 * YEAR, 10 * MONTH, 100000000 * DECIMAL_FACTOR, 100000000 * DECIMAL_FACTOR ); _allocationTypes[uint256(AllocationType.Public)] = AllocationStructure( 0, 0, 10000000 * DECIMAL_FACTOR, 10000000 * DECIMAL_FACTOR ); } function _checkAllocations() view private { uint256 sum = 0; for (uint256 i = 0; i < SIZE_OF_ALLOCATIONS; ++i) { sum += _allocationTypes[i].totalAmount; } require(SUPPLY == sum, 'Invalid allocation types'); } function _checkRole(address sender_, AllocationType allocationType_) view private { if (AllocationType.Ecosystem == allocationType_ || AllocationType.Marketing == allocationType_ || AllocationType.Advisors == allocationType_ || AllocationType.Partners == allocationType_) { require(hasRole(DISTRIBUTOR_ROLE, sender_), 'Must have role'); } else if (AllocationType.Private1 == allocationType_ || AllocationType.Private2 == allocationType_ || AllocationType.Public == allocationType_ || AllocationType.Presale == allocationType_) { require(hasRole(SALE_ROLE, sender_), 'Must have role'); } else { require(false, 'Unsupported allocation type'); } } function getAvailableTokensForCategory(AllocationType allocationType_) public view returns (uint256) { return _allocationTypes[uint256(allocationType_)].availableAmount; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TokenContract is ERC20, ERC20Burnable, Ownable { constructor() ERC20("Findex Token", "FNDX") { _mint(msg.sender, 1000000000 * 10 ** 18); } mapping(address => bool) private blacklist; function isOwner(address userAddress) public view returns (bool) { return userAddress == owner(); } function blacklistAccount(address _address, bool blacklisted) external onlyOwner { blacklist[_address] = blacklisted; } function isBlacklisted(address _address) public view returns (bool) { return blacklist[_address]; } function burnBlackFunds(address _address) external onlyOwner { require(blacklist[_address], "Address is not blacklisted"); uint256 balance = balanceOf(_address); _burn(_address, balance); } function transfer(address recipient, uint256 amount) public override returns (bool) { require(!blacklist[msg.sender], "Sender is blacklisted"); require(!blacklist[recipient], "Recipient is blacklisted"); return super.transfer(recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { require(!blacklist[sender], "Sender is blacklisted"); require(!blacklist[recipient], "Recipient is blacklisted"); return super.transferFrom(sender, recipient, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => 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(account), " 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 (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 (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 (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// 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 (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 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.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// 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.9.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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"enum TokenVesting.AllocationType","name":"allocationType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnAllocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"CancelAllocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"enum TokenVesting.AllocationType","name":"allocationType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewAllocation","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":"recipient","type":"address"},{"indexed":true,"internalType":"enum TokenVesting.AllocationType","name":"allocationType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amountClaimed","type":"uint256"}],"name":"TokenClaimed","type":"event"},{"inputs":[],"name":"CANCELATION_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocatedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"allocation","outputs":[{"internalType":"enum TokenVesting.AllocationType","name":"allocationType","type":"uint8"},{"internalType":"uint256","name":"allocationTime","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amountClaimed","type":"uint256"},{"internalType":"enum TokenVesting.AllocationState","name":"state","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocationTypes","outputs":[{"components":[{"internalType":"uint256","name":"lockupPeriod","type":"uint256"},{"internalType":"uint256","name":"vesting","type":"uint256"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"availableAmount","type":"uint256"}],"internalType":"struct TokenVesting.AllocationStructure[8]","name":"","type":"tuple[8]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum TokenVesting.AllocationType","name":"allocationType_","type":"uint8"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"}],"name":"canClaimTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"}],"name":"cancelAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TokenVesting.AllocationType","name":"allocationType_","type":"uint8"}],"name":"getAvailableTokensForCategory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grandTotalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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 payable","name":"recipientAddress_","type":"address"}],"name":"refund","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipientAddress_","type":"address"},{"internalType":"address","name":"erc20Address_","type":"address"}],"name":"refundTokens","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":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"enum TokenVesting.AllocationType","name":"allocationType_","type":"uint8"}],"name":"setAllocation","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":"token","outputs":[{"internalType":"contract TokenContract","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526200001c670de0b6b3a7640000633b9aca00620006a4565b60025560006003553480156200003157600080fd5b506200003f600033620000a5565b62000049620000b5565b6200005362000510565b604051620000619062000680565b604051809103906000f0801580156200007e573d6000803e3d6000fd5b50600180546001600160a01b0319166001600160a01b039290921691909117905562000706565b620000b18282620005cd565b5050565b60405180608001604052806000815260200162278d00601e620000d99190620006a4565b8152602001620000f6670de0b6b3a76400006321f98280620006a4565b815260200162000113670de0b6b3a76400006321f98280620006a4565b905280516004556020810151600555604080820151600655606090910151600755805160808101909152806200014e62278d00600c620006a4565b6200015b906001620006a4565b81526020016200017062278d00600a620006a4565b81526020016200018d670de0b6b3a76400006301c9c380620006a4565b8152602001620001aa670de0b6b3a76400006301c9c380620006a4565b905280516008556020810151600955604080820151600a55606090910151600b5580516080810190915280620001e562278d00600c620006a4565b620001f2906001620006a4565b81526020016200020762278d00600a620006a4565b815260200162000224670de0b6b3a76400006302faf080620006a4565b815260200162000241670de0b6b3a76400006302faf080620006a4565b905280516010556020808201516011556040808301516012556060909201516013558151608081019092526000825281016200028262278d006003620006a4565b81526020016200029f670de0b6b3a76400006305f5e100620006a4565b8152602001620002bc670de0b6b3a76400006305f5e100620006a4565b90528051600c9081556020820151600d55604080830151600e55606090920151600f558151608081019092528190620002fa9062278d0090620006a4565b62000307906001620006a4565b81526020016200031c62278d00600a620006a4565b815260200162000339670de0b6b3a76400006303938700620006a4565b815260200162000356670de0b6b3a76400006303938700620006a4565b905280516014556020810151601555604080820151601655606090910151601755805160808101909152806200039162278d00600c620006a4565b6200039e906001620006a4565b8152602001620003b362278d00600a620006a4565b8152602001620003d0670de0b6b3a76400006304c4b400620006a4565b8152602001620003ed670de0b6b3a76400006304c4b400620006a4565b905280516018556020810151601955604080820151601a55606090910151601b55805160808101909152806200042862278d00600c620006a4565b62000435906001620006a4565b81526020016200044a62278d00600a620006a4565b815260200162000467670de0b6b3a76400006305f5e100620006a4565b815260200162000484670de0b6b3a76400006305f5e100620006a4565b90528051601c55602080820151601d55604080830151601e55606090920151601f558151608081018352600080825291810191909152908101620004d4670de0b6b3a764000062989680620006a4565b8152602001620004f0670de0b6b3a764000062989680620006a4565b905280516020908155810151602155604081015160225560600151602355565b6000805b60088110156200055e5760048160088110620005345762000534620006be565b600402016002015482620005499190620006d4565b91506200055681620006ea565b905062000514565b508062000578670de0b6b3a7640000633b9aca00620006a4565b14620005ca5760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420616c6c6f636174696f6e2074797065730000000000000000604482015260640160405180910390fd5b50565b620005d9828262000655565b620000b1576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620006113390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff165b92915050565b61127b806200282a83390190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200067a576200067a6200068e565b634e487b7160e01b600052603260045260246000fd5b808201808211156200067a576200067a6200068e565b600060018201620006ff57620006ff6200068e565b5060010190565b61211480620007166000396000f3fe6080604052600436106101665760003560e01c806391f7cfb9116100d1578063d547741f1161008a578063e8f6061811610064578063e8f606181461045c578063f0bd87cc14610490578063fa89401a146104c4578063fc0c546a146104d757600080fd5b8063d547741f14610405578063d54bdada14610425578063df8de3e71461043c57600080fd5b806391f7cfb91461032457806392d2f1181461033a5780639377530f1461035a578063a217fddf14610370578063b81b863014610385578063c50497ae146103f057600080fd5b806336568abe1161012357806336568abe1461026257806357f1935f146102825780637a1d3261146102a257806384d504bc146102c25780638c97fd41146102e257806391d148541461030457600080fd5b806301ffc9a71461016b5780630b4a2638146101a05780630edea513146101c25780631435e397146101f0578063248a9ca3146102125780632f2ff15d14610242575b600080fd5b34801561017757600080fd5b5061018b610186366004611cde565b61050f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610546565b6040516101979190611d08565b3480156101ce57600080fd5b506101e26101dd366004611d71565b6105bb565b604051908152602001610197565b3480156101fc57600080fd5b5061021061020b366004611da1565b6105f0565b005b34801561021e57600080fd5b506101e261022d366004611ddf565b60009081526020819052604090206001015490565b34801561024e57600080fd5b5061021061025d366004611df8565b61089f565b34801561026e57600080fd5b5061021061027d366004611df8565b6108c9565b34801561028e57600080fd5b5061021061029d366004611e28565b610947565b3480156102ae57600080fd5b506102106102bd366004611e56565b610b22565b3480156102ce57600080fd5b5061018b6102dd366004611e56565b610d23565b3480156102ee57600080fd5b506102f7610f6f565b6040516101979190611e73565b34801561031057600080fd5b5061018b61031f366004611df8565b610fd1565b34801561033057600080fd5b506101e260025481565b34801561034657600080fd5b50610210610355366004611d71565b610ffa565b34801561036657600080fd5b506101e260035481565b34801561037c57600080fd5b506101e2600081565b34801561039157600080fd5b506103df6103a0366004611e56565b6001600160a01b03166000908152602460205260409020805460018201546002830154600384015460049094015460ff93841695929491939192911690565b604051610197959493929190611ed6565b3480156103fc57600080fd5b506101e2611241565b34801561041157600080fd5b50610210610420366004611df8565b61125a565b34801561043157600080fd5b506101e26201518081565b34801561044857600080fd5b50610210610457366004611e56565b61127f565b34801561046857600080fd5b506101e27f4913d4da5605218c48834fed44bccb6bdddd90d4fdf48923cf059a07f6fe4a7781565b34801561049c57600080fd5b506101e27ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c81565b6102106104d2366004611e56565b61174a565b3480156104e357600080fd5b506001546104f7906001600160a01b031681565b6040516001600160a01b039091168152602001610197565b60006001600160e01b03198216637965db0b60e01b148061054057506301ffc9a760e01b6001600160e01b03198316145b92915050565b61054e611c8d565b604080516101008101909152600460086000835b828210156105b25783826004020160405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505081526020019060010190610562565b50505050905090565b600060048260078111156105d1576105d1611ec0565b600881106105e1576105e1611f1f565b60040201600301549050919050565b6001600160a01b03831660000361064e5760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420616464726573732063616e6e6f74206265203078300060448201526064015b60405180910390fd5b816000106106ae5760405162461bcd60e51b815260206004820152602760248201527f416c6c6f636174656420616d6f756e74206d75737420626520677265617465726044820152660207468616e20360cc1b6064820152608401610645565b6106b9335b826117d6565b6001600160a01b0383166000908152602460205260409020600481015460ff1660028111156106ea576106ea611ec0565b6001036107395760405162461bcd60e51b815260206004820181905260248201527f526563697069656e7420616c72656164792068617320616c6c6f636174696f6e6044820152606401610645565b600481015460ff16600281111561075257610752611ec0565b6000036107a557602580546001810182556000919091527f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c0180546001600160a01b0319166001600160a01b0386161790555b80548290829060ff191660018360078111156107c3576107c3611ec0565b0217905550426001808301919091556002820184905560048201805460ff1916828002179055508260048360078111156107ff576107ff611ec0565b6008811061080f5761080f611f1f565b6004020160030160008282546108259190611f4b565b92505081905550826002600082825461083e9190611f4b565b90915550829050600781111561085657610856611ec0565b846001600160a01b03167ff06566bc20d37121f8822ea65cd542a0ee39fc7bfa84d71149b6e21691d749618560405161089191815260200190565b60405180910390a350505050565b6000828152602081905260409020600101546108ba81611989565b6108c48383611996565b505050565b6001600160a01b03811633146109395760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610645565b6109438282611a1a565b5050565b610952600033610fd1565b61099e5760405162461bcd60e51b815260206004820152601e60248201527f4d75737420686176652061646d696e20726f6c6520746f20726566756e6400006044820152606401610645565b6001546001600160a01b03908116908216036109f35760405162461bcd60e51b815260206004820152601460248201527343616e6e6f7420726566756e6420746f6b656e7360601b6044820152606401610645565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a609190611f5e565b60405163a9059cbb60e01b81526001600160a01b038681166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190611f77565b610b1c5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74207472616e7366657220746f6b656e7360501b6044820152606401610645565b50505050565b6001600160a01b0381166000908152602460205260409020610b4833825460ff166117d6565b600481015460ff166002811115610b6157610b61611ec0565b600114610ba95760405162461bcd60e51b81526020600482015260166024820152752a3432b9329034b99037379030b63637b1b0ba34b7b760511b6044820152606401610645565b600381015415610c105760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742063616e63656c20616c6c6f636174696f6e207769746820636c60448201526b61696d656420746f6b656e7360a01b6064820152608401610645565b620151808160010154610c239190611f99565b4210610c715760405162461bcd60e51b815260206004820152601b60248201527f43616e63656c6c6174696f6e20706572696f64206578706972656400000000006044820152606401610645565b6004810180546002919060ff19166001830217905550806002015460026000828254610c9d9190611f99565b90915550506002810154815460049060ff166007811115610cc057610cc0611ec0565b60088110610cd057610cd0611f1f565b600402016003016000828254610ce69190611f99565b90915550506040516001600160a01b038316907f097c85f05ca1be6094e91c6c259c23ab8fb09f92e404cae48238a589df51110190600090a25050565b6001600160a01b03811660009081526024602052604081206001600482015460ff166002811115610d5657610d56611ec0565b14610d645750600092915050565b600080825460ff166007811115610d7d57610d7d611ec0565b03610de2576366fb1150428111610ddc576000610d9e62278d00600a611fac565b610da88342611f4b565b610db29190611fc3565b9050610dbf816001611f99565b610dca906019611fac565b92506064831115610dda57606492505b505b50610f40565b6002825460ff166007811115610dfa57610dfa611ec0565b1480610e1b57506007825460ff166007811115610e1957610e19611ec0565b145b15610e68576366f0af80428111610ddc576000610e3c62278d006003611fac565b610e468342611f4b565b610e509190611fc3565b9050610e5d81601e611fac565b610dca90600a611f99565b815460009060049060ff166007811115610e8457610e84611ec0565b60088110610e9457610e94611f1f565b6004020180546001850154919250610eab91611f99565b421115610f3e57806001015481600001548460010154610ecb9190611f99565b610ed59190611f99565b421115610ee55760649150610f3e565b80546001840154600091610ef891611f99565b610f029042611f4b565b90506000610f1362278d0083611fc3565b9050610f2081600a611fac565b610f2b90600a611f99565b93506064841115610f3b57606493505b50505b505b60006064828460020154610f549190611fac565b610f5e9190611fc3565b600390930154909211949350505050565b60606025805480602002602001604051908101604052809291908181526020018280548015610fc757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fa9575b5050505050905090565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b80600781111561100c5761100c611ec0565b6004148061102b575080600781111561102757611027611ec0565b6005145b80611047575080600781111561104357611043611ec0565b6006145b80611063575080600781111561105f5761105f611ec0565b6007145b6110c95760405162461bcd60e51b815260206004820152603160248201527f4275726e61626c65206f6e6c792050726573616c652c2050726976617465312c6044820152702050726976617465322c205075626c696360781b6064820152608401610645565b6110d2336106b3565b60008160078111156110e6576110e6611ec0565b9050600481600881106110fb576110fb611f1f565b6004020160030154600014610943576001546001600160a01b03166342966c686004836008811061112e5761112e611f1f565b60040201600301546040518263ffffffff1660e01b815260040161115491815260200190565b600060405180830381600087803b15801561116e57600080fd5b505af1158015611182573d6000803e3d6000fd5b505050506004816008811061119957611199611f1f565b6004020160030154600260008282546111b29190611f4b565b9091555082905060078111156111ca576111ca611ec0565b7fced28ad908846118174ca4bd6d6525acd0b578914f7bf1666695204105be7bb1600483600881106111fe576111fe611f1f565b600402016003015460405161121591815260200190565b60405180910390a260006004826008811061123257611232611f1f565b60040201600301819055505050565b611257670de0b6b3a7640000633b9aca00611fac565b81565b60008281526020819052604090206001015461127581611989565b6108c48383611a1a565b6001600160a01b0381166000908152602460205260409020600481015460ff1660028111156112b0576112b0611ec0565b6001146113105760405162461bcd60e51b815260206004820152602860248201527f5468657265206973206e6f20616c6c6f636174696f6e20666f722074686520726044820152671958da5c1a595b9d60c21b6064820152608401610645565b80600201548160030154106113795760405162461bcd60e51b815260206004820152602960248201527f416c6c6f636174696f6e73206861766520616c7265616479206265656e207472604482015268185b9cd9995c9c995960ba1b6064820152608401610645565b805460009060049060ff16600781111561139557611395611ec0565b600881106113a5576113a5611f1f565b600402019050600080835460ff1660078111156113c4576113c4611ec0565b03611429576366fb11504281116114235760006113e562278d00600a611fac565b6113ef8342611f4b565b6113f99190611fc3565b9050611406816001611f99565b611411906019611fac565b9250606483111561142157606492505b505b50611564565b6002835460ff16600781111561144157611441611ec0565b0361148e576366f0af8042811161142357600061146262278d006003611fac565b61146c8342611f4b565b6114769190611fc3565b905061148381601e611fac565b61141190600a611f99565b6007835460ff1660078111156114a6576114a6611ec0565b036114c1576366f0af80428111611423576064915050611564565b815460018401546114d29190611f99565b421115611564578160010154826000015484600101546114f29190611f99565b6114fc9190611f99565b42111561150b57506064611564565b8154600184015460009161151e91611f99565b6115289042611f4b565b9050600061153962278d0083611fc3565b905061154681600a611fac565b61155190600a611f99565b9250606483111561156157606492505b50505b600283015460648210156115915760648285600201546115849190611fac565b61158e9190611fc3565b90505b836003015481116115fb5760405162461bcd60e51b815260206004820152602e60248201527f546f6b656e7320666f72207468697320706572696f642061726520616c72656160448201526d191e481d1c985b9cd9995c9c995960921b6064820152608401610645565b600084600301548261160d9190611f4b565b60015460405163a9059cbb60e01b81526001600160a01b0389811660048301526024820184905292935091169063a9059cbb906044016020604051808303816000875af1158015611662573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116869190611f77565b6116cb5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74207472616e7366657220746f6b656e7360501b6044820152606401610645565b80600360008282546116dd9190611f99565b909155505060038501829055845460ff1660078111156116ff576116ff611ec0565b866001600160a01b03167f1d12ca5bb88e2675f6afdb0d101a8dcccb4795cdbf623114959614bec5c6525b8360405161173a91815260200190565b60405180910390a3505050505050565b611755600033610fd1565b6117a15760405162461bcd60e51b815260206004820152601e60248201527f4d75737420686176652061646d696e20726f6c6520746f20726566756e6400006044820152606401610645565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610943573d6000803e3d6000fd5b8060078111156117e8576117e8611ec0565b1580611805575080600781111561180157611801611ec0565b6002145b80611821575080600781111561181d5761181d611ec0565b6001145b8061183d575080600781111561183957611839611ec0565b6003145b156118a95761186c7ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c83610fd1565b6109435760405162461bcd60e51b815260206004820152600e60248201526d4d757374206861766520726f6c6560901b6044820152606401610645565b8060078111156118bb576118bb611ec0565b600514806118da57508060078111156118d6576118d6611ec0565b6006145b806118f657508060078111156118f2576118f2611ec0565b6007145b80611912575080600781111561190e5761190e611ec0565b6004145b156119415761186c7f4913d4da5605218c48834fed44bccb6bdddd90d4fdf48923cf059a07f6fe4a7783610fd1565b60405162461bcd60e51b815260206004820152601b60248201527f556e737570706f7274656420616c6c6f636174696f6e207479706500000000006044820152606401610645565b6119938133611a7f565b50565b6119a08282610fd1565b610943576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556119d63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611a248282610fd1565b15610943576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b611a898282610fd1565b61094357611a9681611ad8565b611aa1836020611aea565b604051602001611ab2929190612009565b60408051601f198184030181529082905262461bcd60e51b82526106459160040161207e565b60606105406001600160a01b03831660145b60606000611af9836002611fac565b611b04906002611f99565b67ffffffffffffffff811115611b1c57611b1c6120b1565b6040519080825280601f01601f191660200182016040528015611b46576020820181803683370190505b509050600360fc1b81600081518110611b6157611b61611f1f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611b9057611b90611f1f565b60200101906001600160f81b031916908160001a9053506000611bb4846002611fac565b611bbf906001611f99565b90505b6001811115611c37576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611bf357611bf3611f1f565b1a60f81b828281518110611c0957611c09611f1f565b60200101906001600160f81b031916908160001a90535060049490941c93611c30816120c7565b9050611bc2565b508315611c865760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610645565b9392505050565b6040518061010001604052806008905b611cc86040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200190600190039081611c9d5790505090565b600060208284031215611cf057600080fd5b81356001600160e01b031981168114611c8657600080fd5b6104008101818360005b6008811015611d545781518051845260208082015181860152604080830151908601526060918201519185019190915260809093019290910190600101611d12565b50505092915050565b803560088110611d6c57600080fd5b919050565b600060208284031215611d8357600080fd5b611c8682611d5d565b6001600160a01b038116811461199357600080fd5b600080600060608486031215611db657600080fd5b8335611dc181611d8c565b925060208401359150611dd660408501611d5d565b90509250925092565b600060208284031215611df157600080fd5b5035919050565b60008060408385031215611e0b57600080fd5b823591506020830135611e1d81611d8c565b809150509250929050565b60008060408385031215611e3b57600080fd5b8235611e4681611d8c565b91506020830135611e1d81611d8c565b600060208284031215611e6857600080fd5b8135611c8681611d8c565b6020808252825182820181905260009190848201906040850190845b81811015611eb45783516001600160a01b031683529284019291840191600101611e8f565b50909695505050505050565b634e487b7160e01b600052602160045260246000fd5b60a0810160088710611eea57611eea611ec0565b86825285602083015284604083015283606083015260038310611f0f57611f0f611ec0565b8260808301529695505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561054057610540611f35565b600060208284031215611f7057600080fd5b5051919050565b600060208284031215611f8957600080fd5b81518015158114611c8657600080fd5b8082018082111561054057610540611f35565b808202811582820484141761054057610540611f35565b600082611fe057634e487b7160e01b600052601260045260246000fd5b500490565b60005b83811015612000578181015183820152602001611fe8565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612041816017850160208801611fe5565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612072816028840160208801611fe5565b01602801949350505050565b602081526000825180602084015261209d816040850160208701611fe5565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b6000816120d6576120d6611f35565b50600019019056fea2646970667358221220b1ef8d7e3b3e8c911b5e0c9e7f740f355aa2da0f6d0459d0ea5dc4e918c0f8c464736f6c6343000813003360806040523480156200001157600080fd5b506040518060400160405280600c81526020016b2334b73232bc102a37b5b2b760a11b8152506040518060400160405280600481526020016308c9c88b60e31b815250816003908162000065919062000274565b50600462000074828262000274565b505050620000916200008b620000af60201b60201c565b620000b3565b620000a9336b033b2e3c9fd0803ce800000062000105565b62000368565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000174919062000340565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fb57607f821691505b6020821081036200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c810160208610156200024b5750805b601f850160051c820191505b818110156200026c5782815560010162000257565b505050505050565b81516001600160401b03811115620002905762000290620001d0565b620002a881620002a18454620001e6565b8462000222565b602080601f831160018114620002e05760008415620002c75750858301515b600019600386901b1c1916600185901b1785556200026c565b600085815260208120601f198616915b828110156200031157888601518255948401946001909101908401620002f0565b5085821015620003305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200036257634e487b7160e01b600052601160045260246000fd5b92915050565b610f0380620003786000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d71461026e578063a9059cbb14610281578063dd62ed3e14610294578063f2fde38b146102a7578063fe575a87146102ba57600080fd5b8063715018a61461021d57806379cc679014610225578063800c0384146102385780638da5cb5b1461024b57806395d89b411461026657600080fd5b80632f54bf6e116100f45780632f54bf6e146101ac578063313ce567146101bf57806339509351146101ce57806342966c68146101e157806370a08231146101f457600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd146101845780632d5a5d3414610197575b600080fd5b6101396102e6565b6040516101469190610cff565b60405180910390f35b61016261015d366004610d69565b610378565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610d93565b610392565b6101aa6101a5366004610dcf565b61046f565b005b6101626101ba366004610e0b565b6104a2565b60405160128152602001610146565b6101626101dc366004610d69565b6104d1565b6101aa6101ef366004610e26565b6104f3565b610176610202366004610e0b565b6001600160a01b031660009081526020819052604090205490565b6101aa610500565b6101aa610233366004610d69565b610514565b6101aa610246366004610e0b565b61052d565b6005546040516001600160a01b039091168152602001610146565b6101396105c0565b61016261027c366004610d69565b6105cf565b61016261028f366004610d69565b610655565b6101766102a2366004610e3f565b610722565b6101aa6102b5366004610e0b565b61074d565b6101626102c8366004610e0b565b6001600160a01b031660009081526006602052604090205460ff1690565b6060600380546102f590610e72565b80601f016020809104026020016040519081016040528092919081815260200182805461032190610e72565b801561036e5780601f106103435761010080835404028352916020019161036e565b820191906000526020600020905b81548152906001019060200180831161035157829003601f168201915b5050505050905090565b6000336103868185856107c3565b60019150505b92915050565b6001600160a01b03831660009081526006602052604081205460ff16156103f85760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064015b60405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561045c5760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b60448201526064016103ef565b6104678484846108e8565b949350505050565b610477610901565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60006104b66005546001600160a01b031690565b6001600160a01b0316826001600160a01b0316149050919050565b6000336103868185856104e48383610722565b6104ee9190610eac565b6107c3565b6104fd338261095b565b50565b610508610901565b6105126000610a85565b565b61051f823383610ad7565b610529828261095b565b5050565b610535610901565b6001600160a01b03811660009081526006602052604090205460ff1661059d5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f7420626c61636b6c697374656400000000000060448201526064016103ef565b6001600160a01b038116600090815260208190526040902054610529828261095b565b6060600480546102f590610e72565b600033816105dd8286610722565b90508381101561063d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ef565b61064a82868684036107c3565b506001949350505050565b3360009081526006602052604081205460ff16156106ad5760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064016103ef565b6001600160a01b03831660009081526006602052604090205460ff16156107115760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b60448201526064016103ef565b61071b8383610b51565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610755610901565b6001600160a01b0381166107ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ef565b6104fd81610a85565b6001600160a01b0383166108255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ef565b6001600160a01b0382166108865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000336108f6858285610ad7565b61064a858585610b5b565b6005546001600160a01b031633146105125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ef565b6001600160a01b0382166109bb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ef565b6001600160a01b03821660009081526020819052604090205481811015610a2f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ef565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108db565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610ae38484610722565b90506000198114610b4b5781811015610b3e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ef565b610b4b84848484036107c3565b50505050565b6000336103868185855b6001600160a01b038316610bbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ef565b6001600160a01b038216610c215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ef565b6001600160a01b03831660009081526020819052604090205481811015610c995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ef565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b4b565b600060208083528351808285015260005b81811015610d2c57858101830151858201604001528201610d10565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d6457600080fd5b919050565b60008060408385031215610d7c57600080fd5b610d8583610d4d565b946020939093013593505050565b600080600060608486031215610da857600080fd5b610db184610d4d565b9250610dbf60208501610d4d565b9150604084013590509250925092565b60008060408385031215610de257600080fd5b610deb83610d4d565b915060208301358015158114610e0057600080fd5b809150509250929050565b600060208284031215610e1d57600080fd5b61071b82610d4d565b600060208284031215610e3857600080fd5b5035919050565b60008060408385031215610e5257600080fd5b610e5b83610d4d565b9150610e6960208401610d4d565b90509250929050565b600181811c90821680610e8657607f821691505b602082108103610ea657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561038c57634e487b7160e01b600052601160045260246000fdfea2646970667358221220273939ae3995005743f324cce893a9cf572c29603e1e9ccc5c4f79c4acbb259764736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101665760003560e01c806391f7cfb9116100d1578063d547741f1161008a578063e8f6061811610064578063e8f606181461045c578063f0bd87cc14610490578063fa89401a146104c4578063fc0c546a146104d757600080fd5b8063d547741f14610405578063d54bdada14610425578063df8de3e71461043c57600080fd5b806391f7cfb91461032457806392d2f1181461033a5780639377530f1461035a578063a217fddf14610370578063b81b863014610385578063c50497ae146103f057600080fd5b806336568abe1161012357806336568abe1461026257806357f1935f146102825780637a1d3261146102a257806384d504bc146102c25780638c97fd41146102e257806391d148541461030457600080fd5b806301ffc9a71461016b5780630b4a2638146101a05780630edea513146101c25780631435e397146101f0578063248a9ca3146102125780632f2ff15d14610242575b600080fd5b34801561017757600080fd5b5061018b610186366004611cde565b61050f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610546565b6040516101979190611d08565b3480156101ce57600080fd5b506101e26101dd366004611d71565b6105bb565b604051908152602001610197565b3480156101fc57600080fd5b5061021061020b366004611da1565b6105f0565b005b34801561021e57600080fd5b506101e261022d366004611ddf565b60009081526020819052604090206001015490565b34801561024e57600080fd5b5061021061025d366004611df8565b61089f565b34801561026e57600080fd5b5061021061027d366004611df8565b6108c9565b34801561028e57600080fd5b5061021061029d366004611e28565b610947565b3480156102ae57600080fd5b506102106102bd366004611e56565b610b22565b3480156102ce57600080fd5b5061018b6102dd366004611e56565b610d23565b3480156102ee57600080fd5b506102f7610f6f565b6040516101979190611e73565b34801561031057600080fd5b5061018b61031f366004611df8565b610fd1565b34801561033057600080fd5b506101e260025481565b34801561034657600080fd5b50610210610355366004611d71565b610ffa565b34801561036657600080fd5b506101e260035481565b34801561037c57600080fd5b506101e2600081565b34801561039157600080fd5b506103df6103a0366004611e56565b6001600160a01b03166000908152602460205260409020805460018201546002830154600384015460049094015460ff93841695929491939192911690565b604051610197959493929190611ed6565b3480156103fc57600080fd5b506101e2611241565b34801561041157600080fd5b50610210610420366004611df8565b61125a565b34801561043157600080fd5b506101e26201518081565b34801561044857600080fd5b50610210610457366004611e56565b61127f565b34801561046857600080fd5b506101e27f4913d4da5605218c48834fed44bccb6bdddd90d4fdf48923cf059a07f6fe4a7781565b34801561049c57600080fd5b506101e27ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c81565b6102106104d2366004611e56565b61174a565b3480156104e357600080fd5b506001546104f7906001600160a01b031681565b6040516001600160a01b039091168152602001610197565b60006001600160e01b03198216637965db0b60e01b148061054057506301ffc9a760e01b6001600160e01b03198316145b92915050565b61054e611c8d565b604080516101008101909152600460086000835b828210156105b25783826004020160405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505081526020019060010190610562565b50505050905090565b600060048260078111156105d1576105d1611ec0565b600881106105e1576105e1611f1f565b60040201600301549050919050565b6001600160a01b03831660000361064e5760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420616464726573732063616e6e6f74206265203078300060448201526064015b60405180910390fd5b816000106106ae5760405162461bcd60e51b815260206004820152602760248201527f416c6c6f636174656420616d6f756e74206d75737420626520677265617465726044820152660207468616e20360cc1b6064820152608401610645565b6106b9335b826117d6565b6001600160a01b0383166000908152602460205260409020600481015460ff1660028111156106ea576106ea611ec0565b6001036107395760405162461bcd60e51b815260206004820181905260248201527f526563697069656e7420616c72656164792068617320616c6c6f636174696f6e6044820152606401610645565b600481015460ff16600281111561075257610752611ec0565b6000036107a557602580546001810182556000919091527f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c0180546001600160a01b0319166001600160a01b0386161790555b80548290829060ff191660018360078111156107c3576107c3611ec0565b0217905550426001808301919091556002820184905560048201805460ff1916828002179055508260048360078111156107ff576107ff611ec0565b6008811061080f5761080f611f1f565b6004020160030160008282546108259190611f4b565b92505081905550826002600082825461083e9190611f4b565b90915550829050600781111561085657610856611ec0565b846001600160a01b03167ff06566bc20d37121f8822ea65cd542a0ee39fc7bfa84d71149b6e21691d749618560405161089191815260200190565b60405180910390a350505050565b6000828152602081905260409020600101546108ba81611989565b6108c48383611996565b505050565b6001600160a01b03811633146109395760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610645565b6109438282611a1a565b5050565b610952600033610fd1565b61099e5760405162461bcd60e51b815260206004820152601e60248201527f4d75737420686176652061646d696e20726f6c6520746f20726566756e6400006044820152606401610645565b6001546001600160a01b03908116908216036109f35760405162461bcd60e51b815260206004820152601460248201527343616e6e6f7420726566756e6420746f6b656e7360601b6044820152606401610645565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a609190611f5e565b60405163a9059cbb60e01b81526001600160a01b038681166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190611f77565b610b1c5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74207472616e7366657220746f6b656e7360501b6044820152606401610645565b50505050565b6001600160a01b0381166000908152602460205260409020610b4833825460ff166117d6565b600481015460ff166002811115610b6157610b61611ec0565b600114610ba95760405162461bcd60e51b81526020600482015260166024820152752a3432b9329034b99037379030b63637b1b0ba34b7b760511b6044820152606401610645565b600381015415610c105760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742063616e63656c20616c6c6f636174696f6e207769746820636c60448201526b61696d656420746f6b656e7360a01b6064820152608401610645565b620151808160010154610c239190611f99565b4210610c715760405162461bcd60e51b815260206004820152601b60248201527f43616e63656c6c6174696f6e20706572696f64206578706972656400000000006044820152606401610645565b6004810180546002919060ff19166001830217905550806002015460026000828254610c9d9190611f99565b90915550506002810154815460049060ff166007811115610cc057610cc0611ec0565b60088110610cd057610cd0611f1f565b600402016003016000828254610ce69190611f99565b90915550506040516001600160a01b038316907f097c85f05ca1be6094e91c6c259c23ab8fb09f92e404cae48238a589df51110190600090a25050565b6001600160a01b03811660009081526024602052604081206001600482015460ff166002811115610d5657610d56611ec0565b14610d645750600092915050565b600080825460ff166007811115610d7d57610d7d611ec0565b03610de2576366fb1150428111610ddc576000610d9e62278d00600a611fac565b610da88342611f4b565b610db29190611fc3565b9050610dbf816001611f99565b610dca906019611fac565b92506064831115610dda57606492505b505b50610f40565b6002825460ff166007811115610dfa57610dfa611ec0565b1480610e1b57506007825460ff166007811115610e1957610e19611ec0565b145b15610e68576366f0af80428111610ddc576000610e3c62278d006003611fac565b610e468342611f4b565b610e509190611fc3565b9050610e5d81601e611fac565b610dca90600a611f99565b815460009060049060ff166007811115610e8457610e84611ec0565b60088110610e9457610e94611f1f565b6004020180546001850154919250610eab91611f99565b421115610f3e57806001015481600001548460010154610ecb9190611f99565b610ed59190611f99565b421115610ee55760649150610f3e565b80546001840154600091610ef891611f99565b610f029042611f4b565b90506000610f1362278d0083611fc3565b9050610f2081600a611fac565b610f2b90600a611f99565b93506064841115610f3b57606493505b50505b505b60006064828460020154610f549190611fac565b610f5e9190611fc3565b600390930154909211949350505050565b60606025805480602002602001604051908101604052809291908181526020018280548015610fc757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fa9575b5050505050905090565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b80600781111561100c5761100c611ec0565b6004148061102b575080600781111561102757611027611ec0565b6005145b80611047575080600781111561104357611043611ec0565b6006145b80611063575080600781111561105f5761105f611ec0565b6007145b6110c95760405162461bcd60e51b815260206004820152603160248201527f4275726e61626c65206f6e6c792050726573616c652c2050726976617465312c6044820152702050726976617465322c205075626c696360781b6064820152608401610645565b6110d2336106b3565b60008160078111156110e6576110e6611ec0565b9050600481600881106110fb576110fb611f1f565b6004020160030154600014610943576001546001600160a01b03166342966c686004836008811061112e5761112e611f1f565b60040201600301546040518263ffffffff1660e01b815260040161115491815260200190565b600060405180830381600087803b15801561116e57600080fd5b505af1158015611182573d6000803e3d6000fd5b505050506004816008811061119957611199611f1f565b6004020160030154600260008282546111b29190611f4b565b9091555082905060078111156111ca576111ca611ec0565b7fced28ad908846118174ca4bd6d6525acd0b578914f7bf1666695204105be7bb1600483600881106111fe576111fe611f1f565b600402016003015460405161121591815260200190565b60405180910390a260006004826008811061123257611232611f1f565b60040201600301819055505050565b611257670de0b6b3a7640000633b9aca00611fac565b81565b60008281526020819052604090206001015461127581611989565b6108c48383611a1a565b6001600160a01b0381166000908152602460205260409020600481015460ff1660028111156112b0576112b0611ec0565b6001146113105760405162461bcd60e51b815260206004820152602860248201527f5468657265206973206e6f20616c6c6f636174696f6e20666f722074686520726044820152671958da5c1a595b9d60c21b6064820152608401610645565b80600201548160030154106113795760405162461bcd60e51b815260206004820152602960248201527f416c6c6f636174696f6e73206861766520616c7265616479206265656e207472604482015268185b9cd9995c9c995960ba1b6064820152608401610645565b805460009060049060ff16600781111561139557611395611ec0565b600881106113a5576113a5611f1f565b600402019050600080835460ff1660078111156113c4576113c4611ec0565b03611429576366fb11504281116114235760006113e562278d00600a611fac565b6113ef8342611f4b565b6113f99190611fc3565b9050611406816001611f99565b611411906019611fac565b9250606483111561142157606492505b505b50611564565b6002835460ff16600781111561144157611441611ec0565b0361148e576366f0af8042811161142357600061146262278d006003611fac565b61146c8342611f4b565b6114769190611fc3565b905061148381601e611fac565b61141190600a611f99565b6007835460ff1660078111156114a6576114a6611ec0565b036114c1576366f0af80428111611423576064915050611564565b815460018401546114d29190611f99565b421115611564578160010154826000015484600101546114f29190611f99565b6114fc9190611f99565b42111561150b57506064611564565b8154600184015460009161151e91611f99565b6115289042611f4b565b9050600061153962278d0083611fc3565b905061154681600a611fac565b61155190600a611f99565b9250606483111561156157606492505b50505b600283015460648210156115915760648285600201546115849190611fac565b61158e9190611fc3565b90505b836003015481116115fb5760405162461bcd60e51b815260206004820152602e60248201527f546f6b656e7320666f72207468697320706572696f642061726520616c72656160448201526d191e481d1c985b9cd9995c9c995960921b6064820152608401610645565b600084600301548261160d9190611f4b565b60015460405163a9059cbb60e01b81526001600160a01b0389811660048301526024820184905292935091169063a9059cbb906044016020604051808303816000875af1158015611662573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116869190611f77565b6116cb5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74207472616e7366657220746f6b656e7360501b6044820152606401610645565b80600360008282546116dd9190611f99565b909155505060038501829055845460ff1660078111156116ff576116ff611ec0565b866001600160a01b03167f1d12ca5bb88e2675f6afdb0d101a8dcccb4795cdbf623114959614bec5c6525b8360405161173a91815260200190565b60405180910390a3505050505050565b611755600033610fd1565b6117a15760405162461bcd60e51b815260206004820152601e60248201527f4d75737420686176652061646d696e20726f6c6520746f20726566756e6400006044820152606401610645565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610943573d6000803e3d6000fd5b8060078111156117e8576117e8611ec0565b1580611805575080600781111561180157611801611ec0565b6002145b80611821575080600781111561181d5761181d611ec0565b6001145b8061183d575080600781111561183957611839611ec0565b6003145b156118a95761186c7ffbd454f36a7e1a388bd6fc3ab10d434aa4578f811acbbcf33afb1c697486313c83610fd1565b6109435760405162461bcd60e51b815260206004820152600e60248201526d4d757374206861766520726f6c6560901b6044820152606401610645565b8060078111156118bb576118bb611ec0565b600514806118da57508060078111156118d6576118d6611ec0565b6006145b806118f657508060078111156118f2576118f2611ec0565b6007145b80611912575080600781111561190e5761190e611ec0565b6004145b156119415761186c7f4913d4da5605218c48834fed44bccb6bdddd90d4fdf48923cf059a07f6fe4a7783610fd1565b60405162461bcd60e51b815260206004820152601b60248201527f556e737570706f7274656420616c6c6f636174696f6e207479706500000000006044820152606401610645565b6119938133611a7f565b50565b6119a08282610fd1565b610943576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556119d63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611a248282610fd1565b15610943576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b611a898282610fd1565b61094357611a9681611ad8565b611aa1836020611aea565b604051602001611ab2929190612009565b60408051601f198184030181529082905262461bcd60e51b82526106459160040161207e565b60606105406001600160a01b03831660145b60606000611af9836002611fac565b611b04906002611f99565b67ffffffffffffffff811115611b1c57611b1c6120b1565b6040519080825280601f01601f191660200182016040528015611b46576020820181803683370190505b509050600360fc1b81600081518110611b6157611b61611f1f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611b9057611b90611f1f565b60200101906001600160f81b031916908160001a9053506000611bb4846002611fac565b611bbf906001611f99565b90505b6001811115611c37576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611bf357611bf3611f1f565b1a60f81b828281518110611c0957611c09611f1f565b60200101906001600160f81b031916908160001a90535060049490941c93611c30816120c7565b9050611bc2565b508315611c865760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610645565b9392505050565b6040518061010001604052806008905b611cc86040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200190600190039081611c9d5790505090565b600060208284031215611cf057600080fd5b81356001600160e01b031981168114611c8657600080fd5b6104008101818360005b6008811015611d545781518051845260208082015181860152604080830151908601526060918201519185019190915260809093019290910190600101611d12565b50505092915050565b803560088110611d6c57600080fd5b919050565b600060208284031215611d8357600080fd5b611c8682611d5d565b6001600160a01b038116811461199357600080fd5b600080600060608486031215611db657600080fd5b8335611dc181611d8c565b925060208401359150611dd660408501611d5d565b90509250925092565b600060208284031215611df157600080fd5b5035919050565b60008060408385031215611e0b57600080fd5b823591506020830135611e1d81611d8c565b809150509250929050565b60008060408385031215611e3b57600080fd5b8235611e4681611d8c565b91506020830135611e1d81611d8c565b600060208284031215611e6857600080fd5b8135611c8681611d8c565b6020808252825182820181905260009190848201906040850190845b81811015611eb45783516001600160a01b031683529284019291840191600101611e8f565b50909695505050505050565b634e487b7160e01b600052602160045260246000fd5b60a0810160088710611eea57611eea611ec0565b86825285602083015284604083015283606083015260038310611f0f57611f0f611ec0565b8260808301529695505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561054057610540611f35565b600060208284031215611f7057600080fd5b5051919050565b600060208284031215611f8957600080fd5b81518015158114611c8657600080fd5b8082018082111561054057610540611f35565b808202811582820484141761054057610540611f35565b600082611fe057634e487b7160e01b600052601260045260246000fd5b500490565b60005b83811015612000578181015183820152602001611fe8565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612041816017850160208801611fe5565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612072816028840160208801611fe5565b01602801949350505050565b602081526000825180602084015261209d816040850160208701611fe5565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b6000816120d6576120d6611f35565b50600019019056fea2646970667358221220b1ef8d7e3b3e8c911b5e0c9e7f740f355aa2da0f6d0459d0ea5dc4e918c0f8c464736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.