ERC-20
Overview
Max Total Supply
17,704 ELAB4EL
Holders
25
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x7Aa1BF2f...096bA387e The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AssetTokenEL
Compiler Version
v0.7.4+commit.3f05b770
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.7.4; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./EController.sol"; import "./IAssetToken.sol"; import "./AssetTokenBase.sol"; contract AssetTokenEL is IAssetTokenERC20, AssetTokenBase { using SafeMath for uint256; using AssetTokenLibrary for SpentLocalVars; using AssetTokenLibrary for AmountLocalVars; IERC20 private _el; /// @notice Emitted when an user claimed reward event RewardClaimed(address account, uint256 reward); constructor( IERC20 el_, IEController eController_, uint256 amount_, uint256 price_, uint256 rewardPerBlock_, uint256 payment_, uint256 latitude_, uint256 longitude_, uint256 assetPrice_, uint256 interestRate_, string memory name_, string memory symbol_, uint8 decimals_ ) AssetTokenBase( eController_, amount_, price_, rewardPerBlock_, payment_, latitude_, longitude_, assetPrice_, interestRate_, name_, symbol_, decimals_ ) { _el = el_; } /** * @dev purchase asset token with el. * * This can be used to purchase asset token with Elysia Token (EL). * * Requirements: * - `spent` msg.sender should have more spent. * - `spent` this contract should have more asset tokens amount calculated with spent. */ function purchase(uint256 spent) external override whenNotPaused { AmountLocalVars memory vars = AmountLocalVars({ spent: spent, currencyPrice: eController.getPrice(payment), assetTokenPrice: price }); uint256 amount = vars.getAmount(); _checkBalance(msg.sender, spent, address(this), amount); require( _el.transferFrom( msg.sender, address(this), spent ), "EL : transferFrom failed" ); _transfer(address(this), msg.sender, amount); } /** * @dev refund asset token. * * This can be used to refund asset token with Elysia Token (EL). * * Requirements: * - `amount` msg.sender should have more asset token than the amount. * - `amount` this contract should have more el than elAmount converted from the amount. */ function refund(uint256 amount) external override whenNotPaused { SpentLocalVars memory vars = SpentLocalVars({ amount: amount, currencyPrice: eController.getPrice(payment), assetTokenPrice: price }); uint256 spent = vars.getSpent(); _checkBalance(address(this), spent, msg.sender, amount); require( _el.transfer(msg.sender, spent), "EL : transfer failed" ); _transfer(msg.sender, address(this), amount); } /** * @dev Claim account reward. * * This can be used to claim account accumulated rewrard with Elysia Token (EL). * * Emits a {RewardClaimed} event. */ function claimReward() external override whenNotPaused { uint256 reward = getReward(msg.sender).mul(1e18).div(eController.getPrice(payment)); require( reward <= _el.balanceOf(address(this)), "AssetToken: Insufficient seller balance." ); _el.transfer(msg.sender, reward); _clearReward(msg.sender); emit RewardClaimed(msg.sender, reward); } /** * @dev check if buyer and seller have sufficient balance. * * This can be used to check balance of buyer and seller before swap. * * Requirements: * - `spent` should be positive. * - `spent` buyer should have spent token value than the spent. * - `amount` should be positive. * - `amount` seller should have more asset token balance than amount. */ function _checkBalance( address buyer, uint256 spent, address seller, uint256 amount ) internal view { require( spent > 0 && amount > 0, "AssetToken: Wrong spent or amount." ); require( _el.balanceOf(buyer) >= spent, "AssetToken: Insufficient buyer el balance." ); require( balanceOf(seller) >= amount, "AssetToken: Insufficient seller balance." ); } /** * @dev Withdraw all El from this contract to admin */ function withdrawToAdmin() public onlyAdmin(msg.sender) { _el.transfer(msg.sender, _el.balanceOf(address(this))); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./IEPriceOracle.sol"; import "./EPriceOracleEth.sol"; import "./IAssetToken.sol"; interface IEController { function getPrice(uint payment) external view returns (uint); function isAdmin(address account) external view returns (bool); } /** * @title Elysia's Asset Control layer * @notice Controll admin * @author Elysia */ contract EController is IEController, AccessControl { // AssetToken list IAssetTokenBase[] public assetTokenList; // 0: el, 1: eth, 2: wBTC ... mapping(uint256 => IEPriceOracle) public ePriceOracle; /// @notice Emitted when new priceOracle is set event NewPriceOracle(address ePriceOracle); /// @notice Emitted when new assetToken is set event NewAssetToken(address assetToken); constructor() { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(DEFAULT_ADMIN_ROLE, address(this)); } /*** Oracle View functions ***/ function getPrice(uint payment) external view override returns (uint256) { IEPriceOracle oracle = ePriceOracle[payment]; return oracle.getPrice(); } /*** Admin Functions on Setup ***/ /** * @notice Set EPriceoracle in each payment * @param ePriceOracle_ The address of the ePriceOracle to be enabled * @param payment The payment of price feed */ function setEPriceOracle(IEPriceOracle ePriceOracle_, uint256 payment) external onlyAdmin { ePriceOracle[payment] = ePriceOracle_; emit NewPriceOracle(address(ePriceOracle_)); } /** * @notice Add assets to be included in eController * @param assetTokens The list of addresses of the assetTokens to be enabled */ function setAssetTokens(IAssetTokenBase[] memory assetTokens) external onlyAdmin { uint256 len = assetTokens.length; for (uint256 i = 0; i < len; i++) { assetTokenList.push(assetTokens[i]); emit NewAssetToken(address(assetTokens[i])); } } function setAdmin(address account) external onlyAdmin { _setupRole(DEFAULT_ADMIN_ROLE, account); renounceRole(DEFAULT_ADMIN_ROLE, msg.sender); } function pauseAssetTokens(IAssetTokenBase[] memory assetTokens) public onlyAdmin { uint256 len = assetTokens.length; for (uint256 i = 0; i < len; i++) { assetTokens[i].pause(); } } function unpauseAssetTokens(IAssetTokenBase[] memory assetTokens) public onlyAdmin { uint256 len = assetTokens.length; for (uint256 i = 0; i < len; i++) { assetTokens[i].unpause(); } } /*** Access Controllers ***/ /// @dev Restricted to members of the admin role. modifier onlyAdmin() { require(_isAdmin(msg.sender), "Restricted to admin."); _; } /// @dev Return `true` if the account belongs to the admin role. function isAdmin(address account) external view override returns (bool) { return _isAdmin(account); } function _isAdmin(address account) internal view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, account); } }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; interface IAssetTokenBase { function setRewardPerBlock(uint256 rewardPerBlock_) external returns (bool); function pause() external; function unpause() external; function setEController(address eController) external; function getLatitude() external view returns (uint256); function getLongitude() external view returns (uint256); function getAssetPrice() external view returns (uint256); function getInterestRate() external view returns (uint256); function getPrice() external view returns (uint256); function getPayment() external view returns (uint256); } interface IAssetTokenERC20 { function purchase(uint256 spent) external; function refund(uint256 amount) external; function claimReward() external; } interface IAssetTokenEth { function purchase() external payable; function refund(uint256 amount) external; function claimReward() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Pausable.sol"; import "./IAssetToken.sol"; import "./IEPriceOracle.sol"; import "./EController.sol"; import "./Library.sol"; contract AssetTokenBase is IAssetTokenBase, ERC20, Pausable { using SafeMath for uint256; using AssetTokenLibrary for RewardLocalVars; IEController public eController; uint256 public latitude; uint256 public longitude; uint256 public assetPrice; uint256 public interestRate; // USD per Elysia Asset Token // decimals: 18 uint256 public price; // monthlyRent$/(secondsPerMonth*averageBlockPerSecond) // Decimals: 18 uint256 public rewardPerBlock; // 0: el, 1: eth, 2: wBTC ... uint256 public payment; // Account rewards (USD) // Decimals: 18 mapping(address => uint256) private _rewards; // Account block numbers mapping(address => uint256) private _blockNumbers; /// @notice Emitted when rewards per block is changed event NewRewardPerBlock(uint256 newRewardPerBlock); /// @notice Emitted when eController is changed event NewController(address newController); constructor( IEController eController_, uint256 amount_, uint256 price_, uint256 rewardPerBlock_, uint256 payment_, uint256 latitude_, uint256 longitude_, uint256 assetPrice_, uint256 interestRate_, string memory name_, string memory symbol_, uint8 decimals_ ) ERC20(name_, symbol_) { eController = eController_; price = price_; rewardPerBlock = rewardPerBlock_; payment = payment_; latitude = latitude_; longitude = longitude_; assetPrice = assetPrice_; interestRate = interestRate_; _mint(address(this), amount_); _setupDecimals(decimals_); } /*** View functions ***/ function getLatitude() external view override returns (uint256) { return latitude; } function getLongitude() external view override returns (uint256) { return longitude; } function getAssetPrice() external view override returns (uint256) { return assetPrice; } function getInterestRate() external view override returns (uint256) { return interestRate; } function getPrice() external view override returns (uint256) { return price; } function getPayment() external view override returns (uint256) { return payment; } /*** Admin functions ***/ function setEController(address newEController) external override onlyAdmin(msg.sender) { eController = IEController(newEController); emit NewController(address(eController)); } function setRewardPerBlock(uint256 rewardPerBlock_) external override onlyAdmin(msg.sender) returns (bool) { rewardPerBlock = rewardPerBlock_; emit NewRewardPerBlock(rewardPerBlock_); return true; } function pause() external override onlyAdmin(msg.sender) { _pause(); } function unpause() external override onlyAdmin(msg.sender) { _unpause(); } /*** Reward functions ***/ /** * @notice Get reward * @param account Addresss * @return saved reward + new reward */ function getReward(address account) public view returns (uint256) { RewardLocalVars memory vars = RewardLocalVars({ newReward: 0, accountReward: _rewards[account], accountBalance: balanceOf(account), rewardBlockNumber: _blockNumbers[account], blockNumber: block.number, diffBlock: 0, rewardPerBlock: rewardPerBlock, totalSupply: totalSupply() }); return vars.getReward(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); /* RewardManager */ _saveReward(from); _saveReward(to); } function _saveReward(address account) internal returns (bool) { if (account == address(this)) { return true; } _rewards[account] = getReward(account); _blockNumbers[account] = block.number; return true; } function _clearReward(address account) internal returns (bool) { _rewards[account] = 0; _blockNumbers[account] = block.number; return true; } /// @dev Restricted to members of the admin role. modifier onlyAdmin(address account) { require(eController.isAdmin(account), "Restricted to admin."); _; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @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 {_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) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @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 returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; interface IEPriceOracle { function getPrice() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; import "@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/SafeCast.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./IEPriceOracle.sol"; import "./Library.sol"; /** * @title Elysia's price feed * @notice implements chainlink price aggregator * @author Elysia */ contract EPriceOracleEth is IEPriceOracle { using SafeCast for int256; using SafeMath for uint256; address public admin; /// @notice Emitted when admin is changed event NewAdmin(address newAdmin); AggregatorV3Interface internal _priceFeed; constructor(address priceFeed_) { _priceFeed = AggregatorV3Interface(priceFeed_); admin = msg.sender; } function getPrice() external view override returns (uint256) { return _getEthPrice(); } function _getEthPrice() internal view returns (uint256) { ( uint80 roundID, int256 price, uint256 startedAt, uint256 timeStamp, uint80 answeredInRound ) = _priceFeed.latestRoundData(); return price.toUint256().mul(1e10); } function setAdmin(address account) external { require(msg.sender == admin, "Restricted to admin."); admin = account; emit NewAdmin(account); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity >=0.6.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { require(value < 2**255, "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT pragma solidity 0.7.4; import "@openzeppelin/contracts/math/SafeMath.sol"; struct RewardLocalVars { uint256 newReward; uint256 accountReward; uint256 accountBalance; uint256 rewardBlockNumber; uint256 blockNumber; uint256 diffBlock; uint256 rewardPerBlock; uint256 totalSupply; } struct SpentLocalVars { uint amount; uint256 currencyPrice; uint256 assetTokenPrice; } struct AmountLocalVars { uint256 spent; uint256 currencyPrice; uint256 assetTokenPrice; } library AssetTokenLibrary { using SafeMath for uint256; function getReward(RewardLocalVars memory self) internal pure returns (uint256) { if ( self.rewardBlockNumber != 0 && self.blockNumber > self.rewardBlockNumber ) { self.diffBlock = self.blockNumber.sub(self.rewardBlockNumber); self.newReward = self .accountBalance .mul(self.diffBlock) .mul(self.rewardPerBlock) .div(self.totalSupply); } return self.accountReward.add(self.newReward); } function getSpent(SpentLocalVars memory self) internal pure returns (uint) { return self.amount.mul(self.assetTokenPrice).div(self.currencyPrice); } function getAmount(AmountLocalVars memory self) internal pure returns (uint) { return self.spent.mul(self.currencyPrice).div(self.assetTokenPrice); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../GSN/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"el_","type":"address"},{"internalType":"contract IEController","name":"eController_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"uint256","name":"rewardPerBlock_","type":"uint256"},{"internalType":"uint256","name":"payment_","type":"uint256"},{"internalType":"uint256","name":"latitude_","type":"uint256"},{"internalType":"uint256","name":"longitude_","type":"uint256"},{"internalType":"uint256","name":"assetPrice_","type":"uint256"},{"internalType":"uint256","name":"interestRate_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newController","type":"address"}],"name":"NewController","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newRewardPerBlock","type":"uint256"}],"name":"NewRewardPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"assetPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eController","outputs":[{"internalType":"contract IEController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAssetPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatitude","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLongitude","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPayment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latitude","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"longitude","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"spent","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newEController","type":"address"}],"name":"setEController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardPerBlock_","type":"uint256"}],"name":"setRewardPerBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620029753803806200297583398181016040526101a08110156200003857600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b01516101208c01516101408d01805199519b9d9a9c989b979a96999598949793969295919483019291846401000000008211156200009f57600080fd5b908301906020820185811115620000b557600080fd5b8251640100000000811182820188101715620000d057600080fd5b82525081516020918201929091019080838360005b83811015620000ff578181015183820152602001620000e5565b50505050905090810190601f1680156200012d5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200015157600080fd5b9083019060208201858111156200016757600080fd5b82516401000000008111828201881017156200018257600080fd5b82525081516020918201929091019080838360005b83811015620001b157818101518382015260200162000197565b50505050905090810190601f168015620001df5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050508b8b8b8b8b8b8b8b8b8b8b8b82828160039080519060200190620002199291906200088a565b5080516200022f9060049060208401906200088a565b5050600580546001600160a01b038f166201000002610100600160b01b031960ff199092166012179190911617905550600a8a9055600b899055600c88905560068790556007869055600885905560098490556200028e308c620002df565b6200029981620003ee565b5050505050505050505050508c600f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550505050505050505050505050506200097b565b6001600160a01b0382166200033b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620003496000838362000404565b62000365816002546200043960201b620015481790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620003989183906200154862000439821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6005805460ff191660ff92909216919091179055565b6200041c8383836200049d60201b620009e71760201c565b6200042783620004a2565b506200043382620004a2565b50505050565b60008282018381101562000494576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b505050565b60006001600160a01b038216301415620004bf57506001620004f5565b620004ca82620004fa565b6001600160a01b0383166000908152600d6020908152604080832093909355600e9052204390555060015b919050565b6000620005066200091f565b604080516101008101825260008082526001600160a01b0386168152600d60209081529083902054908201529081016200054085620005a6565b81526001600160a01b0385166000908152600e60209081526040808320549184019190915243908301526060820152600b54608082015260a00162000584620005c1565b81525090506200059f81620005c760201b620015a21760201c565b9392505050565b6001600160a01b031660009081526020819052604090205490565b60025490565b60008160600151600014158015620005e6575081606001518260800151115b1562000676576200060e826060015183608001516200069460201b620016131790919060201c565b8260a0018181525050620006738260e001516200065f8460c001516200064b8660a001518760400151620006de60201b620016551790919060201c565b620006de60201b620016551790919060201c565b6200073c60201b620016ae1790919060201c565b82525b8151602080840151620004979290916200154862000439821b17901c565b60006200049483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200078660201b60201c565b600082620006ef5750600062000497565b82820282848281620006fd57fe5b0414620004945760405162461bcd60e51b8152600401808060200182810382526021815260200180620029546021913960400191505060405180910390fd5b60006200049483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200082160201b60201c565b60008184841115620008195760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620007dd578181015183820152602001620007c3565b50505050905090810190601f1680156200080b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183620008735760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620007dd578181015183820152602001620007c3565b5060008385816200088057fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620008c257600085556200090d565b82601f10620008dd57805160ff19168380011785556200090d565b828001600101855582156200090d579182015b828111156200090d578251825591602001919060010190620008f0565b506200091b92915062000964565b5090565b60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5b808211156200091b576000815560010162000965565b611fc9806200098b6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063ae7b6bd9116100ad578063c00007b01161007c578063c00007b0146104f9578063d24378eb1461051f578063dd62ed3e14610527578063e54f088014610555578063efef39a11461055d57610211565b8063ae7b6bd9146104c4578063b88a802f146104cc578063bb328a7d146104d4578063bb872b4a146104dc57610211565b806395d89b41116100f457806395d89b411461045457806398d5fdca1461045c578063a035b1fe14610464578063a457c2d71461046c578063a9059cbb1461049857610211565b806370a08231146104165780637c3a00fd1461043c5780638456cb59146104445780638ae39cac1461044c57610211565b806338cf97ba116101a85780634fd7d76a116101775780634fd7d76a146103ee5780635257b566146103f657806355b72f38146103fe578063589af69c146104065780635c975abb1461040e57610211565b806338cf97ba146103aa57806339509351146103b25780633f4ba83a146103de57806342f6487a146103e657610211565b806318160ddd116101e457806318160ddd1461031f57806323b872dd14610339578063278ecde11461036f578063313ce5671461038c57610211565b80630184dd861461021657806306fdde031461023e578063095ea7b3146102bb578063157185b3146102fb575b600080fd5b61023c6004803603602081101561022c57600080fd5b50356001600160a01b031661057a565b005b6102466106a8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610280578181015183820152602001610268565b50505050905090810190601f1680156102ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7600480360360408110156102d157600080fd5b506001600160a01b03813516906020013561073e565b604080519115158252519081900360200190f35b61030361075c565b604080516001600160a01b039092168252519081900360200190f35b610327610771565b60408051918252519081900360200190f35b6102e76004803603606081101561034f57600080fd5b506001600160a01b03813581169160208101359091169060400135610777565b61023c6004803603602081101561038557600080fd5b50356107fe565b6103946109ec565b6040805160ff9092168252519081900360200190f35b61023c6109f5565b6102e7600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610bb5565b61023c610c03565b610327610cd5565b610327610cdb565b610327610ce1565b610327610ce7565b610327610ced565b6102e7610cf3565b6103276004803603602081101561042c57600080fd5b50356001600160a01b0316610d01565b610327610d20565b61023c610d26565b610327610df5565b610246610dfb565b610327610e5c565b610327610e62565b6102e76004803603604081101561048257600080fd5b506001600160a01b038135169060200135610e68565b6102e7600480360360408110156104ae57600080fd5b506001600160a01b038135169060200135610ed0565b610327610ee4565b61023c610eea565b610327611168565b6102e7600480360360208110156104f257600080fd5b503561116e565b6103276004803603602081101561050f57600080fd5b50356001600160a01b0316611276565b610327611319565b6103276004803603604081101561053d57600080fd5b506001600160a01b038135811691602001351661131f565b61032761134a565b61023c6004803603602081101561057357600080fd5b5035611350565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b1580156105cd57600080fd5b505afa1580156105e1573d6000803e3d6000fd5b505050506040513d60208110156105f757600080fd5b5051610641576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600580546001600160a01b038085166201000090810262010000600160b01b03199093169290921792839055604080519290930416815290517fe253457d9ad994ca9682fc3bbc38c890dca73a2d5ecee3809e548bac8b00d7c69181900360200190a15050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600061075261074b6116f0565b84846116f4565b5060015b92915050565b6005546201000090046001600160a01b031681565b60025490565b60006107848484846117e0565b6107f4846107906116f0565b6107ef85604051806060016040528060288152602001611eb4602891396001600160a01b038a166000908152600160205260408120906107ce6116f0565b6001600160a01b03168152602081019190915260400160002054919061193b565b6116f4565b5060019392505050565b600554610100900460ff161561084e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610856611d97565b6040518060600160405280838152602001600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156108c257600080fd5b505afa1580156108d6573d6000803e3d6000fd5b505050506040513d60208110156108ec57600080fd5b50518152600a5460209091015290506000610906826119d2565b9050610914308233866119f7565b600f546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561096857600080fd5b505af115801561097c573d6000803e3d6000fd5b505050506040513d602081101561099257600080fd5b50516109dc576040805162461bcd60e51b81526020600482015260146024820152731153080e881d1c985b9cd9995c8819985a5b195960621b604482015290519081900360640190fd5b6109e73330856117e0565b505050565b60055460ff1690565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610a4857600080fd5b505afa158015610a5c573d6000803e3d6000fd5b505050506040513d6020811015610a7257600080fd5b5051610abc576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600f54604080516370a0823160e01b815230600482015290516001600160a01b039092169163a9059cbb91339184916370a08231916024808301926020929190829003018186803b158015610b1057600080fd5b505afa158015610b24573d6000803e3d6000fd5b505050506040513d6020811015610b3a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015610b8b57600080fd5b505af1158015610b9f573d6000803e3d6000fd5b505050506040513d60208110156109e757600080fd5b6000610752610bc26116f0565b846107ef8560016000610bd36116f0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611548565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610c5657600080fd5b505afa158015610c6a573d6000803e3d6000fd5b505050506040513d6020811015610c8057600080fd5b5051610cca576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b610cd2611b48565b50565b600c5481565b60065481565b60095490565b60075490565b60075481565b600554610100900460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b60095481565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d6020811015610da357600080fd5b5051610ded576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b610cd2611bec565b600b5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107345780601f1061070957610100808354040283529160200191610734565b600a5490565b600a5481565b6000610752610e756116f0565b846107ef85604051806060016040528060258152602001611f6f6025913960016000610e9f6116f0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061193b565b6000610752610edd6116f0565b84846117e0565b60065490565b600554610100900460ff1615610f3a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000610fe7600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f9a57600080fd5b505afa158015610fae573d6000803e3d6000fd5b505050506040513d6020811015610fc457600080fd5b5051610fe1670de0b6b3a7640000610fdb33611276565b90611655565b906116ae565b600f54604080516370a0823160e01b815230600482015290519293506001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561103557600080fd5b505afa158015611049573d6000803e3d6000fd5b505050506040513d602081101561105f57600080fd5b505181111561109f5760405162461bcd60e51b8152600401808060200182810382526028815260200180611f476028913960400191505060405180910390fd5b600f546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156110f357600080fd5b505af1158015611107573d6000803e3d6000fd5b505050506040513d602081101561111d57600080fd5b50611129905033611c74565b50604080513381526020810183905281517f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f7241929181900390910190a150565b600c5490565b60055460408051630935e01b60e21b8152336004820181905291516000936201000090046001600160a01b0316916324d7806c916024808301926020929190829003018186803b1580156111c157600080fd5b505afa1580156111d5573d6000803e3d6000fd5b505050506040513d60208110156111eb57600080fd5b5051611235576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600b8390556040805184815290517f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df9181900360200190a150600192915050565b6000611280611db8565b604080516101008101825260008082526001600160a01b0386168152600d60209081529083902054908201529081016112b885610d01565b8152602001600e6000866001600160a01b03166001600160a01b0316815260200190815260200160002054815260200143815260200160008152602001600b548152602001611305610771565b90529050611312816115a2565b9392505050565b60085481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085490565b600554610100900460ff16156113a0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6113a8611d97565b6040518060600160405280838152602001600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561141457600080fd5b505afa158015611428573d6000803e3d6000fd5b505050506040513d602081101561143e57600080fd5b50518152600a546020909101529050600061145882611ca0565b9050611466338430846119f7565b600f54604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156114c057600080fd5b505af11580156114d4573d6000803e3d6000fd5b505050506040513d60208110156114ea57600080fd5b505161153d576040805162461bcd60e51b815260206004820152601860248201527f454c203a207472616e7366657246726f6d206661696c65640000000000000000604482015290519081900360640190fd5b6109e73033836117e0565b600082820183811015611312576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081606001516000141580156115c0575081606001518260800151115b1561160357606082015160808301516115d891611613565b60a0830181905260e083015160c0840151604085015161160093610fe19291610fdb91611655565b82525b8151602083015161075691611548565b600061131283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061193b565b60008261166457506000610756565b8282028284828161167157fe5b04146113125760405162461bcd60e51b8152600401808060200182810382526021815260200180611e936021913960400191505060405180910390fd5b600061131283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cc5565b3390565b6001600160a01b0383166117395760405162461bcd60e51b8152600401808060200182810382526024815260200180611f236024913960400191505060405180910390fd5b6001600160a01b03821661177e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118255760405162461bcd60e51b8152600401808060200182810382526025815260200180611efe6025913960400191505060405180910390fd5b6001600160a01b03821661186a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611e286023913960400191505060405180910390fd5b611875838383611d2a565b6118b281604051806060016040528060268152602001611e6d602691396001600160a01b038616600090815260208190526040902054919061193b565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546118e19082611548565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156119ca5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561198f578181015183820152602001611977565b50505050905090810190601f1680156119bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006107568260200151610fe18460400151856000015161165590919063ffffffff16565b600083118015611a075750600081115b611a425760405162461bcd60e51b8152600401808060200182810382526022815260200180611edc6022913960400191505060405180910390fd5b600f54604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b158015611a9257600080fd5b505afa158015611aa6573d6000803e3d6000fd5b505050506040513d6020811015611abc57600080fd5b50511015611afb5760405162461bcd60e51b815260040180806020018281038252602a815260200180611dfe602a913960400191505060405180910390fd5b80611b0583610d01565b1015611b425760405162461bcd60e51b8152600401808060200182810382526028815260200180611f476028913960400191505060405180910390fd5b50505050565b600554610100900460ff16611b9b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bcf6116f0565b604080516001600160a01b039092168252519081900360200190a1565b600554610100900460ff1615611c3c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bcf6116f0565b6001600160a01b03166000908152600d60209081526040808320839055600e9091529020439055600190565b60006107568260400151610fe18460200151856000015161165590919063ffffffff16565b60008183611d145760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561198f578181015183820152602001611977565b506000838581611d2057fe5b0495945050505050565b611d358383836109e7565b611d3e83611d44565b50611b42825b60006001600160a01b038216301415611d5f57506001610d1b565b611d6882611276565b6001600160a01b0383166000908152600d6020908152604080832093909355600e905220439055506001919050565b60405180606001604052806000815260200160008152602001600081525090565b6040518061010001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152509056fe4173736574546f6b656e3a20496e73756666696369656e7420627579657220656c2062616c616e63652e45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654173736574546f6b656e3a2057726f6e67207370656e74206f7220616d6f756e742e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734173736574546f6b656e3a20496e73756666696369656e742073656c6c65722062616c616e63652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122007771aa5f05f5b1ada88ed90d1c644cdc85664fd04eb2c272042c93a51ccd46c64736f6c63430007040033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000002781246fe707bb15cee3e5ea354e2154a2877b160000000000000000000000005b1df4d7fac33b24a8def3499acae0347aab31a7000000000000000000000000000000000000000000000129736bf4a0c85c00000000000000000000000000000000000000000000000000004563918244f4000000000000000000000000000000000000000000000000000000032e42d7b48a2b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023c016b000000000000000000000000000000000000000000000000000000000790f77f0000000000000000000000000000000000000000000005cf411bc723e9cc0000000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000013454c595349415f41535345545f424c55455f32000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005454c414232000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063ae7b6bd9116100ad578063c00007b01161007c578063c00007b0146104f9578063d24378eb1461051f578063dd62ed3e14610527578063e54f088014610555578063efef39a11461055d57610211565b8063ae7b6bd9146104c4578063b88a802f146104cc578063bb328a7d146104d4578063bb872b4a146104dc57610211565b806395d89b41116100f457806395d89b411461045457806398d5fdca1461045c578063a035b1fe14610464578063a457c2d71461046c578063a9059cbb1461049857610211565b806370a08231146104165780637c3a00fd1461043c5780638456cb59146104445780638ae39cac1461044c57610211565b806338cf97ba116101a85780634fd7d76a116101775780634fd7d76a146103ee5780635257b566146103f657806355b72f38146103fe578063589af69c146104065780635c975abb1461040e57610211565b806338cf97ba146103aa57806339509351146103b25780633f4ba83a146103de57806342f6487a146103e657610211565b806318160ddd116101e457806318160ddd1461031f57806323b872dd14610339578063278ecde11461036f578063313ce5671461038c57610211565b80630184dd861461021657806306fdde031461023e578063095ea7b3146102bb578063157185b3146102fb575b600080fd5b61023c6004803603602081101561022c57600080fd5b50356001600160a01b031661057a565b005b6102466106a8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610280578181015183820152602001610268565b50505050905090810190601f1680156102ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7600480360360408110156102d157600080fd5b506001600160a01b03813516906020013561073e565b604080519115158252519081900360200190f35b61030361075c565b604080516001600160a01b039092168252519081900360200190f35b610327610771565b60408051918252519081900360200190f35b6102e76004803603606081101561034f57600080fd5b506001600160a01b03813581169160208101359091169060400135610777565b61023c6004803603602081101561038557600080fd5b50356107fe565b6103946109ec565b6040805160ff9092168252519081900360200190f35b61023c6109f5565b6102e7600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610bb5565b61023c610c03565b610327610cd5565b610327610cdb565b610327610ce1565b610327610ce7565b610327610ced565b6102e7610cf3565b6103276004803603602081101561042c57600080fd5b50356001600160a01b0316610d01565b610327610d20565b61023c610d26565b610327610df5565b610246610dfb565b610327610e5c565b610327610e62565b6102e76004803603604081101561048257600080fd5b506001600160a01b038135169060200135610e68565b6102e7600480360360408110156104ae57600080fd5b506001600160a01b038135169060200135610ed0565b610327610ee4565b61023c610eea565b610327611168565b6102e7600480360360208110156104f257600080fd5b503561116e565b6103276004803603602081101561050f57600080fd5b50356001600160a01b0316611276565b610327611319565b6103276004803603604081101561053d57600080fd5b506001600160a01b038135811691602001351661131f565b61032761134a565b61023c6004803603602081101561057357600080fd5b5035611350565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b1580156105cd57600080fd5b505afa1580156105e1573d6000803e3d6000fd5b505050506040513d60208110156105f757600080fd5b5051610641576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600580546001600160a01b038085166201000090810262010000600160b01b03199093169290921792839055604080519290930416815290517fe253457d9ad994ca9682fc3bbc38c890dca73a2d5ecee3809e548bac8b00d7c69181900360200190a15050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600061075261074b6116f0565b84846116f4565b5060015b92915050565b6005546201000090046001600160a01b031681565b60025490565b60006107848484846117e0565b6107f4846107906116f0565b6107ef85604051806060016040528060288152602001611eb4602891396001600160a01b038a166000908152600160205260408120906107ce6116f0565b6001600160a01b03168152602081019190915260400160002054919061193b565b6116f4565b5060019392505050565b600554610100900460ff161561084e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610856611d97565b6040518060600160405280838152602001600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156108c257600080fd5b505afa1580156108d6573d6000803e3d6000fd5b505050506040513d60208110156108ec57600080fd5b50518152600a5460209091015290506000610906826119d2565b9050610914308233866119f7565b600f546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561096857600080fd5b505af115801561097c573d6000803e3d6000fd5b505050506040513d602081101561099257600080fd5b50516109dc576040805162461bcd60e51b81526020600482015260146024820152731153080e881d1c985b9cd9995c8819985a5b195960621b604482015290519081900360640190fd5b6109e73330856117e0565b505050565b60055460ff1690565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610a4857600080fd5b505afa158015610a5c573d6000803e3d6000fd5b505050506040513d6020811015610a7257600080fd5b5051610abc576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600f54604080516370a0823160e01b815230600482015290516001600160a01b039092169163a9059cbb91339184916370a08231916024808301926020929190829003018186803b158015610b1057600080fd5b505afa158015610b24573d6000803e3d6000fd5b505050506040513d6020811015610b3a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015610b8b57600080fd5b505af1158015610b9f573d6000803e3d6000fd5b505050506040513d60208110156109e757600080fd5b6000610752610bc26116f0565b846107ef8560016000610bd36116f0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611548565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610c5657600080fd5b505afa158015610c6a573d6000803e3d6000fd5b505050506040513d6020811015610c8057600080fd5b5051610cca576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b610cd2611b48565b50565b600c5481565b60065481565b60095490565b60075490565b60075481565b600554610100900460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b60095481565b60055460408051630935e01b60e21b81523360048201819052915191926201000090046001600160a01b0316916324d7806c91602480820192602092909190829003018186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d6020811015610da357600080fd5b5051610ded576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b610cd2611bec565b600b5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107345780601f1061070957610100808354040283529160200191610734565b600a5490565b600a5481565b6000610752610e756116f0565b846107ef85604051806060016040528060258152602001611f6f6025913960016000610e9f6116f0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061193b565b6000610752610edd6116f0565b84846117e0565b60065490565b600554610100900460ff1615610f3a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000610fe7600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f9a57600080fd5b505afa158015610fae573d6000803e3d6000fd5b505050506040513d6020811015610fc457600080fd5b5051610fe1670de0b6b3a7640000610fdb33611276565b90611655565b906116ae565b600f54604080516370a0823160e01b815230600482015290519293506001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561103557600080fd5b505afa158015611049573d6000803e3d6000fd5b505050506040513d602081101561105f57600080fd5b505181111561109f5760405162461bcd60e51b8152600401808060200182810382526028815260200180611f476028913960400191505060405180910390fd5b600f546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156110f357600080fd5b505af1158015611107573d6000803e3d6000fd5b505050506040513d602081101561111d57600080fd5b50611129905033611c74565b50604080513381526020810183905281517f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f7241929181900390910190a150565b600c5490565b60055460408051630935e01b60e21b8152336004820181905291516000936201000090046001600160a01b0316916324d7806c916024808301926020929190829003018186803b1580156111c157600080fd5b505afa1580156111d5573d6000803e3d6000fd5b505050506040513d60208110156111eb57600080fd5b5051611235576040805162461bcd60e51b81526020600482015260146024820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604482015290519081900360640190fd5b600b8390556040805184815290517f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df9181900360200190a150600192915050565b6000611280611db8565b604080516101008101825260008082526001600160a01b0386168152600d60209081529083902054908201529081016112b885610d01565b8152602001600e6000866001600160a01b03166001600160a01b0316815260200190815260200160002054815260200143815260200160008152602001600b548152602001611305610771565b90529050611312816115a2565b9392505050565b60085481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085490565b600554610100900460ff16156113a0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6113a8611d97565b6040518060600160405280838152602001600560029054906101000a90046001600160a01b03166001600160a01b031663e7572230600c546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561141457600080fd5b505afa158015611428573d6000803e3d6000fd5b505050506040513d602081101561143e57600080fd5b50518152600a546020909101529050600061145882611ca0565b9050611466338430846119f7565b600f54604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156114c057600080fd5b505af11580156114d4573d6000803e3d6000fd5b505050506040513d60208110156114ea57600080fd5b505161153d576040805162461bcd60e51b815260206004820152601860248201527f454c203a207472616e7366657246726f6d206661696c65640000000000000000604482015290519081900360640190fd5b6109e73033836117e0565b600082820183811015611312576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081606001516000141580156115c0575081606001518260800151115b1561160357606082015160808301516115d891611613565b60a0830181905260e083015160c0840151604085015161160093610fe19291610fdb91611655565b82525b8151602083015161075691611548565b600061131283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061193b565b60008261166457506000610756565b8282028284828161167157fe5b04146113125760405162461bcd60e51b8152600401808060200182810382526021815260200180611e936021913960400191505060405180910390fd5b600061131283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cc5565b3390565b6001600160a01b0383166117395760405162461bcd60e51b8152600401808060200182810382526024815260200180611f236024913960400191505060405180910390fd5b6001600160a01b03821661177e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118255760405162461bcd60e51b8152600401808060200182810382526025815260200180611efe6025913960400191505060405180910390fd5b6001600160a01b03821661186a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611e286023913960400191505060405180910390fd5b611875838383611d2a565b6118b281604051806060016040528060268152602001611e6d602691396001600160a01b038616600090815260208190526040902054919061193b565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546118e19082611548565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156119ca5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561198f578181015183820152602001611977565b50505050905090810190601f1680156119bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006107568260200151610fe18460400151856000015161165590919063ffffffff16565b600083118015611a075750600081115b611a425760405162461bcd60e51b8152600401808060200182810382526022815260200180611edc6022913960400191505060405180910390fd5b600f54604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b158015611a9257600080fd5b505afa158015611aa6573d6000803e3d6000fd5b505050506040513d6020811015611abc57600080fd5b50511015611afb5760405162461bcd60e51b815260040180806020018281038252602a815260200180611dfe602a913960400191505060405180910390fd5b80611b0583610d01565b1015611b425760405162461bcd60e51b8152600401808060200182810382526028815260200180611f476028913960400191505060405180910390fd5b50505050565b600554610100900460ff16611b9b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bcf6116f0565b604080516001600160a01b039092168252519081900360200190a1565b600554610100900460ff1615611c3c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bcf6116f0565b6001600160a01b03166000908152600d60209081526040808320839055600e9091529020439055600190565b60006107568260400151610fe18460200151856000015161165590919063ffffffff16565b60008183611d145760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561198f578181015183820152602001611977565b506000838581611d2057fe5b0495945050505050565b611d358383836109e7565b611d3e83611d44565b50611b42825b60006001600160a01b038216301415611d5f57506001610d1b565b611d6882611276565b6001600160a01b0383166000908152600d6020908152604080832093909355600e905220439055506001919050565b60405180606001604052806000815260200160008152602001600081525090565b6040518061010001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152509056fe4173736574546f6b656e3a20496e73756666696369656e7420627579657220656c2062616c616e63652e45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654173736574546f6b656e3a2057726f6e67207370656e74206f7220616d6f756e742e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734173736574546f6b656e3a20496e73756666696369656e742073656c6c65722062616c616e63652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122007771aa5f05f5b1ada88ed90d1c644cdc85664fd04eb2c272042c93a51ccd46c64736f6c63430007040033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.