Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 56 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Collectio... | 20963816 | 21 days ago | IN | 0 ETH | 0.12090995 | ||||
Create Collectio... | 20963813 | 21 days ago | IN | 0 ETH | 0.12090995 | ||||
Create Collectio... | 20763125 | 49 days ago | IN | 0 ETH | 0.02072742 | ||||
Create Collectio... | 20763122 | 49 days ago | IN | 0 ETH | 0.02072742 | ||||
Create Collectio... | 20562318 | 77 days ago | IN | 0 ETH | 0.00690914 | ||||
Create Collectio... | 20562315 | 77 days ago | IN | 0 ETH | 0.00690914 | ||||
Create Collectio... | 20361364 | 105 days ago | IN | 0 ETH | 0.02763656 | ||||
Create Collectio... | 20361361 | 105 days ago | IN | 0 ETH | 0.02763656 | ||||
Create Collectio... | 20140555 | 136 days ago | IN | 0 ETH | 0.0345457 | ||||
Create Collectio... | 20140552 | 136 days ago | IN | 0 ETH | 0.0345457 | ||||
Create Collectio... | 19940259 | 164 days ago | IN | 0 ETH | 0.0345457 | ||||
Create Collectio... | 19940242 | 164 days ago | IN | 0 ETH | 0.0345457 | ||||
Create Collectio... | 19738427 | 192 days ago | IN | 0 ETH | 0.02763656 | ||||
Create Collectio... | 19738423 | 192 days ago | IN | 0 ETH | 0.02763656 | ||||
Create Collectio... | 19560404 | 217 days ago | IN | 0 ETH | 0.0690914 | ||||
Create Collectio... | 19560392 | 217 days ago | IN | 0 ETH | 0.0690914 | ||||
Create Collectio... | 19510586 | 224 days ago | IN | 0 ETH | 0.09327339 | ||||
Create Collectio... | 19461924 | 231 days ago | IN | 0 ETH | 0.17618307 | ||||
Create Collectio... | 19211867 | 266 days ago | IN | 0 ETH | 0.06563683 | ||||
Create Collectio... | 19134586 | 277 days ago | IN | 0 ETH | 0.12090995 | ||||
Create Collectio... | 19134583 | 277 days ago | IN | 0 ETH | 0.12090995 | ||||
Create Collectio... | 18940161 | 304 days ago | IN | 0 ETH | 0.05872769 | ||||
Create Collectio... | 18940157 | 304 days ago | IN | 0 ETH | 0.05872769 | ||||
Create Collectio... | 18785270 | 326 days ago | IN | 0 ETH | 0.15891077 | ||||
Create Collectio... | 18771271 | 328 days ago | IN | 0 ETH | 0.23491157 |
Latest 25 internal transactions (View All)
Advanced mode:
Loading...
Loading
Contract Name:
FactoryV2
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Latest stable version of solidity pragma solidity 0.8.13; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./CollectionV2.sol"; import "../MoneyHandler.sol"; import "../FarmV2.sol"; enum CurrencyType { weth, ern, stone } contract FactoryV2 is AccessControl { event NewCollection( string uri, uint256 total, uint256 startTime, uint256 endTime, uint256 amount, uint256 percent, address admin, address factoryAddress, uint8 currencyType ); event SetPfeedAddress(address priceFeed); event SetAddresses(address moneyHandler, address farm, address treasury); bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); address public farm; address public moneyHandler; address public treasury; address public priceFeed; FarmV2 public Ifarm; MoneyHandler public moneyHand; CollectionV2[] public collections; address public operatorSubscription = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); struct Card { CurrencyType cType; uint256 amount; uint256 total; uint256 startTime; uint256 endTime; uint256 percent; string uri; } mapping(address => Card) public cards; constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function createCollection( string memory uri, uint256 _total, uint256 _startTime, uint256 _endTime, uint256 _amount, uint256 _percent, address _admin, CurrencyType cType, address _token, address _stone ) external onlyRole(DEFAULT_ADMIN_ROLE) returns (address) { CollectionData memory collecData; collecData.uri = uri; collecData.total = _total; collecData.startTime = _startTime; collecData.endTime = _endTime; collecData.amount = _amount; collecData.percent = _percent; collecData.admin = _admin; collecData.factoryAddress = address(this); collecData.farm = farm; collecData.moneyHandler = moneyHandler; collecData.treasury = treasury; collecData.token = _token; collecData.stone = _stone; collecData.operatorSubscription = operatorSubscription; CollectionV2 collection = new CollectionV2(collecData); collections.push(collection); cards[address(collection)] = Card( cType, _amount, _total, _startTime, _endTime, _percent, uri ); giveRole(farm, address(collection)); giveRoleMnyHnd(moneyHandler, address(collection)); emit NewCollection( uri, _total, _startTime, _endTime, _amount, _percent, _admin, address(this), uint8(cType) ); return address(collection); } function addExternalAddresses( address _farm, address _moneyHandler, address _treasury ) external onlyRole(DEFAULT_ADMIN_ROLE) { farm = _farm; moneyHandler = _moneyHandler; treasury = _treasury; emit SetAddresses(moneyHandler, farm, treasury); } function setPriceOracle(address _priceFeed) external onlyRole(DEFAULT_ADMIN_ROLE) { priceFeed = _priceFeed; emit SetPfeedAddress(priceFeed); } function setOperatorSubscription(address _operatorSubscription) external onlyRole(DEFAULT_ADMIN_ROLE) { operatorSubscription = _operatorSubscription; } function giveRole(address _farmAddress, address _collec) public onlyRole(DEFAULT_ADMIN_ROLE) { Ifarm = FarmV2(_farmAddress); Ifarm.grantRole(COLLECTION_ROLE, _collec); } function giveRoleMnyHnd(address _moneyAddress, address _collec) public onlyRole(DEFAULT_ADMIN_ROLE) { moneyHand = MoneyHandler(_moneyAddress); moneyHand.grantRole(COLLECTION_ROLE, _collec); } function collectionLength() external view returns (uint256) { return collections.length; } function getPriceOracle() external view returns (address) { return priceFeed; } function buy( address collection, uint256 id, address buyer ) external returns (bool) { require(buyer == msg.sender, "Factory: you are not authorized "); CollectionV2 _collection = CollectionV2(collection); _collection.buy(buyer, id); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ 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; if (lastIndex != toDeleteIndex) { 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] = valueIndex; // Replace lastValue's index to valueIndex } // 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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 in 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // Latest stable version of solidity pragma solidity 0.8.13; pragma experimental ABIEncoderV2; import "../FarmV2.sol"; import "../MoneyHandler.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./IFactory.sol"; import "../oracle/IPriceFeed.sol"; import "../opensea_operator/RevokableOperatorFilterer.sol"; interface IMintableInterface { function mint(address to, uint256 _id) external; } interface IMintableBatchInterface { function mintBatch( address to, uint256[] memory _ids, uint256[] memory _amount ) external; } contract CollectionV2 is Ownable, RevokableOperatorFilterer, ERC1155, AccessControl { event Sold( address indexed operator, address indexed to, uint256 indexed id, uint256 amount ); event PaymentShared(address account, uint256 amount); event PaymentTreasure(address account, uint256 amount); event SoldWithStones(address buyer, uint256 amount); event NewStartTime(uint256 startTime); event NewEndTime(uint256 endTime); event NewUsdAmount(uint256 amount); event SetAddresses( address token, address stone, address treasury, address moneyHandler ); using EnumerableSet for EnumerableSet.UintSet; EnumerableSet.UintSet soldCards; bytes32 public constant MINTER_ROLE = bytes32(keccak256("MINTER_ROLE")); IERC20 public token; FarmV2 public stone; MoneyHandler public moneyHand; /**@notice amount is a USD value only for Matic */ uint256 public amount; uint256 public percent; uint256 public available; uint256 public sold; uint256 public total; uint256 public startTime; uint256 public endTime; uint8 public cType; address public facAddress; address public ernTreasure; constructor(CollectionData memory collecData) ERC1155(collecData.uri) OperatorFilterer(collecData.operatorSubscription, true) { amount = collecData.amount; available = collecData.total; total = collecData.total; startTime = collecData.startTime; endTime = collecData.endTime; percent = collecData.percent; facAddress = collecData.factoryAddress; _setupRole(DEFAULT_ADMIN_ROLE, collecData.admin); _setupRole(DEFAULT_ADMIN_ROLE, facAddress); _transferOwnership(collecData.admin); addExternalAddresses( collecData.token, collecData.stone, collecData.treasury, collecData.moneyHandler ); } modifier onlyFactory() { require( msg.sender == facAddress, "This function can only be called by factory contract" ); _; } function addExternalAddresses( address _token, address _stone, // 0x0000000000000000000 address _treasury, address _moneyHandler ) public onlyRole(DEFAULT_ADMIN_ROLE) { token = IERC20(_token); stone = FarmV2(_stone); moneyHand = MoneyHandler(_moneyHandler); ernTreasure = _treasury; emit SetAddresses(_token, _stone, _treasury, _moneyHandler); } function recoverToken(address _token) external onlyRole(DEFAULT_ADMIN_ROLE) { uint256 amount = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(msg.sender, amount); } function buy(address buyer, uint256 _id) external onlyFactory { require(!(soldCards.contains(_id)), "This card already sold"); require(available > 0, "Sold Out"); require( startTime <= block.timestamp && endTime > block.timestamp, "Sale did not start yet" ); address(stone) == address(0) ? _withToken(buyer) : _withStones(buyer); _mint(buyer, _id, 1, ""); available -= 1; sold += 1; soldCards.add(_id); emit Sold(address(this), buyer, _id, amount); } function mint(address to, uint256 _id) external onlyRole(DEFAULT_ADMIN_ROLE) { require(!(soldCards.contains(_id)), "This card already sold"); require(available > 0, "Sold Out"); _mint(to, _id, 1, ""); available -= 1; sold += 1; soldCards.add(_id); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amount_ ) external onlyRole(DEFAULT_ADMIN_ROLE) { require(available > ids.length, "Sold Out"); for (uint256 i = 0; i < ids.length; i++) { require(!(soldCards.contains(ids[i])), "This card already sold"); } _mintBatch(to, ids, amount_, ""); available -= ids.length; sold += ids.length; for (uint256 i = 0; i < ids.length; i++) { soldCards.add(ids[i]); } } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function _withStones(address buyer) private { uint256 stones = stone.rewardedStones(buyer); require(stones >= amount, "You do not have enough points !"); require(stone.payment(buyer, amount), "Payment was unsuccessful"); emit SoldWithStones(buyer, amount); } function calcPerc(uint256 _amount, uint256 _percent) private pure returns (uint256) { uint256 sellmul = SafeMath.mul(_amount, _percent); uint256 sellAmount = SafeMath.div(sellmul, 10**18); return sellAmount; } function setStarTime(uint256 _starTime) external onlyRole(DEFAULT_ADMIN_ROLE) { startTime = _starTime; emit NewStartTime(startTime); } function setEndTime(uint256 _endTime) external onlyRole(DEFAULT_ADMIN_ROLE) { endTime = _endTime; emit NewEndTime(endTime); } function setAmount(uint256 _newAmount) external onlyRole(DEFAULT_ADMIN_ROLE) { amount = _newAmount; emit NewUsdAmount(amount); } function _withToken(address buyer) private { uint256 price = getCardPrice(); require( token.balanceOf(buyer) >= price, "Insufficient funds: Cannot buy this NFT" ); uint256 treasAmount = calcPerc(price, percent); uint256 shareAmount = SafeMath.sub(price, treasAmount); token.transferFrom(buyer, address(this), price); token.transfer(ernTreasure, treasAmount); token.transfer(address(moneyHand), shareAmount); moneyHand.updateCollecMny(address(this), shareAmount); emit PaymentTreasure(address(this), treasAmount); emit PaymentShared(address(this), shareAmount); } function getTokenPrice() public view returns (uint256) { address priceOracle = IFactory(facAddress).getPriceOracle(); address tokenFeed = IPriceFeed(priceOracle).getFeed(address(token)); int256 priceUSD = IPriceFeed(priceOracle).getThePrice(tokenFeed); uint256 uPriceUSD = uint256(priceUSD); return uPriceUSD; } function getCardPrice() public view returns (uint256) { uint256 tokenPrice = getTokenPrice(); uint256 result = (amount * (1e44)) / (tokenPrice * (1e18)); return result; } function owner() public view virtual override(Ownable, RevokableOperatorFilterer) returns (address) { return Ownable.owner(); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function safeTransferFrom( address from, address to, uint256 tokenId, uint256 amount, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, amount, data); } function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override onlyAllowedOperator(from) { super.safeBatchTransferFrom(from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract MoneyHandler is Context, AccessControl { using SafeMath for uint256; event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); IERC20 private token; // uint256 public _totalShares; uint256 public _totalReleased; // uint256 public amu = 1; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; mapping(address => uint256) public collectionMoney; address[] private _payees; uint256 private _totalCllcAmnt; bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ /** * @dev Getter for the total shares held by payees. */ // function totalShares() public view returns (uint256) { // return _totalShares; // } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } function collecMny(address collection) public view returns (uint256) { return collectionMoney[collection]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } function updateCollecMny(address collection, uint256 amount) public onlyRole(COLLECTION_ROLE) { collectionMoney[collection] = collectionMoney[collection].add(amount); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release( address account, address collection, address _token ) private { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); _released[account] = _released[account].add(_shares[account]); _totalReleased = _totalReleased.add(_shares[account]); IERC20 token = IERC20(_token); token.transfer(account, _shares[account]); collectionMoney[collection] = collectionMoney[collection].sub( _shares[account] ); emit PaymentReleased(account, _shares[account]); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * // shares_ The number of shares owned by the payee. */ function _addPayee( address account, uint256 sharePerc_, address collection, address _token ) private { require( account != address(0), "PaymentSplitter: account is the zero address" ); uint256 shares_ = getAmountPer(_totalCllcAmnt, sharePerc_); _shares[account] = shares_; _payees.push(account); release(account, collection, _token); // emit PayeeAdded(account, shares_); } //Get amount per person function getAmountPer(uint256 totalAmount, uint256 sharePerc) private pure returns (uint256) { uint256 sharesmul_ = SafeMath.mul(totalAmount, sharePerc); uint256 shares_ = SafeMath.div(sharesmul_, 10**18); return shares_; } function recoverToken(address _token) external onlyRole(DEFAULT_ADMIN_ROLE) { uint256 amount = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(msg.sender, amount); } function redeem( address collection, address _token, address[] memory payees, uint256[] memory sharePerc_ ) public onlyRole(DEFAULT_ADMIN_ROLE) { require(payees.length > 0, "redeem: no payees"); require(payees.length == sharePerc_.length, "redeem: no payees"); _totalCllcAmnt = collectionMoney[collection]; require(_totalCllcAmnt > 0, "redeem: insufficient funds"); uint256 totalShareAmount; for (uint256 i = 0; i < sharePerc_.length; i++) { totalShareAmount = totalShareAmount.add( getAmountPer(_totalCllcAmnt, sharePerc_[i]) ); } require( _totalCllcAmnt >= totalShareAmount, "redeem: the total amount in the contract must be equal to or greater than the amount to be withdraw" ); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], sharePerc_[i], collection, _token); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract FarmV2 is AccessControl { using SafeERC20 for ERC20; using SafeMath for uint256; uint256 public limit = 10000 ether; uint256 public total; bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); struct Staker { uint256 amount; uint256 stones; uint256 timestamp; } mapping(address => Staker) public stakers; ERC20 private _token; constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function setTokenAddress(ERC20 token_) external onlyRole(DEFAULT_ADMIN_ROLE) { _token = token_; } function giveAway(address _address, uint256 stones) external onlyRole(DEFAULT_ADMIN_ROLE) { stakers[_address].stones = stones; } function farmed(address sender) public view returns (uint256) { // Returns how many ERN this account has farmed return (stakers[sender].amount); } function farmedStart(address sender) public view returns (uint256) { // Returns when this account started farming return (stakers[sender].timestamp); } function payment(address buyer, uint256 amount) public onlyRole(COLLECTION_ROLE) returns (bool) { consolidate(buyer); require(rewardedStones(buyer) >= amount, "Insufficient stones!"); stakers[buyer].stones = stakers[buyer].stones.sub(amount); stakers[buyer].timestamp = block.timestamp; return true; } function rewardedStones(address staker) public view returns (uint256) { if (stakers[staker].amount < 1000) { return stakers[staker].stones; } // solium-disable-next-line security/no-block-members uint256 _seconds = block.timestamp.sub(stakers[staker].timestamp).div( 1 seconds ); return stakers[staker].stones.add( stakers[staker].amount.div(1e18).mul(_seconds).mul( 11574074074074000 ) ); } function consolidate(address staker) internal { uint256 stones = rewardedStones(staker); stakers[staker].stones = stones; } function deposit(uint256 amount) public { address account = msg.sender; require(_token.balanceOf(account) > 0, "your balance is insufficient"); require( stakers[account].amount.add(amount) <= limit, "Limit 10000 ERN" ); _token.safeTransferFrom(account, address(this), amount); consolidate(account); total = total.add(amount); stakers[account].amount = stakers[account].amount.add(amount); // solium-disable-next-line security/no-block-members stakers[account].timestamp = block.timestamp; } function withdraw(uint256 amount) public { address account = msg.sender; //require(account == msg.sender,"you are not authorized on this account!"); require(stakers[account].amount >= amount, "Insufficient amount!"); require(_token.transfer(account, amount), "Transfer error!"); consolidate(account); stakers[account].amount = stakers[account].amount.sub(amount); total = total.sub(amount); // solium-disable-next-line security/no-block-members stakers[account].timestamp = block.timestamp; } function sell( uint256 stones, address from, address to ) public { require( hasRole(COLLECTION_ROLE, msg.sender), "you are not authorized on this account!" ); consolidate(from); require(rewardedStones(from) >= stones, "Insufficient stones!"); stakers[from].stones = stakers[from].stones.sub(stones); stakers[from].timestamp = block.timestamp; stakers[to].stones = stakers[to].stones.add(stones); stakers[to].timestamp = block.timestamp; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @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 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; struct CollectionData { string uri; uint256 total; uint256 startTime; uint256 endTime; uint256 amount; uint256 percent; address admin; address factoryAddress; uint8 currencyType; address farm; address moneyHandler; address treasury; address token; address stone; address operatorSubscription; } interface IFactory { function getPriceOracle() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IPriceFeed { function getThePrice(address tokenFeed) external view returns (int256); function setPriceFeed(address token, address feed) external; function getFeed(address token) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title RevokableOperatorFilterer * @notice This contract is meant to allow contracts to permanently opt out of the OperatorFilterRegistry. The Registry * itself has an "unregister" function, but if the contract is ownable, the owner can re-register at any point. * As implemented, this abstract contract allows the contract owner to toggle the * isOperatorFilterRegistryRevoked flag in order to permanently bypass the OperatorFilterRegistry checks. */ abstract contract RevokableOperatorFilterer is OperatorFilterer { error OnlyOwner(); error AlreadyRevoked(); bool private _isOperatorFilterRegistryRevoked; modifier onlyAllowedOperator(address from) override { // Check registry code length to facilitate testing in environments without a deployed registry. if ( !_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0 ) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), msg.sender ) ) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) override { // Check registry code length to facilitate testing in environments without a deployed registry. if ( !_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0 ) { if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } _; } /** * @notice Disable the isOperatorFilterRegistryRevoked flag. OnlyOwner. */ function setOperatorFilterEnabled(bool value) external { if (msg.sender != owner()) { revert OnlyOwner(); } _isOperatorFilterRegistryRevoked = value; } function isOperatorFilterRegistryRevoked() public view returns (bool) { return _isOperatorFilterRegistryRevoked; } /** * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract */ function owner() public view virtual returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.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 Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries( address registrant, address registrantToCopy ) external; function unregister(address addr) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"address","name":"factoryAddress","type":"address"},{"indexed":false,"internalType":"uint8","name":"currencyType","type":"uint8"}],"name":"NewCollection","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"moneyHandler","type":"address"},{"indexed":false,"internalType":"address","name":"farm","type":"address"},{"indexed":false,"internalType":"address","name":"treasury","type":"address"}],"name":"SetAddresses","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"priceFeed","type":"address"}],"name":"SetPfeedAddress","type":"event"},{"inputs":[],"name":"COLLECTION_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Ifarm","outputs":[{"internalType":"contract FarmV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farm","type":"address"},{"internalType":"address","name":"_moneyHandler","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"name":"addExternalAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"name":"buy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cards","outputs":[{"internalType":"enum CurrencyType","name":"cType","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"contract CollectionV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"_total","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"enum CurrencyType","name":"cType","type":"uint8"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_stone","type":"address"}],"name":"createCollection","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"farm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farmAddress","type":"address"},{"internalType":"address","name":"_collec","type":"address"}],"name":"giveRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_moneyAddress","type":"address"},{"internalType":"address","name":"_collec","type":"address"}],"name":"giveRoleMnyHnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moneyHand","outputs":[{"internalType":"contract MoneyHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moneyHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorSubscription","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operatorSubscription","type":"address"}],"name":"setOperatorSubscription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceFeed","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600880546001600160a01b031916733cc6cdda760b79bafa08df41ecfa224f810dceb617905534801561003657600080fd5b50610042600033610047565b6100f3565b6100518282610055565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610051576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556100af3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6155b480620001036000396000f3fe60806040523480156200001157600080fd5b5060043610620001af5760003560e01c8063741bef1a11620000f0578063db61c76e11620000a3578063ed5ca550116200007a578063ed5ca55014620003f4578063ed97afa21462000408578063fca513a8146200041f578063fdbda0ec146200043157600080fd5b8063db61c76e14620003bd578063e0b1af3b14620003d4578063ece8e52f14620003eb57600080fd5b8063741bef1a146200034a57806378c681ed146200035e5780638b9fa7b5146200037257806391d148541462000386578063a217fddf146200039d578063d547741f14620003a657600080fd5b806336e9332d1162000166578063530e784f116200013d578063530e784f14620002dc57806361d027b314620002f357806366990c6e146200030757806370908f21146200031e57600080fd5b806336e9332d146200029a57806338322de114620002ae57806339edbd7614620002c557600080fd5b806301ffc9a714620001b4578063145f8dd414620001e0578063248a9ca314620002175780632f2ff15d146200023d57806333136183146200025657806336568abe1462000283575b600080fd5b620001cb620001c536600462001033565b62000448565b60405190151581526020015b60405180910390f35b620002087f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c81565b604051908152602001620001d7565b62000208620002283660046200105f565b60009081526020819052604090206001015490565b620002546200024e36600462001096565b62000480565b005b6005546200026a906001600160a01b031681565b6040516001600160a01b039091168152602001620001d7565b620002546200029436600462001096565b620004ae565b6001546200026a906001600160a01b031681565b62000254620002bf366004620010c5565b62000534565b6200026a620002d63660046200111a565b620005df565b62000254620002ed36600462001253565b62000890565b6003546200026a906001600160a01b031681565b6200025462000318366004620010c5565b620008f2565b620003356200032f36600462001253565b62000969565b604051620001d79796959493929190620012e8565b6004546200026a906001600160a01b031681565b6002546200026a906001600160a01b031681565b6006546200026a906001600160a01b031681565b620001cb6200039736600462001096565b62000a3c565b62000208600081565b62000254620003b736600462001096565b62000a65565b620001cb620003ce3660046200134d565b62000a8e565b62000254620003e536600462001253565b62000b5c565b60075462000208565b6008546200026a906001600160a01b031681565b62000254620004193660046200138e565b62000b8c565b6004546001600160a01b03166200026a565b6200026a620004423660046200105f565b62000c1d565b60006001600160e01b03198216637965db0b60e01b14806200047a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000828152602081905260409020600101546200049d8162000c48565b620004a9838362000c57565b505050565b6001600160a01b0381163314620005245760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b62000530828262000cdf565b5050565b6000620005418162000c48565b600580546001600160a01b0319166001600160a01b03858116918217909255604051632f2ff15d60e01b81527f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c6004820152918416602483015290632f2ff15d906044015b600060405180830381600087803b158015620005c157600080fd5b505af1158015620005d6573d6000803e3d6000fd5b50505050505050565b600080620005ed8162000c48565b604080516101e081018252600061010082018190528e8252602082018e90528183018d9052606082018c9052608082018b905260a082018a90526001600160a01b0389811660c08401523060e08401526001548116610120840152600254811661014084015260035481166101608401528781166101808401528681166101a0840152600854166101c0830152915190919082906200068c9062000f7f565b620006989190620013cf565b604051809103906000f080158015620006b5573d6000803e3d6000fd5b50600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0383161790556040805160e081019091529091508088600281111562000725576200072562001271565b81526020018b81526020018e81526020018d81526020018c81526020018a81526020018f81525060096000836001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156200079e576200079e62001271565b0217905550602082810151600183015560408301516002830155606083015160038301556080830151600483015560a0830151600583015560c08301518051620007ef926006850192019062000f8d565b50506001546200080a91506001600160a01b03168262000534565b60025462000822906001600160a01b031682620008f2565b7f640e948cb46a272fdc822aa6dd3c93b38bdfb56da0a728ca575e2681a8c27cd28e8e8e8e8e8e8e308f600281111562000860576200086062001271565b60405162000877999897969594939291906200151e565b60405180910390a19d9c50505050505050505050505050565b60006200089d8162000c48565b600480546001600160a01b0319166001600160a01b0384169081179091556040519081527f1c1abd92e40526f2abdc20f0fcce8fa877aaa0fdefded20e3f95b2659e29321e9060200160405180910390a15050565b6000620008ff8162000c48565b600680546001600160a01b0319166001600160a01b03858116918217909255604051632f2ff15d60e01b81527f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c6004820152918416602483015290632f2ff15d90604401620005a6565b600960205260009081526040902080546001820154600283015460038401546004850154600586015460068701805460ff9097169795969495939492939192620009b39062001583565b80601f0160208091040260200160405190810160405280929190818152602001828054620009e19062001583565b801562000a325780601f1062000a065761010080835404028352916020019162000a32565b820191906000526020600020905b81548152906001019060200180831162000a1457829003601f168201915b5050505050905087565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60008281526020819052604090206001015462000a828162000c48565b620004a9838362000cdf565b60006001600160a01b038216331462000aea5760405162461bcd60e51b815260206004820181905260248201527f466163746f72793a20796f7520617265206e6f7420617574686f72697a65642060448201526064016200051b565b60405163cce7ec1360e01b81526001600160a01b0383811660048301526024820185905285919082169063cce7ec1390604401600060405180830381600087803b15801562000b3857600080fd5b505af115801562000b4d573d6000803e3d6000fd5b50600198975050505050505050565b600062000b698162000c48565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b600062000b998162000c48565b600180546001600160a01b038681166001600160a01b03199283168117909355600280548783169084168117909155600380549287169290931682179092556040805192835260208301939093528183015290517fbbfb274df95bebde0669697bf0d15986b4ad73e11c495ae4e2d08d1bc5c90bad9181900360600190a150505050565b6007818154811062000c2e57600080fd5b6000918252602090912001546001600160a01b0316905081565b62000c54813362000d47565b50565b62000c63828262000a3c565b62000530576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562000c9b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62000ceb828262000a3c565b1562000530576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b62000d53828262000a3c565b620005305762000d638162000dab565b62000d7083602062000dbe565b60405160200162000d83929190620015bf565b60408051601f198184030181529082905262461bcd60e51b82526200051b9160040162001638565b60606200047a6001600160a01b03831660145b6060600062000dcf83600262001663565b62000ddc90600262001685565b67ffffffffffffffff81111562000df75762000df7620010f4565b6040519080825280601f01601f19166020018201604052801562000e22576020820181803683370190505b509050600360fc1b8160008151811062000e405762000e40620016a0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000e725762000e72620016a0565b60200101906001600160f81b031916908160001a905350600062000e9884600262001663565b62000ea590600162001685565b90505b600181111562000f27576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000edd5762000edd620016a0565b1a60f81b82828151811062000ef65762000ef6620016a0565b60200101906001600160f81b031916908160001a90535060049490941c9362000f1f81620016b6565b905062000ea8565b50831562000f785760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200051b565b9392505050565b613eae80620016d183390190565b82805462000f9b9062001583565b90600052602060002090601f01602090048101928262000fbf57600085556200100a565b82601f1062000fda57805160ff19168380011785556200100a565b828001600101855582156200100a579182015b828111156200100a57825182559160200191906001019062000fed565b50620010189291506200101c565b5090565b5b808211156200101857600081556001016200101d565b6000602082840312156200104657600080fd5b81356001600160e01b03198116811462000f7857600080fd5b6000602082840312156200107257600080fd5b5035919050565b80356001600160a01b03811681146200109157600080fd5b919050565b60008060408385031215620010aa57600080fd5b82359150620010bc6020840162001079565b90509250929050565b60008060408385031215620010d957600080fd5b620010e48362001079565b9150620010bc6020840162001079565b634e487b7160e01b600052604160045260246000fd5b8035600381106200109157600080fd5b6000806000806000806000806000806101408b8d0312156200113b57600080fd5b67ffffffffffffffff808c3511156200115357600080fd5b8b358c018d601f8201126200116757600080fd5b81813511156200117b576200117b620010f4565b6040518135601f01601f19908116603f01168101908382118183101715620011a757620011a7620010f4565b81604052823581528f602084358501011115620011c357600080fd5b823560208401602083013760006020843583010152809d505050505060208b0135985060408b0135975060608b0135965060808b0135955060a08b013594506200121060c08c0162001079565b93506200122060e08c016200110a565b9250620012316101008c0162001079565b9150620012426101208c0162001079565b90509295989b9194979a5092959850565b6000602082840312156200126657600080fd5b62000f788262001079565b634e487b7160e01b600052602160045260246000fd5b60005b83811015620012a45781810151838201526020016200128a565b83811115620012b4576000848401525b50505050565b60008151808452620012d481602086016020860162001287565b601f01601f19169290920160200192915050565b6000600389106200130957634e487b7160e01b600052602160045260246000fd5b8882528760208301528660408301528560608301528460808301528360a083015260e060c08301526200134060e0830184620012ba565b9998505050505050505050565b6000806000606084860312156200136357600080fd5b6200136e8462001079565b925060208401359150620013856040850162001079565b90509250925092565b600080600060608486031215620013a457600080fd5b620013af8462001079565b9250620013bf6020850162001079565b9150620013856040850162001079565b60208152600082516101e0806020850152620013f0610200850183620012ba565b9150602085015160408501526040850151606085015260608501516080850152608085015160a085015260a085015160c085015260c08501516200143f60e08601826001600160a01b03169052565b5060e08501516101006200145d818701836001600160a01b03169052565b8601519050610120620014748682018360ff169052565b860151905061014062001491868201836001600160a01b03169052565b8601519050610160620014ae868201836001600160a01b03169052565b8601519050610180620014cb868201836001600160a01b03169052565b86015190506101a0620014e8868201836001600160a01b03169052565b86015190506101c062001505868201836001600160a01b03169052565b909501516001600160a01b031693019290925250919050565b6000610120808352620015348184018d620012ba565b602084019b909b52505060408101979097526060870195909552608086019390935260a08501919091526001600160a01b0390811660c08501521660e083015260ff1661010090910152919050565b600181811c908216806200159857607f821691505b602082108103620015b957634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620015f981601785016020880162001287565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516200162c81602884016020880162001287565b01602801949350505050565b60208152600062000f786020830184620012ba565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200168057620016806200164d565b500290565b600082198211156200169b576200169b6200164d565b500190565b634e487b7160e01b600052603260045260246000fd5b600081620016c857620016c86200164d565b50600019019056fe60806040523480156200001157600080fd5b5060405162003eae38038062003eae833981016040819052620000349162000888565b80516101c08201516001620000493362000266565b6daaeb6d7670e522a718067333cd4e3b156200018e578015620000dc57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000bd57600080fd5b505af1158015620000d2573d6000803e3d6000fd5b505050506200018e565b6001600160a01b038216156200012d5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000a2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200017457600080fd5b505af115801562000189573d6000803e3d6000fd5b505050505b506200019c905081620002b6565b506080810151600a556020810151600c819055600e556040810151600f55606081015160105560a0810151600b5560e0810151601180546001600160a01b0390921661010002610100600160a81b031990921691909117905560c08101516200020890600090620002cf565b601154620002279060009061010090046001600160a01b0316620002cf565b60c0810151620002379062000266565b6200025f816101800151826101a00151836101600151846101400151620002db60201b60201c565b5062000b5e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051620002cb906003906020840190620006ad565b5050565b620002cb828262000381565b6000620002e88162000425565b600780546001600160a01b038781166001600160a01b031992831681179093556008805488831690841681179091556009805487841690851681179091556012805493891693909416831790935560408051948552602085019190915283015260608201527faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a99060800160405180910390a15050505050565b60008281526004602090815260408083206001600160a01b038516845290915290205460ff16620002cb5760008281526004602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003e13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62000431813362000434565b50565b60008281526004602090815260408083206001600160a01b038516845290915290205460ff16620002cb576200047581620004cf60201b620014de1760201c565b6200048b836020620014f0620004ed821b17811c565b6040516020016200049e929190620009f1565b60408051601f198184030181529082905262461bcd60e51b8252620004c69160040162000a6a565b60405180910390fd5b6060620004e76001600160a01b0383166014620004ed565b92915050565b60606000620004fe83600262000ab5565b6200050b90600262000ad7565b6001600160401b0381111562000525576200052562000753565b6040519080825280601f01601f19166020018201604052801562000550576020820181803683370190505b509050600360fc1b816000815181106200056e576200056e62000af2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005a057620005a062000af2565b60200101906001600160f81b031916908160001a9053506000620005c684600262000ab5565b620005d390600162000ad7565b90505b600181111562000655576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200060b576200060b62000af2565b1a60f81b82828151811062000624576200062462000af2565b60200101906001600160f81b031916908160001a90535060049490941c936200064d8162000b08565b9050620005d6565b508315620006a65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620004c6565b9392505050565b828054620006bb9062000b22565b90600052602060002090601f016020900481019282620006df57600085556200072a565b82601f10620006fa57805160ff19168380011785556200072a565b828001600101855582156200072a579182015b828111156200072a5782518255916020019190600101906200070d565b50620007389291506200073c565b5090565b5b808211156200073857600081556001016200073d565b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b03811182821017156200078f576200078f62000753565b60405290565b60005b83811015620007b257818101518382015260200162000798565b83811115620007c2576000848401525b50505050565b600082601f830112620007da57600080fd5b81516001600160401b0380821115620007f757620007f762000753565b604051601f8301601f19908116603f0116810190828211818310171562000822576200082262000753565b816040528381528660208588010111156200083c57600080fd5b6200084f84602083016020890162000795565b9695505050505050565b80516001600160a01b03811681146200087157600080fd5b919050565b805160ff811681146200087157600080fd5b6000602082840312156200089b57600080fd5b81516001600160401b0380821115620008b357600080fd5b908301906101e08286031215620008c957600080fd5b620008d362000769565b825182811115620008e357600080fd5b620008f187828601620007c8565b8252506020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201526200093460c0840162000859565b60c08201526200094760e0840162000859565b60e082015261010091506200095e82840162000876565b8282015261012091506200097482840162000859565b8282015261014091506200098a82840162000859565b828201526101609150620009a082840162000859565b828201526101809150620009b682840162000859565b828201526101a09150620009cc82840162000859565b828201526101c09150620009e282840162000859565b91810191909152949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000a2b81601785016020880162000795565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000a5e81602884016020880162000795565b01602801949350505050565b602081526000825180602084015262000a8b81604085016020870162000795565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000ad25762000ad262000a9f565b500290565b6000821982111562000aed5762000aed62000a9f565b500190565b634e487b7160e01b600052603260045260246000fd5b60008162000b1a5762000b1a62000a9f565b506000190190565b600181811c9082168062000b3757607f821691505b60208210810362000b5857634e487b7160e01b600052602260045260246000fd5b50919050565b6133408062000b6e6000396000f3fe608060405234801561001057600080fd5b50600436106102735760003560e01c8063715018a611610151578063cce7ec13116100c3578063e985e9c511610087578063e985e9c514610558578063ecba222a14610594578063ed7ba898146105a6578063f242432a146105c5578063f2fde38b146105d8578063fc0c546a146105eb57600080fd5b8063cce7ec13146104f0578063d539139314610503578063d547741f1461052a578063d79d63be1461053d578063d81d0a151461054557600080fd5b80639be65a60116101155780639be65a601461048e578063a217fddf146104a1578063a22cb465146104a9578063aa8c217c146104bc578063ca405ce0146104c5578063ccb98ffc146104dd57600080fd5b8063715018a61461044657806378e979251461044e5780638b9fa7b5146104575780638da5cb5b1461046a57806391d148541461047b57600080fd5b8063303c6433116101ea57806348a0d754116101ae57806348a0d754146103e65780634b94f50e146103ef5780634e1273f4146103f75780634f9b1b4014610417578063548307711461042a57806370ba11131461043d57600080fd5b8063303c64331461038f5780633197cbb6146103a257806336568abe146103ab57806340c10f19146103be57806341f43434146103d157600080fd5b8063205396c71161023c578063205396c714610315578063248a9ca31461032a578063271f88b41461034d5780632ddbd13a146103605780632eb2c2d6146103695780632f2ff15d1461037c57600080fd5b8062fdd58e146102785780630167eb851461029e57806301ffc9a7146102c957806302c7e7af146102ec5780630e89341c146102f5575b600080fd5b61028b6102863660046127aa565b6105fe565b6040519081526020015b60405180910390f35b6008546102b1906001600160a01b031681565b6040516001600160a01b039091168152602001610295565b6102dc6102d73660046127ec565b610699565b6040519015158152602001610295565b61028b600d5481565b610308610303366004612809565b6106a4565b604051610295919061287a565b61032861032336600461289b565b610738565b005b61028b610338366004612809565b60009081526004602052604090206001015490565b61032861035b366004612809565b610781565b61028b600e5481565b610328610377366004612a04565b6107c9565b61032861038a366004612ab2565b6108c1565b6012546102b1906001600160a01b031681565b61028b60105481565b6103286103b9366004612ab2565b6108eb565b6103286103cc3660046127aa565b610969565b6102b16daaeb6d7670e522a718067333cd4e81565b61028b600c5481565b61028b610a1e565b61040a610405366004612ae2565b610b84565b6040516102959190612bea565b610328610425366004612bfd565b610cae565b610328610438366004612809565b610d52565b61028b600b5481565b610328610d92565b61028b600f5481565b6009546102b1906001600160a01b031681565b6000546001600160a01b03166102b1565b6102dc610489366004612ab2565b610da6565b61032861049c366004612c59565b610dd1565b61028b600081565b6103286104b7366004612c76565b610ebb565b61028b600a5481565b6011546102b19061010090046001600160a01b031681565b6103286104eb366004612809565b610f98565b6103286104fe3660046127aa565b610fd8565b61028b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610328610538366004612ab2565b6111cd565b61028b6111f2565b610328610553366004612ca4565b611244565b6102dc610566366004612d1a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600054600160a01b900460ff166102dc565b6011546105b39060ff1681565b60405160ff9091168152602001610295565b6103286105d3366004612d48565b61137a565b6103286105e6366004612c59565b611465565b6007546102b1906001600160a01b031681565b60006001600160a01b03831661066e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b60006106938261168c565b6060600380546106b390612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90612db1565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b50505050509050919050565b6000546001600160a01b0316331461076357604051635fc483c560e01b815260040160405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b600061078c816116b1565b600a8290556040518281527feb18ff59fd68414f119b648d3eaab6e6b3ed437e66c28ec8f3a59dedb8f6a750906020015b60405180910390a15050565b6000548590600160a01b900460ff161580156107f357506daaeb6d7670e522a718067333cd4e3b15155b156108ac57336001600160a01b0382160361081a5761081586868686866116bb565b6108b9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190612deb565b6108ac57604051633b79c77360e21b8152336004820152602401610665565b6108b986868686866116bb565b505050505050565b6000828152600460205260409020600101546108dc816116b1565b6108e68383611700565b505050565b6001600160a01b038116331461095b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610665565b6109658282611786565b5050565b6000610974816116b1565b61097f6005836117ed565b1561099c5760405162461bcd60e51b815260040161066590612e08565b6000600c54116109be5760405162461bcd60e51b815260040161066590612e38565b6109da8383600160405180602001604052806000815250611805565b6001600c60008282546109ed9190612e70565b925050819055506001600d6000828254610a079190612e87565b90915550610a1890506005836118e1565b50505050565b600080601160019054906101000a90046001600160a01b03166001600160a01b031663fca513a86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a989190612e9f565b6007546040516316b8e73160e01b81526001600160a01b039182166004820152919250600091908316906316b8e73190602401602060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0c9190612e9f565b6040516344a11f6560e01b81526001600160a01b0380831660048301529192506000918416906344a11f6590602401602060405180830381865afa158015610b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7c9190612ebc565b949350505050565b60608151835114610be95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610665565b6000835167ffffffffffffffff811115610c0557610c056128b8565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b50905060005b8451811015610ca657610c79858281518110610c5257610c52612ed5565b6020026020010151858381518110610c6c57610c6c612ed5565b60200260200101516105fe565b828281518110610c8b57610c8b612ed5565b6020908102919091010152610c9f81612eeb565b9050610c34565b509392505050565b6000610cb9816116b1565b600780546001600160a01b038781166001600160a01b031992831681179093556008805488831690841681179091556009805487841690851681179091556012805493891693909416831790935560408051948552602085019190915283015260608201527faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a99060800160405180910390a15050505050565b6000610d5d816116b1565b600f8290556040518281527fb1c3fe1bc33e06477df816d42ac9d600e037c768df5fbd04b622391bdd9b451c906020016107bd565b610d9a6118ed565b610da46000611947565b565b60009182526004602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610ddc816116b1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e479190612ebc565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0384169063a9059cbb906044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a189190612deb565b6000548290600160a01b900460ff16158015610ee557506daaeb6d7670e522a718067333cd4e3b15155b15610f8e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190612deb565b610f8e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610665565b6108e68383611997565b6000610fa3816116b1565b60108290556040518281527f18c072bc98b0b73c93817369c5f408345da097127acc038ec75ad73c261c265a906020016107bd565b60115461010090046001600160a01b031633146110545760405162461bcd60e51b815260206004820152603460248201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460448201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b6064820152608401610665565b61105f6005826117ed565b1561107c5760405162461bcd60e51b815260040161066590612e08565b6000600c541161109e5760405162461bcd60e51b815260040161066590612e38565b42600f54111580156110b1575042601054115b6110f65760405162461bcd60e51b815260206004820152601660248201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b6044820152606401610665565b6008546001600160a01b03161561111557611110826119a2565b61111e565b61111e82611b6e565b61113a8282600160405180602001604052806000815250611805565b6001600c600082825461114d9190612e70565b925050819055506001600d60008282546111679190612e87565b9091555061117890506005826118e1565b5080826001600160a01b0316306001600160a01b03167f16dd16959a056953a63cf14bf427881e762e54f03d86b864efea8238dd3b822f600a546040516111c191815260200190565b60405180910390a45050565b6000828152600460205260409020600101546111e8816116b1565b6108e68383611786565b6000806111fd610a1e565b9050600061121382670de0b6b3a7640000612f04565b600a546112339072047bf19673df52e37f2410011d100000000000612f04565b61123d9190612f23565b9392505050565b600061124f816116b1565b8251600c54116112715760405162461bcd60e51b815260040161066590612e38565b60005b83518110156112d9576112aa84828151811061129257611292612ed5565b602002602001015160056117ed90919063ffffffff16565b156112c75760405162461bcd60e51b815260040161066590612e08565b806112d181612eeb565b915050611274565b506112f584848460405180602001604052806000815250611eb6565b8251600c60008282546113089190612e70565b90915550508251600d8054600090611321908490612e87565b90915550600090505b83518110156113735761136084828151811061134857611348612ed5565b602002602001015160056118e190919063ffffffff16565b508061136b81612eeb565b91505061132a565b5050505050565b6000548590600160a01b900460ff161580156113a457506daaeb6d7670e522a718067333cd4e3b15155b1561145857336001600160a01b038216036113c6576108158686868686612002565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611415573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114399190612deb565b61145857604051633b79c77360e21b8152336004820152602401610665565b6108b98686868686612002565b61146d6118ed565b6001600160a01b0381166114d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610665565b6114db81611947565b50565b60606106936001600160a01b03831660145b606060006114ff836002612f04565b61150a906002612e87565b67ffffffffffffffff811115611522576115226128b8565b6040519080825280601f01601f19166020018201604052801561154c576020820181803683370190505b509050600360fc1b8160008151811061156757611567612ed5565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061159657611596612ed5565b60200101906001600160f81b031916908160001a90535060006115ba846002612f04565b6115c5906001612e87565b90505b600181111561163d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106115f9576115f9612ed5565b1a60f81b82828151811061160f5761160f612ed5565b60200101906001600160f81b031916908160001a90535060049490941c9361163681612f45565b90506115c8565b50831561123d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610665565b60006001600160e01b03198216637965db0b60e01b1480610693575061069382612047565b6114db8133612097565b6001600160a01b0385163314806116d757506116d78533610566565b6116f35760405162461bcd60e51b815260040161066590612f5c565b61137385858585856120f0565b61170a8282610da6565b6109655760008281526004602090815260408083206001600160a01b03851684529091529020805460ff191660011790556117423390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117908282610da6565b156109655760008281526004602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054151561123d565b6001600160a01b03841661182b5760405162461bcd60e51b815260040161066590612faa565b33600061183785612287565b9050600061184485612287565b905060008681526001602090815260408083206001600160a01b038b16845290915281208054879290611878908490612e87565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118d8836000898989896122d2565b50505050505050565b600061123d838361242d565b6000546001600160a01b03163314610da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610665565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61096533838361247c565b6008546040516375c7e97360e01b81526001600160a01b03838116600483015260009216906375c7e97390602401602060405180830381865afa1580156119ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a119190612ebc565b9050600a54811015611a655760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206861766520656e6f75676820706f696e74732021006044820152606401610665565b600854600a546040516367a09c2360e01b81526001600160a01b03858116600483015260248201929092529116906367a09c23906044016020604051808303816000875af1158015611abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611adf9190612deb565b611b2b5760405162461bcd60e51b815260206004820152601860248201527f5061796d656e742077617320756e7375636365737366756c00000000000000006044820152606401610665565b600a54604080516001600160a01b038516815260208101929092527ff2114d57b88c404287ba909c1d52f75395208c6b1a20716ae4b37c19435b29af91016107bd565b6000611b786111f2565b6007546040516370a0823160e01b81526001600160a01b0385811660048301529293508392909116906370a0823190602401602060405180830381865afa158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611beb9190612ebc565b1015611c495760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746044820152661a1a5cc813919560ca1b6064820152608401610665565b6000611c5782600b5461255c565b90506000611c658383612588565b6007546040516323b872dd60e01b81526001600160a01b038781166004830152306024830152604482018790529293509116906323b872dd906064016020604051808303816000875af1158015611cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce49190612deb565b5060075460125460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810185905291169063a9059cbb906044016020604051808303816000875af1158015611d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5e9190612deb565b5060075460095460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015611db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd89190612deb565b50600954604051631e4ee01b60e01b8152306004820152602481018390526001600160a01b0390911690631e4ee01b90604401600060405180830381600087803b158015611e2557600080fd5b505af1158015611e39573d6000803e3d6000fd5b505060408051308152602081018690527fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e65935001905060405180910390a160408051308152602081018390527f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a539910160405180910390a150505050565b6001600160a01b038416611edc5760405162461bcd60e51b815260040161066590612faa565b8151835114611efd5760405162461bcd60e51b815260040161066590612feb565b3360005b8451811015611f9a57838181518110611f1c57611f1c612ed5565b602002602001015160016000878481518110611f3a57611f3a612ed5565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611f829190612e87565b90915550819050611f9281612eeb565b915050611f01565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611feb929190613033565b60405180910390a461137381600087878787612594565b6001600160a01b03851633148061201e575061201e8533610566565b61203a5760405162461bcd60e51b815260040161066590612f5c565b611373858585858561264f565b60006001600160e01b03198216636cdb3d1360e11b148061207857506001600160e01b031982166303a24d0760e21b145b8061069357506301ffc9a760e01b6001600160e01b0319831614610693565b6120a18282610da6565b610965576120ae816114de565b6120b98360206114f0565b6040516020016120ca929190613058565b60408051601f198184030181529082905262461bcd60e51b82526106659160040161287a565b81518351146121115760405162461bcd60e51b815260040161066590612feb565b6001600160a01b0384166121375760405162461bcd60e51b8152600401610665906130cd565b3360005b845181101561222157600085828151811061215857612158612ed5565b60200260200101519050600085838151811061217657612176612ed5565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156121c75760405162461bcd60e51b815260040161066590613112565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612206908490612e87565b925050819055505050508061221a90612eeb565b905061213b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612271929190613033565b60405180910390a46108b9818787878787612594565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106122c1576122c1612ed5565b602090810291909101015292915050565b6001600160a01b0384163b156108b95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612316908990899088908890889060040161315c565b6020604051808303816000875af1925050508015612351575060408051601f3d908101601f1916820190925261234e918101906131a1565b60015b6123fd5761235d6131be565b806308c379a00361239657506123716131da565b8061237c5750612398565b8060405162461bcd60e51b8152600401610665919061287a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610665565b6001600160e01b0319811663f23a6e6160e01b146118d85760405162461bcd60e51b815260040161066590613264565b600081815260018301602052604081205461247457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610693565b506000610693565b816001600160a01b0316836001600160a01b0316036124ef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610665565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600080612569848461277d565b9050600061257f82670de0b6b3a7640000612789565b95945050505050565b600061123d8284612e70565b6001600160a01b0384163b156108b95760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906125d890899089908890889088906004016132ac565b6020604051808303816000875af1925050508015612613575060408051601f3d908101601f19168201909252612610918101906131a1565b60015b61261f5761235d6131be565b6001600160e01b0319811663bc197c8160e01b146118d85760405162461bcd60e51b815260040161066590613264565b6001600160a01b0384166126755760405162461bcd60e51b8152600401610665906130cd565b33600061268185612287565b9050600061268e85612287565b905060008681526001602090815260408083206001600160a01b038c168452909152902054858110156126d35760405162461bcd60e51b815260040161066590613112565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612712908490612e87565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612772848a8a8a8a8a6122d2565b505050505050505050565b600061123d8284612f04565b600061123d8284612f23565b6001600160a01b03811681146114db57600080fd5b600080604083850312156127bd57600080fd5b82356127c881612795565b946020939093013593505050565b6001600160e01b0319811681146114db57600080fd5b6000602082840312156127fe57600080fd5b813561123d816127d6565b60006020828403121561281b57600080fd5b5035919050565b60005b8381101561283d578181015183820152602001612825565b83811115610a185750506000910152565b60008151808452612866816020860160208601612822565b601f01601f19169290920160200192915050565b60208152600061123d602083018461284e565b80151581146114db57600080fd5b6000602082840312156128ad57600080fd5b813561123d8161288d565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156128f4576128f46128b8565b6040525050565b600067ffffffffffffffff821115612915576129156128b8565b5060051b60200190565b600082601f83011261293057600080fd5b8135602061293d826128fb565b60405161294a82826128ce565b83815260059390931b850182019282810191508684111561296a57600080fd5b8286015b84811015612985578035835291830191830161296e565b509695505050505050565b600082601f8301126129a157600080fd5b813567ffffffffffffffff8111156129bb576129bb6128b8565b6040516129d2601f8301601f1916602001826128ce565b8181528460208386010111156129e757600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612a1c57600080fd5b8535612a2781612795565b94506020860135612a3781612795565b9350604086013567ffffffffffffffff80821115612a5457600080fd5b612a6089838a0161291f565b94506060880135915080821115612a7657600080fd5b612a8289838a0161291f565b93506080880135915080821115612a9857600080fd5b50612aa588828901612990565b9150509295509295909350565b60008060408385031215612ac557600080fd5b823591506020830135612ad781612795565b809150509250929050565b60008060408385031215612af557600080fd5b823567ffffffffffffffff80821115612b0d57600080fd5b818501915085601f830112612b2157600080fd5b81356020612b2e826128fb565b604051612b3b82826128ce565b83815260059390931b8501820192828101915089841115612b5b57600080fd5b948201945b83861015612b82578535612b7381612795565b82529482019490820190612b60565b96505086013592505080821115612b9857600080fd5b50612ba58582860161291f565b9150509250929050565b600081518084526020808501945080840160005b83811015612bdf57815187529582019590820190600101612bc3565b509495945050505050565b60208152600061123d6020830184612baf565b60008060008060808587031215612c1357600080fd5b8435612c1e81612795565b93506020850135612c2e81612795565b92506040850135612c3e81612795565b91506060850135612c4e81612795565b939692955090935050565b600060208284031215612c6b57600080fd5b813561123d81612795565b60008060408385031215612c8957600080fd5b8235612c9481612795565b91506020830135612ad78161288d565b600080600060608486031215612cb957600080fd5b8335612cc481612795565b9250602084013567ffffffffffffffff80821115612ce157600080fd5b612ced8783880161291f565b93506040860135915080821115612d0357600080fd5b50612d108682870161291f565b9150509250925092565b60008060408385031215612d2d57600080fd5b8235612d3881612795565b91506020830135612ad781612795565b600080600080600060a08688031215612d6057600080fd5b8535612d6b81612795565b94506020860135612d7b81612795565b93506040860135925060608601359150608086013567ffffffffffffffff811115612da557600080fd5b612aa588828901612990565b600181811c90821680612dc557607f821691505b602082108103612de557634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612dfd57600080fd5b815161123d8161288d565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015612e8257612e82612e5a565b500390565b60008219821115612e9a57612e9a612e5a565b500190565b600060208284031215612eb157600080fd5b815161123d81612795565b600060208284031215612ece57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201612efd57612efd612e5a565b5060010190565b6000816000190483118215151615612f1e57612f1e612e5a565b500290565b600082612f4057634e487b7160e01b600052601260045260246000fd5b500490565b600081612f5457612f54612e5a565b506000190190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006130466040830185612baf565b828103602084015261257f8185612baf565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613090816017850160208801612822565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516130c1816028840160208801612822565b01602801949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906131969083018461284e565b979650505050505050565b6000602082840312156131b357600080fd5b815161123d816127d6565b600060033d11156131d75760046000803e5060005160e01c5b90565b600060443d10156131e85790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561321857505050505090565b82850191508151818111156132305750505050505090565b843d870101602082850101111561324a5750505050505090565b613259602082860101876128ce565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906132d890830186612baf565b82810360608401526132ea8186612baf565b905082810360808401526132fe818561284e565b9897505050505050505056fea2646970667358221220fbe3fee3b91f5ab84e923e42c53274b0396a4c3491c964674d337ce20399977f64736f6c634300080d0033a2646970667358221220bfee738d9e6b18d4556e23a8f2dad6da834cba3da913026ae7aa1766ca90493564736f6c634300080d0033
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620001af5760003560e01c8063741bef1a11620000f0578063db61c76e11620000a3578063ed5ca550116200007a578063ed5ca55014620003f4578063ed97afa21462000408578063fca513a8146200041f578063fdbda0ec146200043157600080fd5b8063db61c76e14620003bd578063e0b1af3b14620003d4578063ece8e52f14620003eb57600080fd5b8063741bef1a146200034a57806378c681ed146200035e5780638b9fa7b5146200037257806391d148541462000386578063a217fddf146200039d578063d547741f14620003a657600080fd5b806336e9332d1162000166578063530e784f116200013d578063530e784f14620002dc57806361d027b314620002f357806366990c6e146200030757806370908f21146200031e57600080fd5b806336e9332d146200029a57806338322de114620002ae57806339edbd7614620002c557600080fd5b806301ffc9a714620001b4578063145f8dd414620001e0578063248a9ca314620002175780632f2ff15d146200023d57806333136183146200025657806336568abe1462000283575b600080fd5b620001cb620001c536600462001033565b62000448565b60405190151581526020015b60405180910390f35b620002087f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c81565b604051908152602001620001d7565b62000208620002283660046200105f565b60009081526020819052604090206001015490565b620002546200024e36600462001096565b62000480565b005b6005546200026a906001600160a01b031681565b6040516001600160a01b039091168152602001620001d7565b620002546200029436600462001096565b620004ae565b6001546200026a906001600160a01b031681565b62000254620002bf366004620010c5565b62000534565b6200026a620002d63660046200111a565b620005df565b62000254620002ed36600462001253565b62000890565b6003546200026a906001600160a01b031681565b6200025462000318366004620010c5565b620008f2565b620003356200032f36600462001253565b62000969565b604051620001d79796959493929190620012e8565b6004546200026a906001600160a01b031681565b6002546200026a906001600160a01b031681565b6006546200026a906001600160a01b031681565b620001cb6200039736600462001096565b62000a3c565b62000208600081565b62000254620003b736600462001096565b62000a65565b620001cb620003ce3660046200134d565b62000a8e565b62000254620003e536600462001253565b62000b5c565b60075462000208565b6008546200026a906001600160a01b031681565b62000254620004193660046200138e565b62000b8c565b6004546001600160a01b03166200026a565b6200026a620004423660046200105f565b62000c1d565b60006001600160e01b03198216637965db0b60e01b14806200047a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000828152602081905260409020600101546200049d8162000c48565b620004a9838362000c57565b505050565b6001600160a01b0381163314620005245760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b62000530828262000cdf565b5050565b6000620005418162000c48565b600580546001600160a01b0319166001600160a01b03858116918217909255604051632f2ff15d60e01b81527f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c6004820152918416602483015290632f2ff15d906044015b600060405180830381600087803b158015620005c157600080fd5b505af1158015620005d6573d6000803e3d6000fd5b50505050505050565b600080620005ed8162000c48565b604080516101e081018252600061010082018190528e8252602082018e90528183018d9052606082018c9052608082018b905260a082018a90526001600160a01b0389811660c08401523060e08401526001548116610120840152600254811661014084015260035481166101608401528781166101808401528681166101a0840152600854166101c0830152915190919082906200068c9062000f7f565b620006989190620013cf565b604051809103906000f080158015620006b5573d6000803e3d6000fd5b50600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0383161790556040805160e081019091529091508088600281111562000725576200072562001271565b81526020018b81526020018e81526020018d81526020018c81526020018a81526020018f81525060096000836001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156200079e576200079e62001271565b0217905550602082810151600183015560408301516002830155606083015160038301556080830151600483015560a0830151600583015560c08301518051620007ef926006850192019062000f8d565b50506001546200080a91506001600160a01b03168262000534565b60025462000822906001600160a01b031682620008f2565b7f640e948cb46a272fdc822aa6dd3c93b38bdfb56da0a728ca575e2681a8c27cd28e8e8e8e8e8e8e308f600281111562000860576200086062001271565b60405162000877999897969594939291906200151e565b60405180910390a19d9c50505050505050505050505050565b60006200089d8162000c48565b600480546001600160a01b0319166001600160a01b0384169081179091556040519081527f1c1abd92e40526f2abdc20f0fcce8fa877aaa0fdefded20e3f95b2659e29321e9060200160405180910390a15050565b6000620008ff8162000c48565b600680546001600160a01b0319166001600160a01b03858116918217909255604051632f2ff15d60e01b81527f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c6004820152918416602483015290632f2ff15d90604401620005a6565b600960205260009081526040902080546001820154600283015460038401546004850154600586015460068701805460ff9097169795969495939492939192620009b39062001583565b80601f0160208091040260200160405190810160405280929190818152602001828054620009e19062001583565b801562000a325780601f1062000a065761010080835404028352916020019162000a32565b820191906000526020600020905b81548152906001019060200180831162000a1457829003601f168201915b5050505050905087565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60008281526020819052604090206001015462000a828162000c48565b620004a9838362000cdf565b60006001600160a01b038216331462000aea5760405162461bcd60e51b815260206004820181905260248201527f466163746f72793a20796f7520617265206e6f7420617574686f72697a65642060448201526064016200051b565b60405163cce7ec1360e01b81526001600160a01b0383811660048301526024820185905285919082169063cce7ec1390604401600060405180830381600087803b15801562000b3857600080fd5b505af115801562000b4d573d6000803e3d6000fd5b50600198975050505050505050565b600062000b698162000c48565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b600062000b998162000c48565b600180546001600160a01b038681166001600160a01b03199283168117909355600280548783169084168117909155600380549287169290931682179092556040805192835260208301939093528183015290517fbbfb274df95bebde0669697bf0d15986b4ad73e11c495ae4e2d08d1bc5c90bad9181900360600190a150505050565b6007818154811062000c2e57600080fd5b6000918252602090912001546001600160a01b0316905081565b62000c54813362000d47565b50565b62000c63828262000a3c565b62000530576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562000c9b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62000ceb828262000a3c565b1562000530576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b62000d53828262000a3c565b620005305762000d638162000dab565b62000d7083602062000dbe565b60405160200162000d83929190620015bf565b60408051601f198184030181529082905262461bcd60e51b82526200051b9160040162001638565b60606200047a6001600160a01b03831660145b6060600062000dcf83600262001663565b62000ddc90600262001685565b67ffffffffffffffff81111562000df75762000df7620010f4565b6040519080825280601f01601f19166020018201604052801562000e22576020820181803683370190505b509050600360fc1b8160008151811062000e405762000e40620016a0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000e725762000e72620016a0565b60200101906001600160f81b031916908160001a905350600062000e9884600262001663565b62000ea590600162001685565b90505b600181111562000f27576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000edd5762000edd620016a0565b1a60f81b82828151811062000ef65762000ef6620016a0565b60200101906001600160f81b031916908160001a90535060049490941c9362000f1f81620016b6565b905062000ea8565b50831562000f785760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200051b565b9392505050565b613eae80620016d183390190565b82805462000f9b9062001583565b90600052602060002090601f01602090048101928262000fbf57600085556200100a565b82601f1062000fda57805160ff19168380011785556200100a565b828001600101855582156200100a579182015b828111156200100a57825182559160200191906001019062000fed565b50620010189291506200101c565b5090565b5b808211156200101857600081556001016200101d565b6000602082840312156200104657600080fd5b81356001600160e01b03198116811462000f7857600080fd5b6000602082840312156200107257600080fd5b5035919050565b80356001600160a01b03811681146200109157600080fd5b919050565b60008060408385031215620010aa57600080fd5b82359150620010bc6020840162001079565b90509250929050565b60008060408385031215620010d957600080fd5b620010e48362001079565b9150620010bc6020840162001079565b634e487b7160e01b600052604160045260246000fd5b8035600381106200109157600080fd5b6000806000806000806000806000806101408b8d0312156200113b57600080fd5b67ffffffffffffffff808c3511156200115357600080fd5b8b358c018d601f8201126200116757600080fd5b81813511156200117b576200117b620010f4565b6040518135601f01601f19908116603f01168101908382118183101715620011a757620011a7620010f4565b81604052823581528f602084358501011115620011c357600080fd5b823560208401602083013760006020843583010152809d505050505060208b0135985060408b0135975060608b0135965060808b0135955060a08b013594506200121060c08c0162001079565b93506200122060e08c016200110a565b9250620012316101008c0162001079565b9150620012426101208c0162001079565b90509295989b9194979a5092959850565b6000602082840312156200126657600080fd5b62000f788262001079565b634e487b7160e01b600052602160045260246000fd5b60005b83811015620012a45781810151838201526020016200128a565b83811115620012b4576000848401525b50505050565b60008151808452620012d481602086016020860162001287565b601f01601f19169290920160200192915050565b6000600389106200130957634e487b7160e01b600052602160045260246000fd5b8882528760208301528660408301528560608301528460808301528360a083015260e060c08301526200134060e0830184620012ba565b9998505050505050505050565b6000806000606084860312156200136357600080fd5b6200136e8462001079565b925060208401359150620013856040850162001079565b90509250925092565b600080600060608486031215620013a457600080fd5b620013af8462001079565b9250620013bf6020850162001079565b9150620013856040850162001079565b60208152600082516101e0806020850152620013f0610200850183620012ba565b9150602085015160408501526040850151606085015260608501516080850152608085015160a085015260a085015160c085015260c08501516200143f60e08601826001600160a01b03169052565b5060e08501516101006200145d818701836001600160a01b03169052565b8601519050610120620014748682018360ff169052565b860151905061014062001491868201836001600160a01b03169052565b8601519050610160620014ae868201836001600160a01b03169052565b8601519050610180620014cb868201836001600160a01b03169052565b86015190506101a0620014e8868201836001600160a01b03169052565b86015190506101c062001505868201836001600160a01b03169052565b909501516001600160a01b031693019290925250919050565b6000610120808352620015348184018d620012ba565b602084019b909b52505060408101979097526060870195909552608086019390935260a08501919091526001600160a01b0390811660c08501521660e083015260ff1661010090910152919050565b600181811c908216806200159857607f821691505b602082108103620015b957634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620015f981601785016020880162001287565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516200162c81602884016020880162001287565b01602801949350505050565b60208152600062000f786020830184620012ba565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200168057620016806200164d565b500290565b600082198211156200169b576200169b6200164d565b500190565b634e487b7160e01b600052603260045260246000fd5b600081620016c857620016c86200164d565b50600019019056fe60806040523480156200001157600080fd5b5060405162003eae38038062003eae833981016040819052620000349162000888565b80516101c08201516001620000493362000266565b6daaeb6d7670e522a718067333cd4e3b156200018e578015620000dc57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000bd57600080fd5b505af1158015620000d2573d6000803e3d6000fd5b505050506200018e565b6001600160a01b038216156200012d5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000a2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200017457600080fd5b505af115801562000189573d6000803e3d6000fd5b505050505b506200019c905081620002b6565b506080810151600a556020810151600c819055600e556040810151600f55606081015160105560a0810151600b5560e0810151601180546001600160a01b0390921661010002610100600160a81b031990921691909117905560c08101516200020890600090620002cf565b601154620002279060009061010090046001600160a01b0316620002cf565b60c0810151620002379062000266565b6200025f816101800151826101a00151836101600151846101400151620002db60201b60201c565b5062000b5e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051620002cb906003906020840190620006ad565b5050565b620002cb828262000381565b6000620002e88162000425565b600780546001600160a01b038781166001600160a01b031992831681179093556008805488831690841681179091556009805487841690851681179091556012805493891693909416831790935560408051948552602085019190915283015260608201527faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a99060800160405180910390a15050505050565b60008281526004602090815260408083206001600160a01b038516845290915290205460ff16620002cb5760008281526004602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003e13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62000431813362000434565b50565b60008281526004602090815260408083206001600160a01b038516845290915290205460ff16620002cb576200047581620004cf60201b620014de1760201c565b6200048b836020620014f0620004ed821b17811c565b6040516020016200049e929190620009f1565b60408051601f198184030181529082905262461bcd60e51b8252620004c69160040162000a6a565b60405180910390fd5b6060620004e76001600160a01b0383166014620004ed565b92915050565b60606000620004fe83600262000ab5565b6200050b90600262000ad7565b6001600160401b0381111562000525576200052562000753565b6040519080825280601f01601f19166020018201604052801562000550576020820181803683370190505b509050600360fc1b816000815181106200056e576200056e62000af2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005a057620005a062000af2565b60200101906001600160f81b031916908160001a9053506000620005c684600262000ab5565b620005d390600162000ad7565b90505b600181111562000655576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200060b576200060b62000af2565b1a60f81b82828151811062000624576200062462000af2565b60200101906001600160f81b031916908160001a90535060049490941c936200064d8162000b08565b9050620005d6565b508315620006a65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620004c6565b9392505050565b828054620006bb9062000b22565b90600052602060002090601f016020900481019282620006df57600085556200072a565b82601f10620006fa57805160ff19168380011785556200072a565b828001600101855582156200072a579182015b828111156200072a5782518255916020019190600101906200070d565b50620007389291506200073c565b5090565b5b808211156200073857600081556001016200073d565b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b03811182821017156200078f576200078f62000753565b60405290565b60005b83811015620007b257818101518382015260200162000798565b83811115620007c2576000848401525b50505050565b600082601f830112620007da57600080fd5b81516001600160401b0380821115620007f757620007f762000753565b604051601f8301601f19908116603f0116810190828211818310171562000822576200082262000753565b816040528381528660208588010111156200083c57600080fd5b6200084f84602083016020890162000795565b9695505050505050565b80516001600160a01b03811681146200087157600080fd5b919050565b805160ff811681146200087157600080fd5b6000602082840312156200089b57600080fd5b81516001600160401b0380821115620008b357600080fd5b908301906101e08286031215620008c957600080fd5b620008d362000769565b825182811115620008e357600080fd5b620008f187828601620007c8565b8252506020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201526200093460c0840162000859565b60c08201526200094760e0840162000859565b60e082015261010091506200095e82840162000876565b8282015261012091506200097482840162000859565b8282015261014091506200098a82840162000859565b828201526101609150620009a082840162000859565b828201526101809150620009b682840162000859565b828201526101a09150620009cc82840162000859565b828201526101c09150620009e282840162000859565b91810191909152949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000a2b81601785016020880162000795565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000a5e81602884016020880162000795565b01602801949350505050565b602081526000825180602084015262000a8b81604085016020870162000795565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000ad25762000ad262000a9f565b500290565b6000821982111562000aed5762000aed62000a9f565b500190565b634e487b7160e01b600052603260045260246000fd5b60008162000b1a5762000b1a62000a9f565b506000190190565b600181811c9082168062000b3757607f821691505b60208210810362000b5857634e487b7160e01b600052602260045260246000fd5b50919050565b6133408062000b6e6000396000f3fe608060405234801561001057600080fd5b50600436106102735760003560e01c8063715018a611610151578063cce7ec13116100c3578063e985e9c511610087578063e985e9c514610558578063ecba222a14610594578063ed7ba898146105a6578063f242432a146105c5578063f2fde38b146105d8578063fc0c546a146105eb57600080fd5b8063cce7ec13146104f0578063d539139314610503578063d547741f1461052a578063d79d63be1461053d578063d81d0a151461054557600080fd5b80639be65a60116101155780639be65a601461048e578063a217fddf146104a1578063a22cb465146104a9578063aa8c217c146104bc578063ca405ce0146104c5578063ccb98ffc146104dd57600080fd5b8063715018a61461044657806378e979251461044e5780638b9fa7b5146104575780638da5cb5b1461046a57806391d148541461047b57600080fd5b8063303c6433116101ea57806348a0d754116101ae57806348a0d754146103e65780634b94f50e146103ef5780634e1273f4146103f75780634f9b1b4014610417578063548307711461042a57806370ba11131461043d57600080fd5b8063303c64331461038f5780633197cbb6146103a257806336568abe146103ab57806340c10f19146103be57806341f43434146103d157600080fd5b8063205396c71161023c578063205396c714610315578063248a9ca31461032a578063271f88b41461034d5780632ddbd13a146103605780632eb2c2d6146103695780632f2ff15d1461037c57600080fd5b8062fdd58e146102785780630167eb851461029e57806301ffc9a7146102c957806302c7e7af146102ec5780630e89341c146102f5575b600080fd5b61028b6102863660046127aa565b6105fe565b6040519081526020015b60405180910390f35b6008546102b1906001600160a01b031681565b6040516001600160a01b039091168152602001610295565b6102dc6102d73660046127ec565b610699565b6040519015158152602001610295565b61028b600d5481565b610308610303366004612809565b6106a4565b604051610295919061287a565b61032861032336600461289b565b610738565b005b61028b610338366004612809565b60009081526004602052604090206001015490565b61032861035b366004612809565b610781565b61028b600e5481565b610328610377366004612a04565b6107c9565b61032861038a366004612ab2565b6108c1565b6012546102b1906001600160a01b031681565b61028b60105481565b6103286103b9366004612ab2565b6108eb565b6103286103cc3660046127aa565b610969565b6102b16daaeb6d7670e522a718067333cd4e81565b61028b600c5481565b61028b610a1e565b61040a610405366004612ae2565b610b84565b6040516102959190612bea565b610328610425366004612bfd565b610cae565b610328610438366004612809565b610d52565b61028b600b5481565b610328610d92565b61028b600f5481565b6009546102b1906001600160a01b031681565b6000546001600160a01b03166102b1565b6102dc610489366004612ab2565b610da6565b61032861049c366004612c59565b610dd1565b61028b600081565b6103286104b7366004612c76565b610ebb565b61028b600a5481565b6011546102b19061010090046001600160a01b031681565b6103286104eb366004612809565b610f98565b6103286104fe3660046127aa565b610fd8565b61028b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610328610538366004612ab2565b6111cd565b61028b6111f2565b610328610553366004612ca4565b611244565b6102dc610566366004612d1a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600054600160a01b900460ff166102dc565b6011546105b39060ff1681565b60405160ff9091168152602001610295565b6103286105d3366004612d48565b61137a565b6103286105e6366004612c59565b611465565b6007546102b1906001600160a01b031681565b60006001600160a01b03831661066e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b60006106938261168c565b6060600380546106b390612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90612db1565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b50505050509050919050565b6000546001600160a01b0316331461076357604051635fc483c560e01b815260040160405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b600061078c816116b1565b600a8290556040518281527feb18ff59fd68414f119b648d3eaab6e6b3ed437e66c28ec8f3a59dedb8f6a750906020015b60405180910390a15050565b6000548590600160a01b900460ff161580156107f357506daaeb6d7670e522a718067333cd4e3b15155b156108ac57336001600160a01b0382160361081a5761081586868686866116bb565b6108b9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190612deb565b6108ac57604051633b79c77360e21b8152336004820152602401610665565b6108b986868686866116bb565b505050505050565b6000828152600460205260409020600101546108dc816116b1565b6108e68383611700565b505050565b6001600160a01b038116331461095b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610665565b6109658282611786565b5050565b6000610974816116b1565b61097f6005836117ed565b1561099c5760405162461bcd60e51b815260040161066590612e08565b6000600c54116109be5760405162461bcd60e51b815260040161066590612e38565b6109da8383600160405180602001604052806000815250611805565b6001600c60008282546109ed9190612e70565b925050819055506001600d6000828254610a079190612e87565b90915550610a1890506005836118e1565b50505050565b600080601160019054906101000a90046001600160a01b03166001600160a01b031663fca513a86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a989190612e9f565b6007546040516316b8e73160e01b81526001600160a01b039182166004820152919250600091908316906316b8e73190602401602060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0c9190612e9f565b6040516344a11f6560e01b81526001600160a01b0380831660048301529192506000918416906344a11f6590602401602060405180830381865afa158015610b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7c9190612ebc565b949350505050565b60608151835114610be95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610665565b6000835167ffffffffffffffff811115610c0557610c056128b8565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b50905060005b8451811015610ca657610c79858281518110610c5257610c52612ed5565b6020026020010151858381518110610c6c57610c6c612ed5565b60200260200101516105fe565b828281518110610c8b57610c8b612ed5565b6020908102919091010152610c9f81612eeb565b9050610c34565b509392505050565b6000610cb9816116b1565b600780546001600160a01b038781166001600160a01b031992831681179093556008805488831690841681179091556009805487841690851681179091556012805493891693909416831790935560408051948552602085019190915283015260608201527faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a99060800160405180910390a15050505050565b6000610d5d816116b1565b600f8290556040518281527fb1c3fe1bc33e06477df816d42ac9d600e037c768df5fbd04b622391bdd9b451c906020016107bd565b610d9a6118ed565b610da46000611947565b565b60009182526004602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610ddc816116b1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e479190612ebc565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0384169063a9059cbb906044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a189190612deb565b6000548290600160a01b900460ff16158015610ee557506daaeb6d7670e522a718067333cd4e3b15155b15610f8e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190612deb565b610f8e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610665565b6108e68383611997565b6000610fa3816116b1565b60108290556040518281527f18c072bc98b0b73c93817369c5f408345da097127acc038ec75ad73c261c265a906020016107bd565b60115461010090046001600160a01b031633146110545760405162461bcd60e51b815260206004820152603460248201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460448201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b6064820152608401610665565b61105f6005826117ed565b1561107c5760405162461bcd60e51b815260040161066590612e08565b6000600c541161109e5760405162461bcd60e51b815260040161066590612e38565b42600f54111580156110b1575042601054115b6110f65760405162461bcd60e51b815260206004820152601660248201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b6044820152606401610665565b6008546001600160a01b03161561111557611110826119a2565b61111e565b61111e82611b6e565b61113a8282600160405180602001604052806000815250611805565b6001600c600082825461114d9190612e70565b925050819055506001600d60008282546111679190612e87565b9091555061117890506005826118e1565b5080826001600160a01b0316306001600160a01b03167f16dd16959a056953a63cf14bf427881e762e54f03d86b864efea8238dd3b822f600a546040516111c191815260200190565b60405180910390a45050565b6000828152600460205260409020600101546111e8816116b1565b6108e68383611786565b6000806111fd610a1e565b9050600061121382670de0b6b3a7640000612f04565b600a546112339072047bf19673df52e37f2410011d100000000000612f04565b61123d9190612f23565b9392505050565b600061124f816116b1565b8251600c54116112715760405162461bcd60e51b815260040161066590612e38565b60005b83518110156112d9576112aa84828151811061129257611292612ed5565b602002602001015160056117ed90919063ffffffff16565b156112c75760405162461bcd60e51b815260040161066590612e08565b806112d181612eeb565b915050611274565b506112f584848460405180602001604052806000815250611eb6565b8251600c60008282546113089190612e70565b90915550508251600d8054600090611321908490612e87565b90915550600090505b83518110156113735761136084828151811061134857611348612ed5565b602002602001015160056118e190919063ffffffff16565b508061136b81612eeb565b91505061132a565b5050505050565b6000548590600160a01b900460ff161580156113a457506daaeb6d7670e522a718067333cd4e3b15155b1561145857336001600160a01b038216036113c6576108158686868686612002565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611415573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114399190612deb565b61145857604051633b79c77360e21b8152336004820152602401610665565b6108b98686868686612002565b61146d6118ed565b6001600160a01b0381166114d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610665565b6114db81611947565b50565b60606106936001600160a01b03831660145b606060006114ff836002612f04565b61150a906002612e87565b67ffffffffffffffff811115611522576115226128b8565b6040519080825280601f01601f19166020018201604052801561154c576020820181803683370190505b509050600360fc1b8160008151811061156757611567612ed5565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061159657611596612ed5565b60200101906001600160f81b031916908160001a90535060006115ba846002612f04565b6115c5906001612e87565b90505b600181111561163d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106115f9576115f9612ed5565b1a60f81b82828151811061160f5761160f612ed5565b60200101906001600160f81b031916908160001a90535060049490941c9361163681612f45565b90506115c8565b50831561123d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610665565b60006001600160e01b03198216637965db0b60e01b1480610693575061069382612047565b6114db8133612097565b6001600160a01b0385163314806116d757506116d78533610566565b6116f35760405162461bcd60e51b815260040161066590612f5c565b61137385858585856120f0565b61170a8282610da6565b6109655760008281526004602090815260408083206001600160a01b03851684529091529020805460ff191660011790556117423390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117908282610da6565b156109655760008281526004602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054151561123d565b6001600160a01b03841661182b5760405162461bcd60e51b815260040161066590612faa565b33600061183785612287565b9050600061184485612287565b905060008681526001602090815260408083206001600160a01b038b16845290915281208054879290611878908490612e87565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118d8836000898989896122d2565b50505050505050565b600061123d838361242d565b6000546001600160a01b03163314610da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610665565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61096533838361247c565b6008546040516375c7e97360e01b81526001600160a01b03838116600483015260009216906375c7e97390602401602060405180830381865afa1580156119ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a119190612ebc565b9050600a54811015611a655760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206861766520656e6f75676820706f696e74732021006044820152606401610665565b600854600a546040516367a09c2360e01b81526001600160a01b03858116600483015260248201929092529116906367a09c23906044016020604051808303816000875af1158015611abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611adf9190612deb565b611b2b5760405162461bcd60e51b815260206004820152601860248201527f5061796d656e742077617320756e7375636365737366756c00000000000000006044820152606401610665565b600a54604080516001600160a01b038516815260208101929092527ff2114d57b88c404287ba909c1d52f75395208c6b1a20716ae4b37c19435b29af91016107bd565b6000611b786111f2565b6007546040516370a0823160e01b81526001600160a01b0385811660048301529293508392909116906370a0823190602401602060405180830381865afa158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611beb9190612ebc565b1015611c495760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746044820152661a1a5cc813919560ca1b6064820152608401610665565b6000611c5782600b5461255c565b90506000611c658383612588565b6007546040516323b872dd60e01b81526001600160a01b038781166004830152306024830152604482018790529293509116906323b872dd906064016020604051808303816000875af1158015611cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce49190612deb565b5060075460125460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810185905291169063a9059cbb906044016020604051808303816000875af1158015611d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5e9190612deb565b5060075460095460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015611db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd89190612deb565b50600954604051631e4ee01b60e01b8152306004820152602481018390526001600160a01b0390911690631e4ee01b90604401600060405180830381600087803b158015611e2557600080fd5b505af1158015611e39573d6000803e3d6000fd5b505060408051308152602081018690527fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e65935001905060405180910390a160408051308152602081018390527f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a539910160405180910390a150505050565b6001600160a01b038416611edc5760405162461bcd60e51b815260040161066590612faa565b8151835114611efd5760405162461bcd60e51b815260040161066590612feb565b3360005b8451811015611f9a57838181518110611f1c57611f1c612ed5565b602002602001015160016000878481518110611f3a57611f3a612ed5565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611f829190612e87565b90915550819050611f9281612eeb565b915050611f01565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611feb929190613033565b60405180910390a461137381600087878787612594565b6001600160a01b03851633148061201e575061201e8533610566565b61203a5760405162461bcd60e51b815260040161066590612f5c565b611373858585858561264f565b60006001600160e01b03198216636cdb3d1360e11b148061207857506001600160e01b031982166303a24d0760e21b145b8061069357506301ffc9a760e01b6001600160e01b0319831614610693565b6120a18282610da6565b610965576120ae816114de565b6120b98360206114f0565b6040516020016120ca929190613058565b60408051601f198184030181529082905262461bcd60e51b82526106659160040161287a565b81518351146121115760405162461bcd60e51b815260040161066590612feb565b6001600160a01b0384166121375760405162461bcd60e51b8152600401610665906130cd565b3360005b845181101561222157600085828151811061215857612158612ed5565b60200260200101519050600085838151811061217657612176612ed5565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156121c75760405162461bcd60e51b815260040161066590613112565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612206908490612e87565b925050819055505050508061221a90612eeb565b905061213b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612271929190613033565b60405180910390a46108b9818787878787612594565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106122c1576122c1612ed5565b602090810291909101015292915050565b6001600160a01b0384163b156108b95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612316908990899088908890889060040161315c565b6020604051808303816000875af1925050508015612351575060408051601f3d908101601f1916820190925261234e918101906131a1565b60015b6123fd5761235d6131be565b806308c379a00361239657506123716131da565b8061237c5750612398565b8060405162461bcd60e51b8152600401610665919061287a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610665565b6001600160e01b0319811663f23a6e6160e01b146118d85760405162461bcd60e51b815260040161066590613264565b600081815260018301602052604081205461247457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610693565b506000610693565b816001600160a01b0316836001600160a01b0316036124ef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610665565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600080612569848461277d565b9050600061257f82670de0b6b3a7640000612789565b95945050505050565b600061123d8284612e70565b6001600160a01b0384163b156108b95760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906125d890899089908890889088906004016132ac565b6020604051808303816000875af1925050508015612613575060408051601f3d908101601f19168201909252612610918101906131a1565b60015b61261f5761235d6131be565b6001600160e01b0319811663bc197c8160e01b146118d85760405162461bcd60e51b815260040161066590613264565b6001600160a01b0384166126755760405162461bcd60e51b8152600401610665906130cd565b33600061268185612287565b9050600061268e85612287565b905060008681526001602090815260408083206001600160a01b038c168452909152902054858110156126d35760405162461bcd60e51b815260040161066590613112565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612712908490612e87565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612772848a8a8a8a8a6122d2565b505050505050505050565b600061123d8284612f04565b600061123d8284612f23565b6001600160a01b03811681146114db57600080fd5b600080604083850312156127bd57600080fd5b82356127c881612795565b946020939093013593505050565b6001600160e01b0319811681146114db57600080fd5b6000602082840312156127fe57600080fd5b813561123d816127d6565b60006020828403121561281b57600080fd5b5035919050565b60005b8381101561283d578181015183820152602001612825565b83811115610a185750506000910152565b60008151808452612866816020860160208601612822565b601f01601f19169290920160200192915050565b60208152600061123d602083018461284e565b80151581146114db57600080fd5b6000602082840312156128ad57600080fd5b813561123d8161288d565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156128f4576128f46128b8565b6040525050565b600067ffffffffffffffff821115612915576129156128b8565b5060051b60200190565b600082601f83011261293057600080fd5b8135602061293d826128fb565b60405161294a82826128ce565b83815260059390931b850182019282810191508684111561296a57600080fd5b8286015b84811015612985578035835291830191830161296e565b509695505050505050565b600082601f8301126129a157600080fd5b813567ffffffffffffffff8111156129bb576129bb6128b8565b6040516129d2601f8301601f1916602001826128ce565b8181528460208386010111156129e757600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612a1c57600080fd5b8535612a2781612795565b94506020860135612a3781612795565b9350604086013567ffffffffffffffff80821115612a5457600080fd5b612a6089838a0161291f565b94506060880135915080821115612a7657600080fd5b612a8289838a0161291f565b93506080880135915080821115612a9857600080fd5b50612aa588828901612990565b9150509295509295909350565b60008060408385031215612ac557600080fd5b823591506020830135612ad781612795565b809150509250929050565b60008060408385031215612af557600080fd5b823567ffffffffffffffff80821115612b0d57600080fd5b818501915085601f830112612b2157600080fd5b81356020612b2e826128fb565b604051612b3b82826128ce565b83815260059390931b8501820192828101915089841115612b5b57600080fd5b948201945b83861015612b82578535612b7381612795565b82529482019490820190612b60565b96505086013592505080821115612b9857600080fd5b50612ba58582860161291f565b9150509250929050565b600081518084526020808501945080840160005b83811015612bdf57815187529582019590820190600101612bc3565b509495945050505050565b60208152600061123d6020830184612baf565b60008060008060808587031215612c1357600080fd5b8435612c1e81612795565b93506020850135612c2e81612795565b92506040850135612c3e81612795565b91506060850135612c4e81612795565b939692955090935050565b600060208284031215612c6b57600080fd5b813561123d81612795565b60008060408385031215612c8957600080fd5b8235612c9481612795565b91506020830135612ad78161288d565b600080600060608486031215612cb957600080fd5b8335612cc481612795565b9250602084013567ffffffffffffffff80821115612ce157600080fd5b612ced8783880161291f565b93506040860135915080821115612d0357600080fd5b50612d108682870161291f565b9150509250925092565b60008060408385031215612d2d57600080fd5b8235612d3881612795565b91506020830135612ad781612795565b600080600080600060a08688031215612d6057600080fd5b8535612d6b81612795565b94506020860135612d7b81612795565b93506040860135925060608601359150608086013567ffffffffffffffff811115612da557600080fd5b612aa588828901612990565b600181811c90821680612dc557607f821691505b602082108103612de557634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612dfd57600080fd5b815161123d8161288d565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015612e8257612e82612e5a565b500390565b60008219821115612e9a57612e9a612e5a565b500190565b600060208284031215612eb157600080fd5b815161123d81612795565b600060208284031215612ece57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201612efd57612efd612e5a565b5060010190565b6000816000190483118215151615612f1e57612f1e612e5a565b500290565b600082612f4057634e487b7160e01b600052601260045260246000fd5b500490565b600081612f5457612f54612e5a565b506000190190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006130466040830185612baf565b828103602084015261257f8185612baf565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613090816017850160208801612822565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516130c1816028840160208801612822565b01602801949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906131969083018461284e565b979650505050505050565b6000602082840312156131b357600080fd5b815161123d816127d6565b600060033d11156131d75760046000803e5060005160e01c5b90565b600060443d10156131e85790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561321857505050505090565b82850191508151818111156132305750505050505090565b843d870101602082850101111561324a5750505050505090565b613259602082860101876128ce565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906132d890830186612baf565b82810360608401526132ea8186612baf565b905082810360808401526132fe818561284e565b9897505050505050505056fea2646970667358221220fbe3fee3b91f5ab84e923e42c53274b0396a4c3491c964674d337ce20399977f64736f6c634300080d0033a2646970667358221220bfee738d9e6b18d4556e23a8f2dad6da834cba3da913026ae7aa1766ca90493564736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.