Transactions
Token Transfers
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- IHubMarket
- Optimization enabled
- true
- Compiler version
- v0.6.12+commit.27d51765
- Optimization runs
- 200
- Verified at
- 2023-12-14T16:01:46.964667Z
contracts/IHubMarket.sol
pragma solidity 0.6.12; // IHub Marketplace // // A factory to conveniently deploy your own source code verified auctions // // Inspired by Bokky's EtherVendingMachince.io // https://github.com/bokkypoobah/FixedSupplyTokenFactory // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // --------------------------------------------------------------------- // SPDX-License-Identifier: GPL-3.0 // --------------------------------------------------------------------- import "./Access/IHubAccessControls.sol"; import "./Utils/BoringMath.sol"; import "./Utils/SafeTransfer.sol"; import "./interfaces/IIHubMarket.sol"; import "./interfaces/IERC20.sol"; import "./interfaces/INeutronStarFactory.sol"; import "./OpenZeppelin/token/ERC20/SafeERC20.sol"; contract IHubMarket is SafeTransfer { using BoringMath for uint256; using BoringMath128 for uint128; using BoringMath64 for uint64; using SafeERC20 for IERC20; /// @notice Responsible for access rights to the contract. IHubAccessControls public accessControls; bytes32 public constant MARKET_MINTER_ROLE = keccak256("MARKET_MINTER_ROLE"); /// @notice Whether market has been initialized or not. bool private initialised; /// @notice Struct to track Auction template. struct Auction { bool exists; uint64 templateId; uint128 index; } /// @notice Auctions created using factory. address[] public auctions; /// @notice Template id to track respective auction template. uint256 public auctionTemplateId; INeutronStarFactory public neutronStar; /// @notice Mapping from market template id to market template address. mapping(uint256 => address) private auctionTemplates; /// @notice Mapping from market template address to market template id. mapping(address => uint256) private auctionTemplateToId; // /// @notice mapping from template type to template id mapping(uint256 => uint256) public currentTemplateId; /// @notice Mapping from auction created through this contract to Auction struct. mapping(address => Auction) public auctionInfo; /// @notice Struct to define fees. struct MarketFees { uint128 minimumFee; uint32 integratorFeePct; } /// @notice Minimum fee to create a farm through the factory. MarketFees public marketFees; /// @notice Contract locked status. If locked, only minters can deploy bool public locked; ///@notice Any donations if set are sent here. address payable public iHubDiv; ///@notice Event emitted when first initializing the Market factory. event IHubInitMarket(address sender); /// @notice Event emitted when template is added to factory. event AuctionTemplateAdded(address newAuction, uint256 templateId); /// @notice Event emitted when auction template is removed. event AuctionTemplateRemoved(address auction, uint256 templateId); /// @notice Event emitted when auction is created using template id. event MarketCreated(address indexed owner, address indexed addr, address marketTemplate); constructor() public {} /** * @notice Initializes the market with a list of auction templates. * @dev Can only be initialized once. * @param _accessControls Sets address to get the access controls from. * @param _templates Initial array of IHubMarket templates. */ function initIHubMarket(address _accessControls, address _neutronStar, address[] memory _templates) external { require(!initialised, "already initialised"); require(_accessControls != address(0), "initIHubMarket: accessControls cannot be set to zero"); require(_neutronStar != address(0), "initIHubMarket: neutronStar cannot be set to zero"); accessControls = IHubAccessControls(_accessControls); neutronStar = INeutronStarFactory(_neutronStar); for (uint i = 0; i < _templates.length; i++) { _addAuctionTemplate(_templates[i]); } locked = true; initialised = true; emit IHubInitMarket(msg.sender); } /** * @notice Sets the minimum fee. * @param _amount Fee amount. */ function setMinimumFee(uint256 _amount) external { require(accessControls.hasAdminRole(msg.sender), "IHubMarket: Sender must be operator"); marketFees.minimumFee = BoringMath.to128(_amount); } /** * @notice Sets the factory to be locked or unlocked. * @param _locked bool. */ function setLocked(bool _locked) external { require(accessControls.hasAdminRole(msg.sender), "IHubMarket: Sender must be admin"); locked = _locked; } /** * @notice Sets integrator fee percentage. * @param _amount Percentage amount. */ function setIntegratorFeePct(uint256 _amount) external { require(accessControls.hasAdminRole(msg.sender), "IHubMarket: Sender must be operator"); /// @dev this is out of 1000, ie 25% = 250 require(_amount <= 1000, "IHubMarket: Percentage is out of 1000"); marketFees.integratorFeePct = BoringMath.to32(_amount); } /** * @notice Sets dividend address. * @param _divaddr Dividend address. */ function setDividends(address payable _divaddr) external { require(accessControls.hasAdminRole(msg.sender), "IHubMarket.setDev: Sender must be operator"); require(_divaddr != address(0)); iHubDiv = _divaddr; } /** * @notice Sets the current template ID for any type. * @param _templateType Type of template. * @param _templateId The ID of the current template for that type */ function setCurrentTemplateId(uint256 _templateType, uint256 _templateId) external { require(accessControls.hasAdminRole(msg.sender), "IHubMarket: Sender must be admin"); require(auctionTemplates[_templateId] != address(0), "IHubMarket: incorrect _templateId"); require( IIHubMarket(auctionTemplates[_templateId]).marketTemplate() == _templateType, "IHubMarket: incorrect _templateType" ); currentTemplateId[_templateType] = _templateId; } /** * @notice Used to check whether an address has the minter role * @param _address EOA or contract being checked * @return bool True if the account has the role or false if it does not */ function hasMarketMinterRole(address _address) public view returns (bool) { return accessControls.hasRole(MARKET_MINTER_ROLE, _address); } /** * @notice Creates a new IHubMarket from template _templateId and transfers fees. * @param _templateId Id of the crowdsale template to create. * @param _integratorFeeAccount Address to pay the fee to. * @return newMarket Market address. */ function deployMarket( uint256 _templateId, address payable _integratorFeeAccount ) public payable returns (address newMarket) { /// @dev If the contract is locked, only admin and minters can deploy. if (locked) { require( accessControls.hasAdminRole(msg.sender) || accessControls.hasMinterRole(msg.sender) || hasMarketMinterRole(msg.sender), "IHubMarket: Sender must be minter if locked" ); } MarketFees memory _marketFees = marketFees; address auctionTemplate = auctionTemplates[_templateId]; require(msg.value >= uint256(_marketFees.minimumFee), "IHubMarket: Failed to transfer minimumFee"); require(auctionTemplate != address(0), "IHubMarket: Auction template doesn't exist"); uint256 integratorFee = 0; uint256 iHubFee = msg.value; if (_integratorFeeAccount != address(0) && _integratorFeeAccount != iHubDiv) { integratorFee = (iHubFee * uint256(_marketFees.integratorFeePct)) / 1000; iHubFee = iHubFee - integratorFee; } /// @dev Deploy using the NeutronStar factory. newMarket = neutronStar.deploy(auctionTemplate, "", false); auctionInfo[newMarket] = Auction(true, BoringMath.to64(_templateId), BoringMath.to128(auctions.length)); auctions.push(newMarket); emit MarketCreated(msg.sender, newMarket, auctionTemplate); if (iHubFee > 0) { iHubDiv.transfer(iHubFee); } if (integratorFee > 0) { _integratorFeeAccount.transfer(integratorFee); } } /** * @notice Creates a new IHubMarket using _templateId. * @dev Initializes auction with the parameters passed. * @param _templateId Id of the auction template to create. * @param _token The token address to be sold. * @param _tokenSupply Amount of tokens to be sold at market. * @param _integratorFeeAccount Address to send refferal bonus, if set. * @param _data Data to be sent to template on Init. * @return newMarket Market address. */ function createMarket( uint256 _templateId, address _token, uint256 _tokenSupply, address payable _integratorFeeAccount, bytes calldata _data ) external payable returns (address newMarket) { newMarket = deployMarket(_templateId, _integratorFeeAccount); if (_tokenSupply > 0) { _safeTransferFrom(_token, msg.sender, _tokenSupply); IERC20(_token).safeApprove(newMarket, _tokenSupply); } IIHubMarket(newMarket).initMarket(_data); if (_tokenSupply > 0) { uint256 remainingBalance = IERC20(_token).balanceOf(address(this)); if (remainingBalance > 0) { _safeTransfer(_token, msg.sender, remainingBalance); } } return newMarket; } /** * @notice Function to add an auction template to create through factory. * @dev Should have operator access. * @param _template Auction template to create an auction. */ function addAuctionTemplate(address _template) external { require( accessControls.hasAdminRole(msg.sender) || accessControls.hasOperatorRole(msg.sender), "IHubMarket: Sender must be operator" ); _addAuctionTemplate(_template); } /** * @dev Function to remove an auction template. * @dev Should have operator access. * @param _templateId Refers to template that is to be deleted. */ function removeAuctionTemplate(uint256 _templateId) external { require( accessControls.hasAdminRole(msg.sender) || accessControls.hasOperatorRole(msg.sender), "IHubMarket: Sender must be operator" ); address template = auctionTemplates[_templateId]; uint256 templateType = IIHubMarket(template).marketTemplate(); if (currentTemplateId[templateType] == _templateId) { delete currentTemplateId[templateType]; } auctionTemplates[_templateId] = address(0); delete auctionTemplateToId[template]; emit AuctionTemplateRemoved(template, _templateId); } /** * @notice Function to add an auction template to create through factory. * @param _template Auction template address to create an auction. */ function _addAuctionTemplate(address _template) internal { require(_template != address(0), "IHubMarket: Incorrect template"); require(auctionTemplateToId[_template] == 0, "IHubMarket: Template already added"); uint256 templateType = IIHubMarket(_template).marketTemplate(); require(templateType > 0, "IHubMarket: Incorrect template code "); auctionTemplateId++; auctionTemplates[auctionTemplateId] = _template; auctionTemplateToId[_template] = auctionTemplateId; currentTemplateId[templateType] = auctionTemplateId; emit AuctionTemplateAdded(_template, auctionTemplateId); } /** * @notice Get the address based on template ID. * @param _templateId Auction template ID. * @return Address of the required template ID. */ function getAuctionTemplate(uint256 _templateId) external view returns (address) { return auctionTemplates[_templateId]; } /** * @notice Get the ID based on template address. * @param _auctionTemplate Auction template address. * @return ID of the required template address. */ function getTemplateId(address _auctionTemplate) external view returns (uint256) { return auctionTemplateToId[_auctionTemplate]; } /** * @notice Get the total number of auctions in the factory. * @return Auction count. */ function numberOfAuctions() external view returns (uint) { return auctions.length; } function minimumFee() external view returns (uint128) { return marketFees.minimumFee; } function getMarkets() external view returns (address[] memory) { return auctions; } function getMarketTemplateId(address _auction) external view returns (uint64) { return auctionInfo[_auction].templateId; } }
contracts/Access/IHubAccessControls.sol
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.6.12; import "./IHubAdminAccess.sol"; /** * @notice Access Controls * @author Attr: BlockRocket.tech */ contract IHubAccessControls is IHubAdminAccess { /// @notice Role definitions bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE"); bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE"); /** * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses */ // solhint-disable-next-line no-empty-blocks constructor() public {} ///////////// // Lookups // ///////////// /** * @notice Used to check whether an address has the minter role * @param _address EOA or contract being checked * @return bool True if the account has the role or false if it does not */ function hasMinterRole(address _address) public view returns (bool) { return hasRole(MINTER_ROLE, _address); } /** * @notice Used to check whether an address has the smart contract role * @param _address EOA or contract being checked * @return bool True if the account has the role or false if it does not */ function hasSmartContractRole(address _address) public view returns (bool) { return hasRole(SMART_CONTRACT_ROLE, _address); } /** * @notice Used to check whether an address has the operator role * @param _address EOA or contract being checked * @return bool True if the account has the role or false if it does not */ function hasOperatorRole(address _address) public view returns (bool) { return hasRole(OPERATOR_ROLE, _address); } /////////////// // Modifiers // /////////////// /** * @notice Grants the minter role to an address * @dev The sender must have the admin role * @param _address EOA or contract receiving the new role */ function addMinterRole(address _address) external { grantRole(MINTER_ROLE, _address); } /** * @notice Removes the minter role from an address * @dev The sender must have the admin role * @param _address EOA or contract affected */ function removeMinterRole(address _address) external { revokeRole(MINTER_ROLE, _address); } /** * @notice Grants the smart contract role to an address * @dev The sender must have the admin role * @param _address EOA or contract receiving the new role */ function addSmartContractRole(address _address) external { grantRole(SMART_CONTRACT_ROLE, _address); } /** * @notice Removes the smart contract role from an address * @dev The sender must have the admin role * @param _address EOA or contract affected */ function removeSmartContractRole(address _address) external { revokeRole(SMART_CONTRACT_ROLE, _address); } /** * @notice Grants the operator role to an address * @dev The sender must have the admin role * @param _address EOA or contract receiving the new role */ function addOperatorRole(address _address) external { grantRole(OPERATOR_ROLE, _address); } /** * @notice Removes the operator role from an address * @dev The sender must have the admin role * @param _address EOA or contract affected */ function removeOperatorRole(address _address) external { revokeRole(OPERATOR_ROLE, _address); } }
contracts/Access/IHubAdminAccess.sol
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.6.12; import "../OpenZeppelin/access/AccessControl.sol"; contract IHubAdminAccess is AccessControl { /// @dev Whether access is initialised. bool private initAccess; /// @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses. // solhint-disable-next-line no-empty-blocks constructor() public {} /** * @notice Initializes access controls. * @param _admin Admins address. */ function initAccessControls(address _admin) public { require(!initAccess, "Already initialised"); require(_admin != address(0), "Incorrect input"); _setupRole(DEFAULT_ADMIN_ROLE, _admin); initAccess = true; } ///////////// // Lookups // ///////////// /** * @notice Used to check whether an address has the admin role. * @param _address EOA or contract being checked. * @return bool True if the account has the role or false if it does not. */ function hasAdminRole(address _address) public view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _address); } /////////////// // Modifiers // /////////////// /** * @notice Grants the admin role to an address. * @dev The sender must have the admin role. * @param _address EOA or contract receiving the new role. */ function addAdminRole(address _address) external { grantRole(DEFAULT_ADMIN_ROLE, _address); } /** * @notice Removes the admin role from an address. * @dev The sender must have the admin role. * @param _address EOA or contract affected. */ function removeAdminRole(address _address) external { revokeRole(DEFAULT_ADMIN_ROLE, _address); } }
contracts/OpenZeppelin/access/AccessControl.sol
pragma solidity 0.6.12; import "../utils/EnumerableSet.sol"; import "../utils/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; 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()); } } }
contracts/OpenZeppelin/math/SafeMath.sol
pragma solidity 0.6.12; /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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; } }
contracts/OpenZeppelin/token/ERC20/SafeERC20.sol
pragma solidity 0.6.12; import "../../../interfaces/IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { // 0xa9059cbb = bytes4(keccak256("transfer(address,uint256)")) _callOptionalReturn(token, abi.encodeWithSelector(0xa9059cbb, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { // 0x23b872dd = bytes4(keccak256("transferFrom(address,address,uint256)")) _callOptionalReturn(token, abi.encodeWithSelector(0x23b872dd, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
contracts/OpenZeppelin/utils/Address.sol
pragma solidity 0.6.12; /** * @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); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(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); } } } }
contracts/OpenZeppelin/utils/Context.sol
pragma solidity 0.6.12; /* * @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; } }
contracts/OpenZeppelin/utils/EnumerableSet.sol
pragma solidity 0.6.12; /** * @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(uint160(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(uint160(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(uint160(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(uint160(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)); } }
contracts/Utils/BoringMath.sol
pragma solidity 0.6.12; /// @notice A library for performing overflow-/underflow-safe math, /// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math). library BoringMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { require(b == 0 || (c = a * b) / b == a, "BoringMath: Mul Overflow"); } function div(uint256 a, uint256 b) internal pure returns (uint256 c) { require(b > 0, "BoringMath: Div zero"); c = a / b; } function to128(uint256 a) internal pure returns (uint128 c) { require(a <= uint128(-1), "BoringMath: uint128 Overflow"); c = uint128(a); } function to64(uint256 a) internal pure returns (uint64 c) { require(a <= uint64(-1), "BoringMath: uint64 Overflow"); c = uint64(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= uint32(-1), "BoringMath: uint32 Overflow"); c = uint32(a); } function to16(uint256 a) internal pure returns (uint16 c) { require(a <= uint16(-1), "BoringMath: uint16 Overflow"); c = uint16(a); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint128. library BoringMath128 { function add(uint128 a, uint128 b) internal pure returns (uint128 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint128 a, uint128 b) internal pure returns (uint128 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint64. library BoringMath64 { function add(uint64 a, uint64 b) internal pure returns (uint64 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint64 a, uint64 b) internal pure returns (uint64 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32. library BoringMath32 { function add(uint32 a, uint32 b) internal pure returns (uint32 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint32 a, uint32 b) internal pure returns (uint32 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32. library BoringMath16 { function add(uint16 a, uint16 b) internal pure returns (uint16 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint16 a, uint16 b) internal pure returns (uint16 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } }
contracts/Utils/SafeTransfer.sol
pragma solidity 0.6.12; contract SafeTransfer { address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @notice Event for token withdrawals. event TokensWithdrawn(address token, address to, uint256 amount); /// @dev Helper function to handle both ETH and ERC20 payments function _safeTokenPayment(address _token, address payable _to, uint256 _amount) internal { if (address(_token) == ETH_ADDRESS) { _safeTransferETH(_to, _amount); } else { _safeTransfer(_token, _to, _amount); } emit TokensWithdrawn(_token, _to, _amount); } /// @dev Helper function to handle both ETH and ERC20 payments function _tokenPayment(address _token, address payable _to, uint256 _amount) internal { if (address(_token) == ETH_ADDRESS) { _to.transfer(_amount); } else { _safeTransfer(_token, _to, _amount); } emit TokensWithdrawn(_token, _to, _amount); } /// @dev Transfer helper from UniswapV2 Router function _safeApprove(address token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: APPROVE_FAILED"); } /** * There are many non-compliant ERC20 tokens... this can handle most, adapted from UniSwap V2 * Im trying to make it a habit to put external calls last (reentrancy) * You can put this in an internal function if you like. */ function _safeTransfer(address token, address to, uint256 amount) internal virtual { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = token.call( // 0xa9059cbb = bytes4(keccak256("transfer(address,uint256)")) abi.encodeWithSelector(0xa9059cbb, to, amount) ); // solhint-disable-next-line reason-string require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FAILED"); // ERC20 Transfer failed } function _safeTransferFrom(address token, address from, uint256 amount) internal virtual { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = token.call( // 0x23b872dd = bytes4(keccak256("transferFrom(address,address,uint256)")) abi.encodeWithSelector(0x23b872dd, from, address(this), amount) ); // solhint-disable-next-line reason-string require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FROM_FAILED"); // ERC20 TransferFrom failed } function _safeTransferFrom(address token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); // solhint-disable-next-line reason-string require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FROM_FAILED"); } function _safeTransferETH(address to, uint value) internal { // solhint-disable-next-line avoid-low-level-calls (bool success, ) = to.call{value: value}(new bytes(0)); // solhint-disable-next-line reason-string require(success, "TransferHelper: ETH_TRANSFER_FAILED"); } }
contracts/interfaces/IERC20.sol
pragma solidity 0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function transferFrom(address from, address to, uint256 amount) external returns (bool); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; }
contracts/interfaces/IIHubMarket.sol
pragma solidity 0.6.12; interface IIHubMarket { function init(bytes calldata data) external payable; function initMarket(bytes calldata data) external; function marketTemplate() external view returns (uint256); }
contracts/interfaces/INeutronStarFactory.sol
pragma solidity 0.6.12; interface INeutronStarFactory { function deploy( address masterContract, bytes calldata data, bool useCreate2 ) external payable returns (address cloneAddress); function masterContractApproved(address, address) external view returns (bool); function masterContractOf(address) external view returns (address); function setMasterContractApproval( address user, address masterContract, bool approved, uint8 v, bytes32 r, bytes32 s ) external; }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"AuctionTemplateAdded","inputs":[{"type":"address","name":"newAuction","internalType":"address","indexed":false},{"type":"uint256","name":"templateId","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"AuctionTemplateRemoved","inputs":[{"type":"address","name":"auction","internalType":"address","indexed":false},{"type":"uint256","name":"templateId","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"IHubInitMarket","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"MarketCreated","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"addr","internalType":"address","indexed":true},{"type":"address","name":"marketTemplate","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"TokensWithdrawn","inputs":[{"type":"address","name":"token","internalType":"address","indexed":false},{"type":"address","name":"to","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"MARKET_MINTER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IHubAccessControls"}],"name":"accessControls","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAuctionTemplate","inputs":[{"type":"address","name":"_template","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"exists","internalType":"bool"},{"type":"uint64","name":"templateId","internalType":"uint64"},{"type":"uint128","name":"index","internalType":"uint128"}],"name":"auctionInfo","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"auctionTemplateId","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"auctions","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"address","name":"newMarket","internalType":"address"}],"name":"createMarket","inputs":[{"type":"uint256","name":"_templateId","internalType":"uint256"},{"type":"address","name":"_token","internalType":"address"},{"type":"uint256","name":"_tokenSupply","internalType":"uint256"},{"type":"address","name":"_integratorFeeAccount","internalType":"address payable"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"currentTemplateId","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"address","name":"newMarket","internalType":"address"}],"name":"deployMarket","inputs":[{"type":"uint256","name":"_templateId","internalType":"uint256"},{"type":"address","name":"_integratorFeeAccount","internalType":"address payable"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getAuctionTemplate","inputs":[{"type":"uint256","name":"_templateId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint64","name":"","internalType":"uint64"}],"name":"getMarketTemplateId","inputs":[{"type":"address","name":"_auction","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"","internalType":"address[]"}],"name":"getMarkets","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getTemplateId","inputs":[{"type":"address","name":"_auctionTemplate","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasMarketMinterRole","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"iHubDiv","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initIHubMarket","inputs":[{"type":"address","name":"_accessControls","internalType":"address"},{"type":"address","name":"_neutronStar","internalType":"address"},{"type":"address[]","name":"_templates","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"locked","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint128","name":"minimumFee","internalType":"uint128"},{"type":"uint32","name":"integratorFeePct","internalType":"uint32"}],"name":"marketFees","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint128","name":"","internalType":"uint128"}],"name":"minimumFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract INeutronStarFactory"}],"name":"neutronStar","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"numberOfAuctions","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAuctionTemplate","inputs":[{"type":"uint256","name":"_templateId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCurrentTemplateId","inputs":[{"type":"uint256","name":"_templateType","internalType":"uint256"},{"type":"uint256","name":"_templateId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDividends","inputs":[{"type":"address","name":"_divaddr","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setIntegratorFeePct","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLocked","inputs":[{"type":"bool","name":"_locked","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinimumFee","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]}]
Deployed ByteCode
0x60806040526004361061019c5760003560e01c80636c2eefe1116100ec578063aa1bd2f61161008a578063b9551d1411610064578063b9551d14146106d8578063cf30901214610702578063d335ebda14610717578063ec2c90161461074a5761019c565b8063aa1bd2f6146105dd578063b034349314610673578063b1495b01146106c35761019c565b80639e5940cc116100c65780639e5940cc1461050a5780639e9188ea1461053a5780639edbd90a1461056d578063a5fd7565146105aa5761019c565b80636c2eefe114610417578063748365ef1461042c57806396c5cd0c146104415761019c565b80632ed4f578116101595780634b939ed7116101335780634b939ed7146103995780634f5f2a45146103c357806350d9d472146103d8578063571a26a0146103ed5761019c565b80632ed4f578146102ec578063390467b6146103285780633f1f44b01461036f5761019c565b80630448e51a146101a1578063182a7506146102065780631a7626e714610232578063211e28b614610263578063289591541461028f57806328e58e4f146102c0575b600080fd5b3480156101ad57600080fd5b506101d4600480360360208110156101c457600080fd5b50356001600160a01b03166107af565b60408051931515845267ffffffffffffffff90921660208401526001600160801b031682820152519081900360600190f35b34801561021257600080fd5b506102306004803603602081101561022957600080fd5b50356107e6565b005b34801561023e57600080fd5b506102476108cd565b604080516001600160801b039092168252519081900360200190f35b34801561026f57600080fd5b506102306004803603602081101561028657600080fd5b503515156108dc565b34801561029b57600080fd5b506102a46109b7565b604080516001600160a01b039092168252519081900360200190f35b6102a4600480360360408110156102d657600080fd5b50803590602001356001600160a01b03166109c6565b3480156102f857600080fd5b506103166004803603602081101561030f57600080fd5b5035610ea5565b60408051918252519081900360200190f35b34801561033457600080fd5b5061035b6004803603602081101561034b57600080fd5b50356001600160a01b0316610eb7565b604080519115158252519081900360200190f35b34801561037b57600080fd5b506102306004803603602081101561039257600080fd5b5035610f5d565b3480156103a557600080fd5b506102a4600480360360208110156103bc57600080fd5b5035611081565b3480156103cf57600080fd5b5061031661109c565b3480156103e457600080fd5b506103166110c0565b3480156103f957600080fd5b506102a46004803603602081101561041057600080fd5b50356110c6565b34801561042357600080fd5b506103166110ed565b34801561043857600080fd5b506102a46110f3565b34801561044d57600080fd5b506102306004803603606081101561046457600080fd5b6001600160a01b03823581169260208101359091169181019060608101604082013564010000000081111561049857600080fd5b8201836020820111156104aa57600080fd5b803590602001918460208302840111640100000000831117156104cc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611102945050505050565b34801561051657600080fd5b506102306004803603604081101561052d57600080fd5b5080359060200135611294565b34801561054657600080fd5b506102306004803603602081101561055d57600080fd5b50356001600160a01b031661147a565b34801561057957600080fd5b50610582611567565b604080516001600160801b03909316835263ffffffff90911660208301528051918290030190f35b3480156105b657600080fd5b50610230600480360360208110156105cd57600080fd5b50356001600160a01b0316611585565b6102a4600480360360a08110156105f357600080fd5b8135916001600160a01b0360208201358116926040830135926060810135909216919081019060a08101608082013564010000000081111561063457600080fd5b82018360208201111561064657600080fd5b8035906020019184600183028401116401000000008311171561066857600080fd5b5090925090506116c1565b34801561067f57600080fd5b506106a66004803603602081101561069657600080fd5b50356001600160a01b0316611823565b6040805167ffffffffffffffff9092168252519081900360200190f35b3480156106cf57600080fd5b506102a461184d565b3480156106e457600080fd5b50610230600480360360208110156106fb57600080fd5b5035611861565b34801561070e57600080fd5b5061035b611aa9565b34801561072357600080fd5b506103166004803603602081101561073a57600080fd5b50356001600160a01b0316611ab2565b34801561075657600080fd5b5061075f611acd565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561079b578181015183820152602001610783565b505050509050019250505060405180910390f35b60076020526000908152604090205460ff811690610100810467ffffffffffffffff1690600160481b90046001600160801b031683565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b15801561083157600080fd5b505afa158015610845573d6000803e3d6000fd5b505050506040513d602081101561085b57600080fd5b50516108985760405162461bcd60e51b81526004018080602001828103825260238152602001806125c46023913960400191505060405180910390fd5b6108a181611b2f565b600880546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905550565b6008546001600160801b031690565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b15801561092757600080fd5b505afa15801561093b573d6000803e3d6000fd5b505050506040513d602081101561095157600080fd5b50516109a4576040805162461bcd60e51b815260206004820181905260248201527f494875624d61726b65743a2053656e646572206d7573742062652061646d696e604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b6003546001600160a01b031681565b60095460009060ff1615610b13576000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b158015610a1f57600080fd5b505afa158015610a33573d6000803e3d6000fd5b505050506040513d6020811015610a4957600080fd5b505180610ac957506000546040805163099db01760e01b815233600482015290516001600160a01b039092169163099db01791602480820192602092909190829003018186803b158015610a9c57600080fd5b505afa158015610ab0573d6000803e3d6000fd5b505050506040513d6020811015610ac657600080fd5b50515b80610ad85750610ad833610eb7565b610b135760405162461bcd60e51b815260040180806020018281038252602b815260200180612599602b913960400191505060405180910390fd5b610b1b6124d5565b506040805180820182526008546001600160801b038082168352600160801b90910463ffffffff16602080840191909152600087815260049091529290922054815191926001600160a01b039091169116341015610baa5760405162461bcd60e51b81526004018080602001828103825260298152602001806125e76029913960400191505060405180910390fd5b6001600160a01b038116610bef5760405162461bcd60e51b815260040180806020018281038252602a8152602001806126a4602a913960400191505060405180910390fd5b6000346001600160a01b03861615801590610c1d57506009546001600160a01b038781166101009092041614155b15610c40576103e8846020015163ffffffff16820281610c3957fe5b0491508190035b60035460408051631f54245b60e01b81526001600160a01b03868116600483015260006044830181905260606024840152606483018190529251931692631f54245b9260a480840193602093929083900390910190829087803b158015610ca657600080fd5b505af1158015610cba573d6000803e3d6000fd5b505050506040513d6020811015610cd057600080fd5b505160408051606081019091526001815290955060208101610cf189611b91565b67ffffffffffffffff168152602001610d0e600180549050611b2f565b6001600160801b039081169091526001600160a01b038088166000818152600760209081526040808320875181548985015199840151909816600160481b0278ffffffffffffffffffffffffffffffff0000000000000000001967ffffffffffffffff909a166101000268ffffffffffffffff001992151560ff19909a16999099179190911697909717979097169590951790955560018054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b03191682179055825191871682529151919233927fe63e6130091e2155004c4b5ac35e8fb9be704d6637ff3068a8f710ba36c9f41a9281900390910190a38015610e5d576009546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610e5b573d6000803e3d6000fd5b505b8115610e9b576040516001600160a01b0387169083156108fc029084906000818181858888f19350505050158015610e99573d6000803e3d6000fd5b505b5050505092915050565b60066020526000908152604090205481565b6000805460408051632474521560e21b81527f185f85149db0f205130703941d0f9ccd8133e50df5d5080231c7704337aa2c3860048201526001600160a01b038581166024830152915191909216916391d14854916044808301926020929190829003018186803b158015610f2b57600080fd5b505afa158015610f3f573d6000803e3d6000fd5b505050506040513d6020811015610f5557600080fd5b505192915050565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b158015610fa857600080fd5b505afa158015610fbc573d6000803e3d6000fd5b505050506040513d6020811015610fd257600080fd5b505161100f5760405162461bcd60e51b81526004018080602001828103825260238152602001806125c46023913960400191505060405180910390fd5b6103e88111156110505760405162461bcd60e51b81526004018080602001828103825260258152602001806126556025913960400191505060405180910390fd5b61105981611bf0565b6008805463ffffffff92909216600160801b0263ffffffff60801b1990921691909117905550565b6000908152600460205260409020546001600160a01b031690565b7f185f85149db0f205130703941d0f9ccd8133e50df5d5080231c7704337aa2c3881565b60015490565b600181815481106110d357fe5b6000918252602090912001546001600160a01b0316905081565b60025481565b6000546001600160a01b031681565b600054600160a01b900460ff1615611157576040805162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5cd959606a1b604482015290519081900360640190fd5b6001600160a01b03831661119c5760405162461bcd60e51b81526004018080602001828103825260348152602001806125656034913960400191505060405180910390fd5b6001600160a01b0382166111e15760405162461bcd60e51b81526004018080602001828103825260318152602001806125346031913960400191505060405180910390fd5b600080546001600160a01b038086166001600160a01b031992831617835560038054918616919092161790555b815181101561123b5761123382828151811061122657fe5b6020026020010151611c4b565b60010161120e565b506009805460ff191660011790556000805460ff60a01b1916600160a01b1790556040805133815290517fa907092aa0167f02e5f2d83453ac3bdf1106e00d009b2a6266a2cb505764d8f69181900360200190a1505050565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b1580156112df57600080fd5b505afa1580156112f3573d6000803e3d6000fd5b505050506040513d602081101561130957600080fd5b505161135c576040805162461bcd60e51b815260206004820181905260248201527f494875624d61726b65743a2053656e646572206d7573742062652061646d696e604482015290519081900360640190fd5b6000818152600460205260409020546001600160a01b03166113af5760405162461bcd60e51b81526004018080602001828103825260218152602001806124ed6021913960400191505060405180910390fd5b600081815260046020818152604092839020548351630d9f230760e11b8152935186946001600160a01b0390921693631b3e460e938382019390929190829003018186803b15801561140057600080fd5b505afa158015611414573d6000803e3d6000fd5b505050506040513d602081101561142a57600080fd5b5051146114685760405162461bcd60e51b81526004018080602001828103825260238152602001806126326023913960400191505060405180910390fd5b60009182526006602052604090912055565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b1580156114c557600080fd5b505afa1580156114d9573d6000803e3d6000fd5b505050506040513d60208110156114ef57600080fd5b505161152c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061274c602a913960400191505060405180910390fd5b6001600160a01b03811661153f57600080fd5b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160801b03811690600160801b900463ffffffff1682565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b1580156115d057600080fd5b505afa1580156115e4573d6000803e3d6000fd5b505050506040513d60208110156115fa57600080fd5b50518061167a575060005460408051637e271f0560e11b815233600482015290516001600160a01b039092169163fc4e3e0a91602480820192602092909190829003018186803b15801561164d57600080fd5b505afa158015611661573d6000803e3d6000fd5b505050506040513d602081101561167757600080fd5b50515b6116b55760405162461bcd60e51b81526004018080602001828103825260238152602001806125c46023913960400191505060405180910390fd5b6116be81611c4b565b50565b60006116cd87856109c6565b905084156116f4576116e0863387611e30565b6116f46001600160a01b0387168287611f8a565b60405163409a9e4760e11b8152602060048201908152602482018490526001600160a01b038316916381353c8e9186918691908190604401848480828437600081840152601f19601f8201169050808301925050509350505050600060405180830381600087803b15801561176857600080fd5b505af115801561177c573d6000803e3d6000fd5b505050506000851115611819576000866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156117d857600080fd5b505afa1580156117ec573d6000803e3d6000fd5b505050506040513d602081101561180257600080fd5b505190508015611817576118178733836120a2565b505b9695505050505050565b6001600160a01b0316600090815260076020526040902054610100900467ffffffffffffffff1690565b60095461010090046001600160a01b031681565b6000546040805163c395fcb360e01b815233600482015290516001600160a01b039092169163c395fcb391602480820192602092909190829003018186803b1580156118ac57600080fd5b505afa1580156118c0573d6000803e3d6000fd5b505050506040513d60208110156118d657600080fd5b505180611956575060005460408051637e271f0560e11b815233600482015290516001600160a01b039092169163fc4e3e0a91602480820192602092909190829003018186803b15801561192957600080fd5b505afa15801561193d573d6000803e3d6000fd5b505050506040513d602081101561195357600080fd5b50515b6119915760405162461bcd60e51b81526004018080602001828103825260238152602001806125c46023913960400191505060405180910390fd5b6000818152600460208181526040808420548151630d9f230760e11b815291516001600160a01b0390911694938593631b3e460e9380830193919290829003018186803b1580156119e157600080fd5b505afa1580156119f5573d6000803e3d6000fd5b505050506040513d6020811015611a0b57600080fd5b5051600081815260066020526040902054909150831415611a36576000818152600660205260408120555b600083815260046020908152604080832080546001600160a01b03191690556001600160a01b0385168084526005835281842093909355805192835290820185905280517f9e451d330e5bb7320c38b55046b66305a869486110a27e84e383b9b2a329875b9281900390910190a1505050565b60095460ff1681565b6001600160a01b031660009081526005602052604090205490565b60606001805480602002602001604051908101604052809291908181526020018280548015611b2557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b07575b5050505050905090565b60006001600160801b03821115611b8d576040805162461bcd60e51b815260206004820152601c60248201527f426f72696e674d6174683a2075696e74313238204f766572666c6f7700000000604482015290519081900360640190fd5b5090565b600067ffffffffffffffff821115611b8d576040805162461bcd60e51b815260206004820152601b60248201527f426f72696e674d6174683a2075696e743634204f766572666c6f770000000000604482015290519081900360640190fd5b600063ffffffff821115611b8d576040805162461bcd60e51b815260206004820152601b60248201527f426f72696e674d6174683a2075696e743332204f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038116611ca6576040805162461bcd60e51b815260206004820152601e60248201527f494875624d61726b65743a20496e636f72726563742074656d706c6174650000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205415611cfb5760405162461bcd60e51b81526004018080602001828103825260228152602001806126106022913960400191505060405180910390fd5b6000816001600160a01b0316631b3e460e6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d3657600080fd5b505afa158015611d4a573d6000803e3d6000fd5b505050506040513d6020811015611d6057600080fd5b5051905080611da05760405162461bcd60e51b81526004018080602001828103825260248152602001806126ce6024913960400191505060405180910390fd5b60028054600101808255600090815260046020908152604080832080546001600160a01b0319166001600160a01b038816908117909155935484845260058352818420819055858452600683529281902083905580519384529083019190915280517f893e8595c407d2a22d29ff3ba939d15ec3966113ce988bd39c68e4b0035040079281900390910190a15050565b604080516001600160a01b038481166024830152306044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000946060949389169392918291908083835b60208310611eb35780518252601f199092019160209182019101611e94565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611f15576040519150601f19603f3d011682016040523d82523d6000602084013e611f1a565b606091505b5091509150818015611f48575080511580611f485750808060200190516020811015611f4557600080fd5b50515b611f835760405162461bcd60e51b81526004018080602001828103825260248152602001806126f26024913960400191505060405180910390fd5b5050505050565b801580612010575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611fe257600080fd5b505afa158015611ff6573d6000803e3d6000fd5b505050506040513d602081101561200c57600080fd5b5051155b61204b5760405162461bcd60e51b81526004018080602001828103825260368152602001806127166036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261209d908490612205565b505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b178152925182516000946060949389169392918291908083835b6020831061211f5780518252601f199092019160209182019101612100565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612181576040519150601f19603f3d011682016040523d82523d6000602084013e612186565b606091505b50915091508180156121b45750805115806121b457508080602001905160208110156121b157600080fd5b50515b611f83576040805162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c454400604482015290519081900360640190fd5b606061225a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122b69092919063ffffffff16565b80519091501561209d5780806020019051602081101561227957600080fd5b505161209d5760405162461bcd60e51b815260040180806020018281038252602a81526020018061267a602a913960400191505060405180910390fd5b60606122c584846000856122cf565b90505b9392505050565b6060824710156123105760405162461bcd60e51b815260040180806020018281038252602681526020018061250e6026913960400191505060405180910390fd5b6123198561242b565b61236a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106123a95780518252601f19909201916020918201910161238a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461240b576040519150601f19603f3d011682016040523d82523d6000602084013e612410565b606091505b5091509150612420828286612431565b979650505050505050565b3b151590565b606083156124405750816122c8565b8251156124505782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561249a578181015183820152602001612482565b50505050905090810190601f1680156124c75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60408051808201909152600080825260208201529056fe494875624d61726b65743a20696e636f7272656374205f74656d706c6174654964416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c696e6974494875624d61726b65743a206e657574726f6e537461722063616e6e6f742062652073657420746f207a65726f696e6974494875624d61726b65743a20616363657373436f6e74726f6c732063616e6e6f742062652073657420746f207a65726f494875624d61726b65743a2053656e646572206d757374206265206d696e746572206966206c6f636b6564494875624d61726b65743a2053656e646572206d757374206265206f70657261746f72494875624d61726b65743a204661696c656420746f207472616e73666572206d696e696d756d466565494875624d61726b65743a2054656d706c61746520616c7265616479206164646564494875624d61726b65743a20696e636f7272656374205f74656d706c61746554797065494875624d61726b65743a2050657263656e74616765206973206f7574206f6620313030305361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564494875624d61726b65743a2041756374696f6e2074656d706c61746520646f65736e2774206578697374494875624d61726b65743a20496e636f72726563742074656d706c61746520636f6465205472616e7366657248656c7065723a205452414e534645525f46524f4d5f4641494c45445361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365494875624d61726b65742e7365744465763a2053656e646572206d757374206265206f70657261746f72a26469706673582212200888e55eb4e134eb076844a5419f0cc3700aee3d4987e7908d6bc5f48e9c4e8964736f6c634300060c0033