Latest 25 from a total of 41 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 11737877 | 431 days ago | IN | 0 ETH | 0.0000006 | ||||
| Un Wrap | 8602567 | 504 days ago | IN | 0 ETH | 0.00000057 | ||||
| Un Wrap | 8602549 | 504 days ago | IN | 0 ETH | 0.00000062 | ||||
| Un Wrap | 8602530 | 504 days ago | IN | 0 ETH | 0.00000063 | ||||
| Un Wrap | 5285591 | 581 days ago | IN | 0 ETH | 0.00000261 | ||||
| Un Wrap | 4356201 | 602 days ago | IN | 0 ETH | 0.00000144 | ||||
| Un Wrap | 4027924 | 610 days ago | IN | 0 ETH | 0.00000003 | ||||
| Un Wrap | 2972060 | 634 days ago | IN | 0 ETH | 0.00001839 | ||||
| Add Collateral | 1610129 | 666 days ago | IN | 0 ETH | 0.00004687 | ||||
| Wrap | 1210564 | 675 days ago | IN | 0.001 ETH | 0.00007909 | ||||
| Wrap | 1204723 | 675 days ago | IN | 0 ETH | 0.00007107 | ||||
| Wrap | 1106466 | 677 days ago | IN | 0 ETH | 0.00010065 | ||||
| Wrap | 1065281 | 678 days ago | IN | 0 ETH | 0.00024932 | ||||
| Wrap | 1032492 | 679 days ago | IN | 0.0003 ETH | 0.00015135 | ||||
| Wrap | 970208 | 680 days ago | IN | 0.00002 ETH | 0.00011881 | ||||
| Wrap | 970101 | 680 days ago | IN | 0 ETH | 0.00009169 | ||||
| Wrap | 956172 | 681 days ago | IN | 0.001 ETH | 0.00010269 | ||||
| Wrap | 916793 | 682 days ago | IN | 0 ETH | 0.00011427 | ||||
| Wrap | 897424 | 682 days ago | IN | 0.0001 ETH | 0.00011487 | ||||
| Wrap | 893148 | 682 days ago | IN | 0 ETH | 0.00011022 | ||||
| Wrap | 859338 | 683 days ago | IN | 0.004 ETH | 0.00014361 | ||||
| Wrap | 839404 | 683 days ago | IN | 0.00001 ETH | 0.00015293 | ||||
| Wrap | 836381 | 684 days ago | IN | 0.001 ETH | 0.00015899 | ||||
| Wrap | 725506 | 686 days ago | IN | 0 ETH | 0.00027584 | ||||
| Wrap | 678897 | 687 days ago | IN | 0 ETH | 0.00027173 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WrapperBaseV1BlastPoints
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// ENVELOP protocol for NFT. Main protocol with Blast Points
pragma solidity 0.8.21;
import "./WrapperBaseV1.sol";
import "./BlastPoints.sol";
contract WrapperBaseV1BlastPoints is WrapperBaseV1, BlastPoints {
constructor(
address _erc20,
address _pointsOperator
)
WrapperBaseV1(_erc20)
BlastPoints(_pointsOperator)
{
}
}// SPDX-License-Identifier: MIT
// ENVELOP(NIFTSY) protocol V1 for NFT. Wrapper - main protocol contract
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/IFeeRoyaltyModel.sol";
import "../interfaces/IWrapper.sol";
import "../interfaces/IAdvancedWhiteList.sol";
import "./TokenService.sol";
// #### Envelop ProtocolV1 Rules
// 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 <= Bit number(dec)
// ------------------------------------------------------------------------------------
// 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
// | | | | | | | | | | | | | | | |
// | | | | | | | | | | | | | | | +-No_Unwrap
// | | | | | | | | | | | | | | +-No_Wrap
// | | | | | | | | | | | | | +-No_Transfer
// | | | | | | | | | | | | +-No_Collateral
// | | | | | | | | | | | +-reserved_core
// | | | | | | | | | | +-reserved_core
// | | | | | | | | | +-reserved_core
// | | | | | | | | +-reserved_core
// | | | | | | | |
// | | | | | | | |
// +----+----+----+----+----+---+---+
// for use in extendings
/**
* @title Non-Fungible Token Wrapper
* @dev Make wraping for existing ERC721 & ERC1155 and empty
*/
contract WrapperBaseV1 is
ReentrancyGuard,
ERC721Holder,
ERC1155Holder,
IWrapper,
TokenService,
Ownable
{
uint256 public MAX_COLLATERAL_SLOTS = 25;
address public protocolTechToken;
address public protocolWhiteList;
// Map from wrapping asset type to wnft contract address and last minted id
mapping(ETypes.AssetType => ETypes.NFTItem) public lastWNFTId;
// Map from wNFT address to it's type (721, 1155)
mapping(address => ETypes.AssetType) public wnftTypes;
// Map from wrapped token address and id => wNFT record
mapping(address => mapping(uint256 => ETypes.WNFT)) internal wrappedTokens;
constructor(address _erc20) {
require(_erc20 != address(0), "ProtocolTechToken cant be zero value");
protocolTechToken = _erc20;
// This because default trnaferFe moddel included in techToken code
IFeeRoyaltyModel(protocolTechToken).registerModel();
}
function wrap(
ETypes.INData calldata _inData,
ETypes.AssetItem[] calldata _collateral,
address _wrappFor
)
public
virtual
payable
nonReentrant
returns (ETypes.AssetItem memory)
{
// 0. Check assetIn asset
require(_checkWrap(_inData,_wrappFor),
"Wrap check fail"
);
// 1. Take users inAsset
if ( _inData.inAsset.asset.assetType != ETypes.AssetType.NATIVE &&
_inData.inAsset.asset.assetType != ETypes.AssetType.EMPTY
)
{
require(
_mustTransfered(_inData.inAsset) == _transferSafe(
_inData.inAsset,
msg.sender,
address(this)
),
"Suspicious asset for wrap"
);
}
// 2. Mint wNFT
lastWNFTId[_inData.outType].tokenId += 1; //Save just will minted id
_mintNFT(
_inData.outType, // what will be minted instead of wrapping asset
lastWNFTId[_inData.outType].contractAddress, // wNFT contract address
_wrappFor, // wNFT receiver (1st owner)
lastWNFTId[_inData.outType].tokenId,
_inData.outBalance // wNFT tokenId
);
// 3. Safe wNFT info
_saveWNFTinfo(
lastWNFTId[_inData.outType].contractAddress,
lastWNFTId[_inData.outType].tokenId,
_inData
);
addCollateral(
lastWNFTId[_inData.outType].contractAddress,
lastWNFTId[_inData.outType].tokenId,
_collateral
);
// Charge Fee Hook
// There is No Any Fees in Protocol
// So this hook can be used in b2b extensions of Envelop Protocol
// 0x02 - feeType for WrapFee
_chargeFees(
lastWNFTId[_inData.outType].contractAddress,
lastWNFTId[_inData.outType].tokenId,
msg.sender,
address(this),
0x02
);
emit WrappedV1(
_inData.inAsset.asset.contractAddress, // inAssetAddress
lastWNFTId[_inData.outType].contractAddress, // outAssetAddress
_inData.inAsset.tokenId, // inAssetTokenId
lastWNFTId[_inData.outType].tokenId, // outTokenId
_wrappFor, // wnftFirstOwner
msg.value, // nativeCollateralAmount
_inData.rules // rules
);
return ETypes.AssetItem(
ETypes.Asset(_inData.outType, lastWNFTId[_inData.outType].contractAddress),
lastWNFTId[_inData.outType].tokenId,
_inData.outBalance
);
}
function addCollateral(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem[] calldata _collateral
) public payable virtual {
if (_collateral.length > 0 || msg.value > 0) {
require(
_checkAddCollateral(
_wNFTAddress,
_wNFTTokenId,
_collateral
),
"Forbidden add collateral"
);
_addCollateral(
_wNFTAddress,
_wNFTTokenId,
_collateral
);
}
}
function unWrap(address _wNFTAddress, uint256 _wNFTTokenId) external virtual {
unWrap(wnftTypes[_wNFTAddress], _wNFTAddress, _wNFTTokenId, false);
}
function unWrap(
ETypes.AssetType _wNFTType,
address _wNFTAddress,
uint256 _wNFTTokenId
) external virtual {
unWrap(_wNFTType, _wNFTAddress, _wNFTTokenId, false);
}
function unWrap(
ETypes.AssetType _wNFTType,
address _wNFTAddress,
uint256 _wNFTTokenId,
bool _isEmergency
) public virtual {
// 1. Check core protocol logic:
// - who and what possible to unwrap
(address burnFor, uint256 burnBalance) = _checkCoreUnwrap(_wNFTType, _wNFTAddress, _wNFTTokenId);
// 2. Check locks = move to _checkUnwrap
require(
_checkLocks(_wNFTAddress, _wNFTTokenId)
);
// 3. Charge Fee Hook
// There is No Any Fees in Protocol
// So this hook can be used in b2b extensions of Envelop Protocol
// 0x03 - feeType for UnWrapFee
//
_chargeFees(_wNFTAddress, _wNFTTokenId, msg.sender, address(this), 0x03);
(uint256 nativeCollateralAmount, ) = getCollateralBalanceAndIndex(
_wNFTAddress,
_wNFTTokenId,
ETypes.AssetType.NATIVE,
address(0),
0
);
///////////////////////////////////////////////
/// Place for hook ////
///////////////////////////////////////////////
// 4. Safe return collateral to appropriate benificiary
if (!_beforeUnWrapHook(_wNFTAddress, _wNFTTokenId, _isEmergency)) {
return;
}
// 5. BurnWNFT
_burnNFT(
_wNFTType,
_wNFTAddress,
burnFor, // msg.sender,
_wNFTTokenId,
burnBalance
);
emit UnWrappedV1(
_wNFTAddress,
wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset.asset.contractAddress,
_wNFTTokenId,
wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset.tokenId,
wrappedTokens[_wNFTAddress][_wNFTTokenId].unWrapDestination,
nativeCollateralAmount, // TODO Check GAS
wrappedTokens[_wNFTAddress][_wNFTTokenId].rules
);
}
function chargeFees(
address _wNFTAddress,
uint256 _wNFTTokenId,
address _from,
address _to,
bytes1 _feeType
)
public
virtual
returns (bool charged)
{
//TODO only wNFT contract can execute this(=charge fee)
require(msg.sender == _wNFTAddress || msg.sender == address(this),
"Only for wNFT or wrapper"
);
require(_chargeFees(_wNFTAddress, _wNFTTokenId, _from, _to, _feeType),
"Fee charge fail"
);
charged = true;
}
/////////////////////////////////////////////////////////////////////
// Admin functions //
/////////////////////////////////////////////////////////////////////
function setWNFTId(
ETypes.AssetType _assetOutType,
address _wnftContract,
uint256 _tokenId
) external onlyOwner {
require(_wnftContract != address(0), "No zero address");
lastWNFTId[_assetOutType] = ETypes.NFTItem(_wnftContract, _tokenId);
wnftTypes[_wnftContract] = _assetOutType;
}
function setWhiteList(address _wlAddress) external onlyOwner {
protocolWhiteList = _wlAddress;
}
/////////////////////////////////////////////////////////////////////
function getWrappedToken(address _wNFTAddress, uint256 _wNFTTokenId)
public
view
returns (ETypes.WNFT memory)
{
return wrappedTokens[_wNFTAddress][_wNFTTokenId];
}
function getOriginalURI(address _wNFTAddress, uint256 _wNFTTokenId)
public
view
returns(string memory uri_)
{
ETypes.AssetItem memory _wnftInAsset = getWrappedToken(
_wNFTAddress, _wNFTTokenId
).inAsset;
if (_wnftInAsset.asset.assetType == ETypes.AssetType.ERC721) {
uri_ = IERC721Metadata(_wnftInAsset.asset.contractAddress).tokenURI(_wnftInAsset.tokenId);
} else if (_wnftInAsset.asset.assetType == ETypes.AssetType.ERC1155) {
uri_ = IERC1155MetadataURI(_wnftInAsset.asset.contractAddress).uri(_wnftInAsset.tokenId);
} else {
uri_ = '';
}
}
function getCollateralBalanceAndIndex(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetType _collateralType,
address _erc,
uint256 _tokenId
) public view returns (uint256, uint256)
{
for (uint256 i = 0; i < wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length; i ++) {
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].asset.contractAddress == _erc &&
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].tokenId == _tokenId &&
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].asset.assetType == _collateralType
)
{
return (wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].amount, i);
}
}
}
/////////////////////////////////////////////////////////////////////
// Internals //
/////////////////////////////////////////////////////////////////////
function _saveWNFTinfo(
address wNFTAddress,
uint256 tokenId,
ETypes.INData calldata _inData
) internal virtual
{
wrappedTokens[wNFTAddress][tokenId].inAsset = _inData.inAsset;
// We will use _inData.unWrapDestination ONLY for RENT implementation
// wrappedTokens[wNFTAddress][tokenId].unWrapDestination = _inData.unWrapDestination;
wrappedTokens[wNFTAddress][tokenId].unWrapDestination = address(0);
wrappedTokens[wNFTAddress][tokenId].rules = _inData.rules;
// Copying of type struct ETypes.Fee memory[]
// memory to storage not yet supported.
for (uint256 i = 0; i < _inData.fees.length; i ++) {
wrappedTokens[wNFTAddress][tokenId].fees.push(_inData.fees[i]);
}
for (uint256 i = 0; i < _inData.locks.length; i ++) {
wrappedTokens[wNFTAddress][tokenId].locks.push(_inData.locks[i]);
}
for (uint256 i = 0; i < _inData.royalties.length; i ++) {
wrappedTokens[wNFTAddress][tokenId].royalties.push(_inData.royalties[i]);
}
}
function _addCollateral(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem[] calldata _collateral
) internal virtual
{
// Process Native Colleteral
if (msg.value > 0) {
_updateCollateralInfo(
_wNFTAddress,
_wNFTTokenId,
ETypes.AssetItem(
ETypes.Asset(ETypes.AssetType.NATIVE, address(0)),
0,
msg.value
)
);
emit CollateralAdded(
_wNFTAddress,
_wNFTTokenId,
uint8(ETypes.AssetType.NATIVE),
address(0),
0,
msg.value
);
}
// Process Token Colleteral
for (uint256 i = 0; i <_collateral.length; i ++) {
if (_collateral[i].asset.assetType != ETypes.AssetType.NATIVE) {
// Check WhiteList Logic
if (protocolWhiteList != address(0)) {
require(
IAdvancedWhiteList(protocolWhiteList).enabledForCollateral(
_collateral[i].asset.contractAddress),
"WL:Some assets are not enabled for collateral"
);
}
require(
_mustTransfered(_collateral[i]) == _transferSafe(
_collateral[i],
msg.sender,
address(this)
),
"Suspicious asset for wrap"
);
_updateCollateralInfo(
_wNFTAddress,
_wNFTTokenId,
_collateral[i]
);
emit CollateralAdded(
_wNFTAddress,
_wNFTTokenId,
uint8(_collateral[i].asset.assetType),
_collateral[i].asset.contractAddress,
_collateral[i].tokenId,
_collateral[i].amount
);
}
}
}
function _updateCollateralInfo(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem memory collateralItem
) internal virtual
{
/////////////////////////////////////////
// ERC20 & NATIVE Collateral ///
/////////////////////////////////////////
if (collateralItem.asset.assetType == ETypes.AssetType.ERC20 ||
collateralItem.asset.assetType == ETypes.AssetType.NATIVE)
{
require(collateralItem.tokenId == 0, "TokenId must be zero");
}
/////////////////////////////////////////
// ERC1155 Collateral ///
// /////////////////////////////////////////
// if (collateralItem.asset.assetType == ETypes.AssetType.ERC1155) {
// No need special checks
// }
/////////////////////////////////////////
// ERC721 Collateral ///
/////////////////////////////////////////
if (collateralItem.asset.assetType == ETypes.AssetType.ERC721 ) {
require(collateralItem.amount == 0, "Amount must be zero");
}
/////////////////////////////////////////
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length == 0
|| collateralItem.asset.assetType == ETypes.AssetType.ERC721
)
{
// First record in collateral or 721
_newCollateralItem(_wNFTAddress,_wNFTTokenId,collateralItem);
} else {
// length > 0
(, uint256 _index) = getCollateralBalanceAndIndex(
_wNFTAddress,
_wNFTTokenId,
collateralItem.asset.assetType,
collateralItem.asset.contractAddress,
collateralItem.tokenId
);
if (_index > 0 ||
(_index == 0
&& wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[0].asset.contractAddress
== collateralItem.asset.contractAddress
)
)
{
// We dont need addition if for erc721 because for erc721 _amnt always be zero
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[_index].amount
+= collateralItem.amount;
} else {
// _index == 0 && and no this token record yet
_newCollateralItem(_wNFTAddress,_wNFTTokenId,collateralItem);
}
}
}
function _newCollateralItem(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem memory collateralItem
) internal virtual
{
require(
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length < MAX_COLLATERAL_SLOTS,
"Too much tokens in collateral"
);
for (uint256 i = 0; i < wrappedTokens[_wNFTAddress][_wNFTTokenId].locks.length; i ++)
{
// Personal Collateral count Lock check
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].lockType == 0x02) {
require(
wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].param
>= (wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length + 1),
"Too much collateral slots for this wNFT"
);
}
}
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.push(collateralItem);
}
function _chargeFees(
address _wNFTAddress,
uint256 _wNFTTokenId,
address _from,
address _to,
bytes1 _feeType
)
internal
virtual
returns (bool _charged)
{
if (_feeType == 0x00) {// Transfer fee
for (uint256 i = 0; i < wrappedTokens[_wNFTAddress][_wNFTTokenId].fees.length; i ++){
/////////////////////////////////////////
// For Transfer Fee -0x00 ///
/////////////////////////////////////////
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].fees[i].feeType == 0x00){
// - get modelAddress. Default feeModel adddress always live in
// protocolTechToken. When white list used it is possible override that model.
// default model always must be set as protocolTechToken
address feeModel = protocolTechToken;
if (protocolWhiteList != address(0)) {
feeModel = IAdvancedWhiteList(protocolWhiteList).getWLItem(
wrappedTokens[_wNFTAddress][_wNFTTokenId].fees[i].token).transferFeeModel;
}
// - get transfer list from external model by feetype(with royalties)
(ETypes.AssetItem[] memory assetItems,
address[] memory from,
address[] memory to
) =
IFeeRoyaltyModel(feeModel).getTransfersList(
wrappedTokens[_wNFTAddress][_wNFTTokenId].fees[i],
wrappedTokens[_wNFTAddress][_wNFTTokenId].royalties,
_from,
_to
);
// - execute transfers
uint256 actualTransfered;
for (uint256 j = 0; j < to.length; j ++){
// if transfer receiver(to) = address(this) lets consider
// wNFT as receiver. in this case received amount
// will be added to collateral
if (to[j]== address(this)){
_updateCollateralInfo(
_wNFTAddress,
_wNFTTokenId,
assetItems[j]
);
}
actualTransfered = _transferSafe(assetItems[j], from[j], to[j]);
emit EnvelopFee(to[j], _wNFTAddress, _wNFTTokenId, actualTransfered);
}
}
//////////////////////////////////////////
}
_charged = true;
}
}
/**
* @dev This hook may be overriden in inheritor contracts for extend
* base functionality.
*
* @param _wNFTAddress -wrapped token address
* @param _wNFTTokenId -wrapped token id
*
* must returns true for success unwrapping enable
*/
function _beforeUnWrapHook(
address _wNFTAddress,
uint256 _wNFTTokenId,
bool _emergency
) internal virtual returns (bool)
{
uint256 transfered;
address receiver = msg.sender;
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].unWrapDestination != address(0)) {
receiver = wrappedTokens[_wNFTAddress][_wNFTTokenId].unWrapDestination;
}
for (uint256 i = 0; i < wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length; i ++) {
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].asset.assetType
!= ETypes.AssetType.EMPTY
) {
if (_emergency) {
// In case of something is wrong with any collateral (attack)
// user can use this mode for skip malicious asset
transfered = _transferEmergency(
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i],
address(this),
receiver
);
} else {
transfered = _transferSafe(
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i],
address(this),
receiver
);
}
// we collect info about contracts with not standard behavior
if (transfered != wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].amount ) {
emit SuspiciousFail(
_wNFTAddress,
_wNFTTokenId,
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].asset.contractAddress
);
}
// mark collateral record as returned
wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral[i].asset.assetType = ETypes.AssetType.EMPTY;
}
// dont pop due in some case it c can be very costly
// https://docs.soliditylang.org/en/v0.8.9/types.html#array-members
// For safe exit in case of low gaslimit
// this strange part of code can prevent only case
// when when some collateral tokens spent unexpected gas limit
if (
gasleft() <= 1_000 &&
i < wrappedTokens[_wNFTAddress][_wNFTTokenId].collateral.length - 1
)
{
emit PartialUnWrapp(_wNFTAddress, _wNFTTokenId, i);
//allReturned = false;
return false;
}
}
// 5. Return Original
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset.asset.assetType != ETypes.AssetType.NATIVE &&
wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset.asset.assetType != ETypes.AssetType.EMPTY
)
{
if (!_emergency){
_transferSafe(
wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset,
address(this),
receiver
);
} else {
_transferEmergency (
wrappedTokens[_wNFTAddress][_wNFTTokenId].inAsset,
address(this),
receiver
);
}
}
return true;
}
////////////////////////////////////////////////////////////////////////////////////////////
function _mustTransfered(ETypes.AssetItem calldata _assetForTransfer)
internal
pure
returns (uint256 mustTransfered)
{
// Available for wrap assets must be good transferable (stakable).
// So for erc721 mustTransfered always be 1
if (_assetForTransfer.asset.assetType == ETypes.AssetType.ERC721) {
mustTransfered = 1;
} else {
mustTransfered = _assetForTransfer.amount;
}
}
function _checkRule(bytes2 _rule, bytes2 _wNFTrules) internal pure returns (bool) {
return _rule == (_rule & _wNFTrules);
}
// 0x00 - TimeLock
// 0x01 - TransferFeeLock
// 0x02 - Personal Collateral count Lock check
function _checkLocks(address _wNFTAddress, uint256 _wNFTTokenId) internal view returns (bool)
{
// Lets check that inAsset
for (uint256 i = 0; i < wrappedTokens[_wNFTAddress][_wNFTTokenId].locks.length; i ++) {
// Time Lock check
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].lockType == 0x00) {
require(
wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].param <= block.timestamp,
"TimeLock error"
);
}
// Fee Lock check
if (wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].lockType == 0x01) {
// Lets check this lock rule against each fee record
for (uint256 j = 0; j < wrappedTokens[_wNFTAddress][_wNFTTokenId].fees.length; j ++){
// Fee Lock depend only from Transfer Fee - 0x00
if ( wrappedTokens[_wNFTAddress][_wNFTTokenId].fees[j].feeType == 0x00) {
(uint256 _bal,) = getCollateralBalanceAndIndex(
_wNFTAddress,
_wNFTTokenId,
ETypes.AssetType.ERC20,
wrappedTokens[_wNFTAddress][_wNFTTokenId].fees[j].token,
0
);
require(
wrappedTokens[_wNFTAddress][_wNFTTokenId].locks[i].param <= _bal,
"TransferFeeLock error"
);
}
}
}
}
return true;
}
function _checkWrap(ETypes.INData calldata _inData, address _wrappFor)
internal
view
returns (bool enabled)
{
// Lets check that inAsset
// 0x0002 - this rule disable wrap already wrappednFT (NO matryoshka)
enabled = !_checkRule(0x0002, getWrappedToken(
_inData.inAsset.asset.contractAddress,
_inData.inAsset.tokenId).rules
)
&& _wrappFor != address(this);
// Check WhiteList Logic
if (protocolWhiteList != address(0)) {
require(
!IAdvancedWhiteList(protocolWhiteList).getBLItem(_inData.inAsset.asset.contractAddress),
"WL:Asset disabled for wrap"
);
require(
IAdvancedWhiteList(protocolWhiteList).rulesEnabled(_inData.inAsset.asset.contractAddress, _inData.rules),
"WL:Some rules are disabled for this asset"
);
for (uint256 i = 0; i < _inData.fees.length; i ++){
require(
IAdvancedWhiteList(protocolWhiteList).enabledForFee(
_inData.fees[i].token),
"WL:Some assets are not enabled for fee"
);
}
}
}
function _checkAddCollateral(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem[] calldata _collateral
)
internal
view
returns (bool enabled)
{
// Check that wNFT exist
if (wnftTypes[_wNFTAddress] == ETypes.AssetType.ERC721) {
require(IERC721Mintable(_wNFTAddress).exists(_wNFTTokenId), "wNFT not exists");
} else if(wnftTypes[_wNFTAddress] == ETypes.AssetType.ERC1155) {
require(IERC1155Mintable(_wNFTAddress).exists(_wNFTTokenId), "wNFT not exists");
} else {
revert UnSupportedAsset(
ETypes.AssetItem(ETypes.Asset(wnftTypes[_wNFTAddress],_wNFTAddress),_wNFTTokenId, 0)
);
}
// Lets check wNFT rules
// 0x0008 - this rule disable add collateral
enabled = !_checkRule(0x0008, getWrappedToken(_wNFTAddress, _wNFTTokenId).rules);
}
function _checkCoreUnwrap(
ETypes.AssetType _wNFTType,
address _wNFTAddress,
uint256 _wNFTTokenId
)
internal
view
virtual
returns (address burnFor, uint256 burnBalance)
{
// Lets wNFT rules
// 0x0001 - this rule disable unwrap wrappednFT
require(!_checkRule(0x0001, getWrappedToken(_wNFTAddress, _wNFTTokenId).rules),
"UnWrapp forbidden by author"
);
if (_wNFTType == ETypes.AssetType.ERC721) {
// Only token owner can UnWrap
burnFor = IERC721Mintable(_wNFTAddress).ownerOf(_wNFTTokenId);
require(burnFor == msg.sender,
'Only owner can unwrap it'
);
} else if (_wNFTType == ETypes.AssetType.ERC1155) {
burnBalance = IERC1155Mintable(_wNFTAddress).totalSupply(_wNFTTokenId);
burnFor = msg.sender;
require(
burnBalance ==
IERC1155Mintable(_wNFTAddress).balanceOf(burnFor, _wNFTTokenId)
,'ERC115 unwrap available only for all totalSupply'
);
} else {
revert UnSupportedAsset(ETypes.AssetItem(ETypes.Asset(_wNFTType,_wNFTAddress),_wNFTTokenId, 0));
}
}
}// SPDX-License-Identifier: MIT
// ENVELOP protocol for NFT. Blast Points Adapter
pragma solidity 0.8.21;
interface IBlastPoints {
function configurePointsOperator(address operator) external;
}
contract BlastPoints {
address constant public BLAST_POINTS_ADDRESS = 0x2536FE9ab3F511540F2f9e2eC2A805005C3Dd800;
constructor(address _pointsOperator) {
// be sure to use the appropriate testnet/mainnet BlastPoints address
IBlastPoints(BLAST_POINTS_ADDRESS).configurePointsOperator(_pointsOperator);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/utils/ERC721Holder.sol)
pragma solidity ^0.8.0;
import "../IERC721Receiver.sol";
/**
* @dev Implementation of the {IERC721Receiver} interface.
*
* Accepts all token transfers.
* Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
*/
contract ERC721Holder is IERC721Receiver {
/**
* @dev See {IERC721Receiver-onERC721Received}.
*
* Always returns `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) {
return this.onERC721Received.selector;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol)
pragma solidity ^0.8.0;
import "./ERC1155Receiver.sol";
/**
* Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens.
*
* IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be
* stuck.
*
* @dev _Available since v3.1._
*/
contract ERC1155Holder is ERC1155Receiver {
function onERC1155Received(
address,
address,
uint256,
uint256,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155Received.selector;
}
function onERC1155BatchReceived(
address,
address,
uint256[] memory,
uint256[] memory,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155BatchReceived.selector;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "../contracts/LibEnvelopTypes.sol";
interface IFeeRoyaltyModel {
function registerModel() external;
function getTransfersList(
ETypes.Fee calldata _fee,
ETypes.Royalty[] calldata _royalties,
address _from,
address _to
) external view returns (
ETypes.AssetItem[] memory,
address[] memory,
address[] memory
);
function wrapper() external returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
//import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "../contracts/LibEnvelopTypes.sol";
interface IWrapper {
event WrappedV1(
address indexed inAssetAddress,
address indexed outAssetAddress,
uint256 indexed inAssetTokenId,
uint256 outTokenId,
address wnftFirstOwner,
uint256 nativeCollateralAmount,
bytes2 rules
);
event UnWrappedV1(
address indexed wrappedAddress,
address indexed originalAddress,
uint256 indexed wrappedId,
uint256 originalTokenId,
address beneficiary,
uint256 nativeCollateralAmount,
bytes2 rules
);
event CollateralAdded(
address indexed wrappedAddress,
uint256 indexed wrappedId,
uint8 assetType,
address collateralAddress,
uint256 collateralTokenId,
uint256 collateralBalance
);
event PartialUnWrapp(
address indexed wrappedAddress,
uint256 indexed wrappedId,
uint256 lastCollateralIndex
);
event SuspiciousFail(
address indexed wrappedAddress,
uint256 indexed wrappedId,
address indexed failedContractAddress
);
event EnvelopFee(
address indexed receiver,
address indexed wNFTConatract,
uint256 indexed wNFTTokenId,
uint256 amount
);
function wrap(
ETypes.INData calldata _inData,
ETypes.AssetItem[] calldata _collateral,
address _wrappFor
)
external
payable
returns (ETypes.AssetItem memory);
// function wrapUnsafe(
// ETypes.INData calldata _inData,
// ETypes.AssetItem[] calldata _collateral,
// address _wrappFor
// )
// external
// payable
// returns (ETypes.AssetItem memory);
function addCollateral(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetItem[] calldata _collateral
) external payable;
// function addCollateralUnsafe(
// address _wNFTAddress,
// uint256 _wNFTTokenId,
// ETypes.AssetItem[] calldata _collateral
// )
// external
// payable;
function unWrap(
address _wNFTAddress,
uint256 _wNFTTokenId
) external;
function unWrap(
ETypes.AssetType _wNFTType,
address _wNFTAddress,
uint256 _wNFTTokenId
) external;
function unWrap(
ETypes.AssetType _wNFTType,
address _wNFTAddress,
uint256 _wNFTTokenId,
bool _isEmergency
) external;
function chargeFees(
address _wNFTAddress,
uint256 _wNFTTokenId,
address _from,
address _to,
bytes1 _feeType
)
external
returns (bool);
//////////////////////////////////////////////////////////////////////
function MAX_COLLATERAL_SLOTS() external view returns (uint256);
function protocolTechToken() external view returns (address);
function protocolWhiteList() external view returns (address);
function getWrappedToken(address _wNFTAddress, uint256 _wNFTTokenId)
external
view
returns (ETypes.WNFT memory);
function getOriginalURI(address _wNFTAddress, uint256 _wNFTTokenId)
external
view
returns(string memory);
function getCollateralBalanceAndIndex(
address _wNFTAddress,
uint256 _wNFTTokenId,
ETypes.AssetType _collateralType,
address _erc,
uint256 _tokenId
) external view returns (uint256, uint256);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
//import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "../contracts/LibEnvelopTypes.sol";
interface IAdvancedWhiteList {
event WhiteListItemChanged(
address indexed asset,
bool enabledForFee,
bool enabledForCollateral,
bool enabledRemoveFromCollateral,
address transferFeeModel
);
event BlackListItemChanged(
address indexed asset,
bool isBlackListed
);
function getWLItem(address _asset) external view returns (ETypes.WhiteListItem memory);
function getWLItemCount() external view returns (uint256);
function getBLItem(address _asset) external view returns (bool);
function getBLItemCount() external view returns (uint256);
function enabledForCollateral(address _asset) external view returns (bool);
function enabledForFee(address _asset) external view returns (bool);
function enabledRemoveFromCollateral(address _asset) external view returns (bool);
function rulesEnabled(address _asset, bytes2 _rules) external view returns (bool);
function validateRules(address _asset, bytes2 _rules) external view returns (bytes2);
}// SPDX-License-Identifier: MIT
// ENVELOP(NIFTSY) protocol V1 for NFT. Wrapper - main protocol contract
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../interfaces/IERC20Extended.sol";
import "./LibEnvelopTypes.sol";
import "../interfaces/IERC721Mintable.sol";
import "../interfaces/IERC1155Mintable.sol";
/// @title Envelop PrtocolV1 helper service for ERC(20, 721, 115) transfers
/// @author Envelop Team
/// @notice Just as dependence for main wrapper contract
abstract contract TokenService {
using SafeERC20 for IERC20Extended;
error UnSupportedAsset(ETypes.AssetItem asset);
function _mintNFT(
ETypes.AssetType _mint_type,
address _contract,
address _mintFor,
uint256 _tokenId,
uint256 _outBalance
)
internal
virtual
{
if (_mint_type == ETypes.AssetType.ERC721) {
IERC721Mintable(_contract).mint(_mintFor, _tokenId);
} else if (_mint_type == ETypes.AssetType.ERC1155) {
IERC1155Mintable(_contract).mint(_mintFor, _tokenId, _outBalance);
}else {
revert UnSupportedAsset(
ETypes.AssetItem(
ETypes.Asset(_mint_type, _contract),
_tokenId, _outBalance
)
);
}
}
function _burnNFT(
ETypes.AssetType _burn_type,
address _contract,
address _burnFor,
uint256 _tokenId,
uint256 _balance
)
internal
virtual
{
if (_burn_type == ETypes.AssetType.ERC721) {
IERC721Mintable(_contract).burn(_tokenId);
} else if (_burn_type == ETypes.AssetType.ERC1155) {
IERC1155Mintable(_contract).burn(_burnFor, _tokenId, _balance);
}
}
function _transfer(
ETypes.AssetItem memory _assetItem,
address _from,
address _to
) internal virtual returns (bool _transfered){
if (_assetItem.asset.assetType == ETypes.AssetType.NATIVE) {
(bool success, ) = _to.call{ value: _assetItem.amount}("");
require(success, "transfer failed");
_transfered = true;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC20) {
require(IERC20Extended(_assetItem.asset.contractAddress).balanceOf(_from) <= _assetItem.amount, "UPS!!!!");
IERC20Extended(_assetItem.asset.contractAddress).safeTransferFrom(_from, _to, _assetItem.amount);
_transfered = true;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC721) {
IERC721Mintable(_assetItem.asset.contractAddress).transferFrom(_from, _to, _assetItem.tokenId);
_transfered = true;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC1155) {
IERC1155Mintable(_assetItem.asset.contractAddress).safeTransferFrom(_from, _to, _assetItem.tokenId, _assetItem.amount, "");
_transfered = true;
} else {
revert UnSupportedAsset(_assetItem);
}
return _transfered;
}
function _transferSafe(
ETypes.AssetItem memory _assetItem,
address _from,
address _to
) internal virtual returns (uint256 _transferedValue){
//TODO think about try catch in transfers
uint256 balanceBefore;
if (_assetItem.asset.assetType == ETypes.AssetType.NATIVE) {
balanceBefore = _to.balance;
(bool success, ) = _to.call{ value: _assetItem.amount}("");
require(success, "transfer failed");
_transferedValue = _to.balance - balanceBefore;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC20) {
balanceBefore = IERC20Extended(_assetItem.asset.contractAddress).balanceOf(_to);
if (_from == address(this)){
IERC20Extended(_assetItem.asset.contractAddress).safeTransfer(_to, _assetItem.amount);
} else {
IERC20Extended(_assetItem.asset.contractAddress).safeTransferFrom(_from, _to, _assetItem.amount);
}
_transferedValue = IERC20Extended(_assetItem.asset.contractAddress).balanceOf(_to) - balanceBefore;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC721 &&
IERC721Mintable(_assetItem.asset.contractAddress).ownerOf(_assetItem.tokenId) == _from) {
balanceBefore = IERC721Mintable(_assetItem.asset.contractAddress).balanceOf(_to);
IERC721Mintable(_assetItem.asset.contractAddress).transferFrom(_from, _to, _assetItem.tokenId);
if (IERC721Mintable(_assetItem.asset.contractAddress).ownerOf(_assetItem.tokenId) == _to &&
IERC721Mintable(_assetItem.asset.contractAddress).balanceOf(_to) - balanceBefore == 1
) {
_transferedValue = 1;
}
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC1155) {
balanceBefore = IERC1155Mintable(_assetItem.asset.contractAddress).balanceOf(_to, _assetItem.tokenId);
IERC1155Mintable(_assetItem.asset.contractAddress).safeTransferFrom(_from, _to, _assetItem.tokenId, _assetItem.amount, "");
_transferedValue = IERC1155Mintable(_assetItem.asset.contractAddress).balanceOf(_to, _assetItem.tokenId) - balanceBefore;
} else {
revert UnSupportedAsset(_assetItem);
}
return _transferedValue;
}
// This function must never revert. Use it for unwrap in case some
// collateral transfers are revert
function _transferEmergency(
ETypes.AssetItem memory _assetItem,
address _from,
address _to
) internal virtual returns (uint256 _transferedValue){
//TODO think about try catch in transfers
uint256 balanceBefore;
if (_assetItem.asset.assetType == ETypes.AssetType.NATIVE) {
balanceBefore = _to.balance;
(bool success, ) = _to.call{ value: _assetItem.amount}("");
//require(success, "transfer failed");
_transferedValue = _to.balance - balanceBefore;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC20) {
if (_from == address(this)){
(bool success, ) = _assetItem.asset.contractAddress.call(
abi.encodeWithSignature("transfer(address,uint256)", _to, _assetItem.amount)
);
} else {
(bool success, ) = _assetItem.asset.contractAddress.call(
abi.encodeWithSignature("transferFrom(address,address,uint256)", _from, _to, _assetItem.amount)
);
}
_transferedValue = _assetItem.amount;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC721) {
(bool success, ) = _assetItem.asset.contractAddress.call(
abi.encodeWithSignature("transferFrom(address,address,uint256)", _from, _to, _assetItem.tokenId)
);
_transferedValue = 1;
} else if (_assetItem.asset.assetType == ETypes.AssetType.ERC1155) {
(bool success, ) = _assetItem.asset.contractAddress.call(
abi.encodeWithSignature("safeTransferFrom(address,address,uint256,uint256,bytes)", _from, _to, _assetItem.tokenId, _assetItem.amount, "")
);
_transferedValue = _assetItem.amount;
} else {
revert UnSupportedAsset(_assetItem);
}
return _transferedValue;
}
}// 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.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../IERC1155Receiver.sol";
import "../../../utils/introspection/ERC165.sol";
/**
* @dev _Available since v3.1._
*/
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// ENVELOP(NIFTSY) protocol V1 for NFT.
pragma solidity 0.8.21;
/// @title Flibrary ETypes in Envelop PrtocolV1
/// @author Envelop Team
/// @notice This contract implement main protocol's data types
library ETypes {
enum AssetType {EMPTY, NATIVE, ERC20, ERC721, ERC1155, FUTURE1, FUTURE2, FUTURE3}
struct Asset {
AssetType assetType;
address contractAddress;
}
struct AssetItem {
Asset asset;
uint256 tokenId;
uint256 amount;
}
struct NFTItem {
address contractAddress;
uint256 tokenId;
}
struct Fee {
bytes1 feeType;
uint256 param;
address token;
}
struct Lock {
bytes1 lockType;
uint256 param;
}
struct Royalty {
address beneficiary;
uint16 percent;
}
struct WNFT {
AssetItem inAsset;
AssetItem[] collateral;
address unWrapDestination;
Fee[] fees;
Lock[] locks;
Royalty[] royalties;
bytes2 rules;
}
struct INData {
AssetItem inAsset;
address unWrapDestination;
Fee[] fees;
Lock[] locks;
Royalty[] royalties;
AssetType outType;
uint256 outBalance; //0- for 721 and any amount for 1155
bytes2 rules;
}
struct WhiteListItem {
bool enabledForFee;
bool enabledForCollateral;
bool enabledRemoveFromCollateral;
address transferFeeModel;
}
struct Rules {
bytes2 onlythis;
bytes2 disabled;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/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;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
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));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
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");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
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");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IERC20Extended is IERC20 {
function mint(address _to, uint256 _value) external;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
interface IERC721Mintable is IERC721Metadata {
function mint(address _to, uint256 _tokenId) external;
function burn(uint256 _tokenId) external;
function exists(uint256 _tokenId) external view returns(bool);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol";
interface IERC1155Mintable is IERC1155MetadataURI {
function mint(address _to, uint256 _tokenId, uint256 _amount) external;
function burn(address _to, uint256 _tokenId, uint256 _amount) external;
function totalSupply(uint256 _id) external view returns (uint256);
function exists(uint256 _tokenId) external view returns(bool);
}// 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 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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.9.0) (token/ERC20/extensions/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.9.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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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://consensys.net/diligence/blog/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.8.0/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 v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// 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
// 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.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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;
}{
"remappings": [
"@uniswap/=lib/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"@Uopenzeppelin/=lib/openzeppelin-contracts-upgradeable/",
"@envelop-protocol-v1/=lib/envelop-protocol-v1/",
"@envelop-subscription/=lib/subscription/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"address","name":"_pointsOperator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem","name":"asset","type":"tuple"}],"name":"UnSupportedAsset","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wrappedAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"wrappedId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"assetType","type":"uint8"},{"indexed":false,"internalType":"address","name":"collateralAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralBalance","type":"uint256"}],"name":"CollateralAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"wNFTConatract","type":"address"},{"indexed":true,"internalType":"uint256","name":"wNFTTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EnvelopFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wrappedAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"wrappedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastCollateralIndex","type":"uint256"}],"name":"PartialUnWrapp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wrappedAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"wrappedId","type":"uint256"},{"indexed":true,"internalType":"address","name":"failedContractAddress","type":"address"}],"name":"SuspiciousFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wrappedAddress","type":"address"},{"indexed":true,"internalType":"address","name":"originalAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"wrappedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originalTokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"nativeCollateralAmount","type":"uint256"},{"indexed":false,"internalType":"bytes2","name":"rules","type":"bytes2"}],"name":"UnWrappedV1","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"inAssetAddress","type":"address"},{"indexed":true,"internalType":"address","name":"outAssetAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"inAssetTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outTokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"wnftFirstOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"nativeCollateralAmount","type":"uint256"},{"indexed":false,"internalType":"bytes2","name":"rules","type":"bytes2"}],"name":"WrappedV1","type":"event"},{"inputs":[],"name":"BLAST_POINTS_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COLLATERAL_SLOTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"},{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem[]","name":"_collateral","type":"tuple[]"}],"name":"addCollateral","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes1","name":"_feeType","type":"bytes1"}],"name":"chargeFees","outputs":[{"internalType":"bool","name":"charged","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"},{"internalType":"enum ETypes.AssetType","name":"_collateralType","type":"uint8"},{"internalType":"address","name":"_erc","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getCollateralBalanceAndIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"}],"name":"getOriginalURI","outputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"}],"name":"getWrappedToken","outputs":[{"components":[{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem","name":"inAsset","type":"tuple"},{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem[]","name":"collateral","type":"tuple[]"},{"internalType":"address","name":"unWrapDestination","type":"address"},{"components":[{"internalType":"bytes1","name":"feeType","type":"bytes1"},{"internalType":"uint256","name":"param","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"internalType":"struct ETypes.Fee[]","name":"fees","type":"tuple[]"},{"components":[{"internalType":"bytes1","name":"lockType","type":"bytes1"},{"internalType":"uint256","name":"param","type":"uint256"}],"internalType":"struct ETypes.Lock[]","name":"locks","type":"tuple[]"},{"components":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint16","name":"percent","type":"uint16"}],"internalType":"struct ETypes.Royalty[]","name":"royalties","type":"tuple[]"},{"internalType":"bytes2","name":"rules","type":"bytes2"}],"internalType":"struct ETypes.WNFT","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum ETypes.AssetType","name":"","type":"uint8"}],"name":"lastWNFTId","outputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolTechToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolWhiteList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ETypes.AssetType","name":"_assetOutType","type":"uint8"},{"internalType":"address","name":"_wnftContract","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setWNFTId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wlAddress","type":"address"}],"name":"setWhiteList","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ETypes.AssetType","name":"_wNFTType","type":"uint8"},{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"},{"internalType":"bool","name":"_isEmergency","type":"bool"}],"name":"unWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ETypes.AssetType","name":"_wNFTType","type":"uint8"},{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"}],"name":"unWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wNFTAddress","type":"address"},{"internalType":"uint256","name":"_wNFTTokenId","type":"uint256"}],"name":"unWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wnftTypes","outputs":[{"internalType":"enum ETypes.AssetType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem","name":"inAsset","type":"tuple"},{"internalType":"address","name":"unWrapDestination","type":"address"},{"components":[{"internalType":"bytes1","name":"feeType","type":"bytes1"},{"internalType":"uint256","name":"param","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"internalType":"struct ETypes.Fee[]","name":"fees","type":"tuple[]"},{"components":[{"internalType":"bytes1","name":"lockType","type":"bytes1"},{"internalType":"uint256","name":"param","type":"uint256"}],"internalType":"struct ETypes.Lock[]","name":"locks","type":"tuple[]"},{"components":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint16","name":"percent","type":"uint16"}],"internalType":"struct ETypes.Royalty[]","name":"royalties","type":"tuple[]"},{"internalType":"enum ETypes.AssetType","name":"outType","type":"uint8"},{"internalType":"uint256","name":"outBalance","type":"uint256"},{"internalType":"bytes2","name":"rules","type":"bytes2"}],"internalType":"struct ETypes.INData","name":"_inData","type":"tuple"},{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem[]","name":"_collateral","type":"tuple[]"},{"internalType":"address","name":"_wrappFor","type":"address"}],"name":"wrap","outputs":[{"components":[{"components":[{"internalType":"enum ETypes.AssetType","name":"assetType","type":"uint8"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct ETypes.Asset","name":"asset","type":"tuple"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ETypes.AssetItem","name":"","type":"tuple"}],"stateMutability":"payable","type":"function"}]Contract Creation Code
608060405260196002553480156200001657600080fd5b5060405162005a6238038062005a6283398101604081905262000039916200020a565b600160005580826200004b336200019b565b6001600160a01b038116620000b25760405162461bcd60e51b8152602060048201526024808201527f50726f746f636f6c54656368546f6b656e2063616e74206265207a65726f2076604482015263616c756560e01b606482015260840160405180910390fd5b600380546001600160a01b0319166001600160a01b03831690811790915560408051632dceecbb60e21b8152905163b73bb2ec9160048082019260009290919082900301818387803b1580156200010857600080fd5b505af11580156200011d573d6000803e3d6000fd5b50506040516336b91f2b60e01b81526001600160a01b0385166004820152732536fe9ab3f511540f2f9e2ec2a805005c3dd80093506336b91f2b92506024019050600060405180830381600087803b1580156200017957600080fd5b505af11580156200018e573d6000803e3d6000fd5b5050505050505062000242565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516001600160a01b03811681146200020557600080fd5b919050565b600080604083850312156200021e57600080fd5b6200022983620001ed565b91506200023960208401620001ed565b90509250929050565b61581080620002526000396000f3fe60806040526004361061014b5760003560e01c80637f6d4c93116100b6578063bc197c811161006f578063bc197c8114610433578063c424d4f714610453578063f1551a9c14610480578063f23a6e61146104b5578063f2fde38b146104e1578063faf7d7201461050157600080fd5b80637f6d4c93146103715780638da5cb5b1461039157806391ddb146146103af578063980550ca146103c25780639a7b0509146103e6578063a50410401461041357600080fd5b806339e899ee1161010857806339e899ee1461029757806342fb01a8146102b75780634d36d085146102d757806362d44472146102f757806366967cbb1461031f578063715018a61461035c57600080fd5b806301ffc9a71461015057806310118ebb14610185578063150b7a02146101bd578063320a18dc146101f6578063331758e6146102185780633360aa3c14610238575b600080fd5b34801561015c57600080fd5b5061017061016b366004614765565b610521565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b506004546101a5906001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b3480156101c957600080fd5b506101dd6101d83660046148b1565b610558565b6040516001600160e01b0319909116815260200161017c565b34801561020257600080fd5b50610216610211366004614929565b610569565b005b34801561022457600080fd5b506003546101a5906001600160a01b031681565b34801561024457600080fd5b5061027861025336600461496a565b600560205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161017c565b3480156102a357600080fd5b506102166102b2366004614987565b610671565b3480156102c357600080fd5b506102166102d23660046149b2565b61069b565b6102ea6102e5366004614a50565b610795565b60405161017c9190614b37565b34801561030357600080fd5b506101a5732536fe9ab3f511540f2f9e2ec2a805005c3dd80081565b34801561032b57600080fd5b5061034f61033a366004614987565b60066020526000908152604090205460ff1681565b60405161017c9190614b45565b34801561036857600080fd5b50610216610ded565b34801561037d57600080fd5b5061017061038c366004614b69565b610e01565b34801561039d57600080fd5b506001546001600160a01b03166101a5565b6102166103bd366004614bd1565b610ebc565b3480156103ce57600080fd5b506103d860025481565b60405190815260200161017c565b3480156103f257600080fd5b50610406610401366004614c2c565b610f33565b60405161017c9190614c7c565b34801561041f57600080fd5b5061021661042e366004614929565b611056565b34801561043f57600080fd5b506101dd61044e366004614d38565b611068565b34801561045f57600080fd5b5061047361046e366004614c2c565b61107a565b60405161017c9190614f10565b34801561048c57600080fd5b506104a061049b366004614fdd565b6113ec565b6040805192835260208301919091520161017c565b3480156104c157600080fd5b506101dd6104d0366004615038565b63f23a6e6160e01b95945050505050565b3480156104ed57600080fd5b506102166104fc366004614987565b6115c3565b34801561050d57600080fd5b5061021661051c366004614c2c565b61163c565b60006001600160e01b03198216630271189760e51b148061055257506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b61057161166c565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152600f60248201526e4e6f207a65726f206164647265737360881b60448201526064015b60405180910390fd5b6040518060400160405280836001600160a01b0316815260200182815250600560008560078111156105f2576105f2614ac9565b600781111561060357610603614ac9565b815260208082019290925260409081016000908120845181546001600160a01b0319166001600160a01b03918216178255948401516001918201559386168152600690925290208054859260ff199091169083600781111561066757610667614ac9565b0217905550505050565b61067961166c565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106a98686866116c6565b915091506106b785856119e5565b6106c057600080fd5b6106d185853330600360f81b611d19565b5060006106e3868660016000806113ec565b5090506106f1868686612107565b6106fd5750505061078f565b61070a878785888661274b565b6001600160a01b0386811660008181526007602090815260408083208a84529091529081902080546001820154600483015460089093015493518b96610100909304831695947fabb50c1815800da62a4637d3272d1584df1ee8cbd963d90fb44eb55b63acfcb594610783941691899160f01b906150a0565b60405180910390a45050505b50505050565b6040805160a08101825260006060820181815260808301829052825260208201819052918101919091526107c761284e565b6107d185836128a7565b61080f5760405162461bcd60e51b815260206004820152600f60248201526e15dc985c0818da1958dac819985a5b608a1b60448201526064016105b5565b600161081e602087018761496a565b600781111561082f5761082f614ac9565b1415801561085b57506000610847602087018761496a565b600781111561085857610858614ac9565b14155b156108cb57610879610872368790038701876150ce565b3330612c0a565b61088286613267565b146108cb5760405162461bcd60e51b81526020600482015260196024820152780537573706963696f757320617373657420666f72207772617603c1b60448201526064016105b5565b6001600560006108e361012089016101008a0161496a565b60078111156108f4576108f4614ac9565b600781111561090557610905614ac9565b81526020019081526020016000206001016000828254610925919061515b565b909155506109eb90506109406101208701610100880161496a565b600560006109566101208a016101008b0161496a565b600781111561096757610967614ac9565b600781111561097857610978614ac9565b815260208101919091526040016000908120546001600160a01b03169085906005906109ac6101208c016101008d0161496a565b60078111156109bd576109bd614ac9565b60078111156109ce576109ce614ac9565b81526020019081526020016000206001015489610120013561329e565b610a9260056000610a0461012089016101008a0161496a565b6007811115610a1557610a15614ac9565b6007811115610a2657610a26614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610a586101208a016101008b0161496a565b6007811115610a6957610a69614ac9565b6007811115610a7a57610a7a614ac9565b8152602001908152602001600020600101548761339f565b610b3a60056000610aab61012089016101008a0161496a565b6007811115610abc57610abc614ac9565b6007811115610acd57610acd614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610aff6101208a016101008b0161496a565b6007811115610b1057610b10614ac9565b6007811115610b2157610b21614ac9565b8152602001908152602001600020600101548686610ebc565b610be760056000610b5361012089016101008a0161496a565b6007811115610b6457610b64614ac9565b6007811115610b7557610b75614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610ba76101208a016101008b0161496a565b6007811115610bb857610bb8614ac9565b6007811115610bc957610bc9614ac9565b8152602001908152602001600020600101543330600260f81b611d19565b50604085013560056000610c0361012089016101008a0161496a565b6007811115610c1457610c14614ac9565b6007811115610c2557610c25614ac9565b81526020808201929092526040908101600020546001600160a01b031691610c51918901908901614987565b6001600160a01b03167fa90a3b8dae41ae10a708d32fec7bf12da5c90879c98b9c4cca3c8fba91ddf49360056000610c916101208c016101008d0161496a565b6007811115610ca257610ca2614ac9565b6007811115610cb357610cb3614ac9565b81526020810191909152604001600020600101548634610cdb6101608d016101408e0161516e565b604051610ceb94939291906150a0565b60405180910390a46040805160a08101909152806060810180610d166101208a016101008b0161496a565b6007811115610d2757610d27614ac9565b815260200160056000610d426101208c016101008d0161496a565b6007811115610d5357610d53614ac9565b6007811115610d6457610d64614ac9565b81526020808201929092526040016000908120546001600160a01b0316909252918352910190600590610d9f6101208a016101008b0161496a565b6007811115610db057610db0614ac9565b6007811115610dc157610dc1614ac9565b815260200190815260200160002060010154815260200186610120013581525090506105616001600055565b610df561166c565b610dff600061362a565b565b6000336001600160a01b0387161480610e1957503330145b610e655760405162461bcd60e51b815260206004820152601860248201527f4f6e6c7920666f7220774e4654206f722077726170706572000000000000000060448201526064016105b5565b610e728686868686611d19565b610eb05760405162461bcd60e51b815260206004820152600f60248201526e1199594818da185c99d94819985a5b608a1b60448201526064016105b5565b50600195945050505050565b80151580610eca5750600034115b1561078f57610edb8484848461367c565b610f275760405162461bcd60e51b815260206004820152601860248201527f466f7262696464656e2061646420636f6c6c61746572616c000000000000000060448201526064016105b5565b61078f84848484613858565b60606000610f41848461107a565b51905060038151516007811115610f5a57610f5a614ac9565b03610fe65780516020908101519082015160405163c87b56dd60e01b81526001600160a01b039092169163c87b56dd91610f9a9160040190815260200190565b600060405180830381865afa158015610fb7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fdf9190810190615198565b915061104f565b60048151516007811115610ffc57610ffc614ac9565b0361103c578051602090810151908201516040516303a24d0760e21b81526001600160a01b0390921691630e89341c91610f9a9160040190815260200190565b6040518060200160405280600081525091505b5092915050565b611063838383600061069b565b505050565b63bc197c8160e01b5b95945050505050565b604080516101808101825260006101408201818152610160830182905260e083019081526101008301829052610120830182905282526060602083018190529282018190528282018390526080820183905260a082019290925260c08101919091526001600160a01b0383166000908152600760208181526040808420868552909152918290208251610180810190935280549091839160e0830191849183916101408601918491839160ff169081111561113757611137614ac9565b600781111561114857611148614ac9565b8152905461010090046001600160a01b031660209182015290825260018301548282015260029092015460409182015291835260038401805483518184028101840190945280845293820193909160009084015b82821015611233576000848152602090206040805160a08101909152600384029091018054829060608201908390829060ff1660078111156111e0576111e0614ac9565b60078111156111f1576111f1614ac9565b8152905461010090046001600160a01b03166020918201529082526001838101548383015260029093015460409092019190915291835292909201910161119c565b5050509082525060048201546001600160a01b0316602080830191909152600583018054604080518285028101850182528281529401939260009084015b828210156112d35760008481526020908190206040805160608101825260038602909201805460f81b6001600160f81b0319168352600180820154848601526002909101546001600160a01b0316918301919091529083529092019101611271565b50505050815260200160068201805480602002602001604051908101604052809291908181526020016000905b8282101561134c5760008481526020908190206040805180820190915260028502909101805460f81b6001600160f81b0319168252600190810154828401529083529092019101611300565b50505050815260200160078201805480602002602001604051908101604052809291908181526020016000905b828210156113c357600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101611379565b505050908252506008919091015460f01b6001600160f01b031916602090910152905092915050565b60008060005b6001600160a01b03881660009081526007602090815260408083208a84529091529020600301548110156115b7576001600160a01b0388811660009081526007602090815260408083208b845290915290206003018054918716918390811061145d5761145d615205565b600091825260209091206003909102015461010090046001600160a01b03161480156114d357506001600160a01b03881660009081526007602090815260408083208a845290915290206003018054859190839081106114bf576114bf615205565b906000526020600020906003020160010154145b801561154b57508560078111156114ec576114ec614ac9565b6001600160a01b03891660009081526007602090815260408083208b8452909152902060030180548390811061152457611524615205565b600091825260209091206003909102015460ff16600781111561154957611549614ac9565b145b156115a5576001600160a01b03881660009081526007602090815260408083208a8452909152902060030180548290811061158857611588615205565b9060005260206000209060030201600201548192509250506115b9565b806115af8161521b565b9150506113f2565b505b9550959350505050565b6115cb61166c565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b5565b6116398161362a565b50565b6001600160a01b0382166000908152600660205260408120546116689160ff909116908490849061069b565b5050565b6001546001600160a01b03163314610dff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b5565b6000806116f3600160f01b6116db868661107a565b60c0015181166001600160f01b031990811691161490565b156117405760405162461bcd60e51b815260206004820152601b60248201527f556e577261707020666f7262696464656e20627920617574686f72000000000060448201526064016105b5565b600385600781111561175457611754614ac9565b03611821576040516331a9108f60e11b8152600481018490526001600160a01b03851690636352211e90602401602060405180830381865afa15801561179e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c29190615234565b91506001600160a01b038216331461181c5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f776e65722063616e20756e77726170206974000000000000000060448201526064016105b5565b6119dd565b600485600781111561183557611835614ac9565b0361197e5760405163bd85b03960e01b8152600481018490526001600160a01b0385169063bd85b03990602401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190615251565b604051627eeac760e11b815233600482018190526024820186905293509091506001600160a01b0385169062fdd58e90604401602060405180830381865afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190615251565b811461181c5760405162461bcd60e51b815260206004820152603060248201527f45524331313520756e7772617020617661696c61626c65206f6e6c7920666f7260448201526f20616c6c20746f74616c537570706c7960801b60648201526084016105b5565b6040805160a081019091528060608101808860078111156119a1576119a1614ac9565b8152602001876001600160a01b03168152508152602001848152602001600081525060405163391102fb60e01b81526004016105b59190614b37565b935093915050565b6000805b6001600160a01b0384166000908152600760209081526040808320868452909152902060060154811015611d0f576001600160a01b03841660009081526007602090815260408083208684529091529020600601805482908110611a4f57611a4f615205565b600091825260208220600291909102015460f81b6001600160f81b0319169003611aff576001600160a01b03841660009081526007602090815260408083208684529091529020600601805442919083908110611aae57611aae615205565b9060005260206000209060020201600101541115611aff5760405162461bcd60e51b815260206004820152600e60248201526d2a34b6b2a637b1b59032b93937b960911b60448201526064016105b5565b6001600160a01b03841660009081526007602090815260408083208684529091529020600601805482908110611b3757611b37615205565b600091825260209091206002909102015460f81b6001600160f81b031916600160f81b03611cfd5760005b6001600160a01b0385166000908152600760209081526040808320878452909152902060050154811015611cfb576001600160a01b03851660009081526007602090815260408083208784529091529020600501805482908110611bc857611bc8615205565b600091825260208220600391909102015460f81b6001600160f81b0319169003611ce9576001600160a01b038516600090815260076020908152604080832087845290915281206005018054611c51918891889160029187908110611c2f57611c2f615205565b600091825260208220600260039092020101546001600160a01b0316906113ec565b506001600160a01b038716600090815260076020908152604080832089845290915290206006018054919250829185908110611c8f57611c8f615205565b9060005260206000209060020201600101541115611ce75760405162461bcd60e51b81526020600482015260156024820152742a3930b739b332b92332b2a637b1b59032b93937b960591b60448201526064016105b5565b505b80611cf38161521b565b915050611b62565b505b80611d078161521b565b9150506119e9565b5060019392505050565b60006001600160f81b0319821681036110715760005b6001600160a01b03871660009081526007602090815260408083208984529091529020600501548110156120fa576001600160a01b03871660009081526007602090815260408083208984529091529020600501805482908110611d9557611d95615205565b600091825260208220600391909102015460f81b6001600160f81b03191690036120e8576003546004546001600160a01b03918216911615611e9b576004546001600160a01b0389811660009081526007602090815260408083208c84529091529020600501805491909216916373cf00f69185908110611e1857611e18615205565b600091825260209091206003909102016002015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602401608060405180830381865afa158015611e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e94919061526a565b6060015190505b6000806000836001600160a01b031663ce244ce1600760008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d81526020019081526020016000206005018781548110611ef957611ef9615205565b9060005260206000209060030201600760008f6001600160a01b03166001600160a01b0316815260200190815260200160002060008e81526020019081526020016000206007018c8c6040518563ffffffff1660e01b8152600401611f6194939291906152ee565b600060405180830381865afa158015611f7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fa69190810190615406565b919450925090506000805b82518110156120e157306001600160a01b0316838281518110611fd657611fd6615205565b60200260200101516001600160a01b031603612010576120108d8d87848151811061200357612003615205565b6020026020010151613c2b565b61206685828151811061202557612025615205565b602002602001015185838151811061203f5761203f615205565b602002602001015185848151811061205957612059615205565b6020026020010151612c0a565b91508b8d6001600160a01b031684838151811061208557612085615205565b60200260200101516001600160a01b03167f2e7d475f6480b44a6b26e0a71fd4bf4fbf7842b803ad204a4d23042a02bd7335856040516120c791815260200190565b60405180910390a4806120d98161521b565b915050611fb1565b5050505050505b806120f28161521b565b915050611d2f565b5060019695505050505050565b6001600160a01b038381166000908152600760209081526040808320868452909152812060040154909182913391161561216657506001600160a01b038086166000908152600760209081526040808320888452909152902060040154165b60005b6001600160a01b0387166000908152600760209081526040808320898452909152902060030154811015612573576001600160a01b038716600090815260076020908152604080832089845290915281206003018054839081106121cf576121cf615205565b600091825260209091206003909102015460ff1660078111156121f4576121f4614ac9565b146124c95784156122c7576001600160a01b0387166000908152600760209081526040808320898452909152902060030180546122c091908390811061223c5761223c615205565b600091825260209091206040805160a081019091526003909202018054829060608201908390829060ff16600781111561227857612278614ac9565b600781111561228957612289614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523084613e7a565b925061238b565b6001600160a01b03871660009081526007602090815260408083208984529091529020600301805461238891908390811061230457612304615205565b600091825260209091206040805160a081019091526003909202018054829060608201908390829060ff16600781111561234057612340614ac9565b600781111561235157612351614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523084612c0a565b92505b6001600160a01b038716600090815260076020908152604080832089845290915290206003018054829081106123c3576123c3615205565b9060005260206000209060030201600201548314612461576001600160a01b0387166000908152600760209081526040808320898452909152902060030180548290811061241357612413615205565b600091825260208220600390910201546040516001600160a01b0361010090920482169289928b16917ffca203c3f6987c2a1dae80f773c277d67920e7bce0cea9c07cd0eb8142e985ca9190a45b6001600160a01b0387166000908152600760209081526040808320898452909152812060030180548390811061249957612499615205565b60009182526020909120600390910201805460ff191660018360078111156124c3576124c3614ac9565b02179055505b6103e85a1115801561250c57506001600160a01b03871660009081526007602090815260408083208984529091529020600301546125099060019061554f565b81105b156125615785876001600160a01b03167fd66d44264f9d44e254da71183ff08098f38da4675285592ee80cdbd3b6f5153e8360405161254d91815260200190565b60405180910390a360009350505050612744565b8061256b8161521b565b915050612169565b5060016001600160a01b03871660009081526007602081815260408084208a85529091529091205460ff16908111156125ae576125ae614ac9565b141580156125f157506001600160a01b038616600090815260076020818152604080842089855290915282205460ff16908111156125ee576125ee614ac9565b14155b1561273d578361269e576001600160a01b038616600090815260076020818152604080842089855290915291829020825160a0810190935280546126989392839160608301918491839160ff9091169081111561265057612650614ac9565b600781111561266157612661614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523083612c0a565b5061273d565b6001600160a01b038616600090815260076020818152604080842089855290915291829020825160a08101909352805461273b9392839160608301918491839160ff909116908111156126f3576126f3614ac9565b600781111561270457612704614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523083613e7a565b505b6001925050505b9392505050565b600385600781111561275f5761275f614ac9565b036127c457604051630852cd8d60e31b8152600481018390526001600160a01b038516906342966c68906024015b600060405180830381600087803b1580156127a757600080fd5b505af11580156127bb573d6000803e3d6000fd5b50505050612847565b60048560078111156127d8576127d8614ac9565b0361284757604051637a94c56560e11b81526001600160a01b038481166004830152602482018490526044820183905285169063f5298aca90606401600060405180830381600087803b15801561282e57600080fd5b505af1158015612842573d6000803e3d6000fd5b505050505b5050505050565b6002600054036128a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b5565b6002600055565b60006128ce600160f11b6116db6128c46040870160208801614987565b604087013561107a565b1580156128e457506001600160a01b0382163014155b6004549091506001600160a01b031615610552576004546001600160a01b0316638f8b138e6129196040860160208701614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190615562565b156129ce5760405162461bcd60e51b815260206004820152601a60248201527f574c3a41737365742064697361626c656420666f72207772617000000000000060448201526064016105b5565b6004546001600160a01b03166352cdc6a66129ef6040860160208701614987565b612a016101608701610140880161516e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526001600160f01b0319166024820152604401602060405180830381865afa158015612a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a789190615562565b612ad65760405162461bcd60e51b815260206004820152602960248201527f574c3a536f6d652072756c6573206172652064697361626c656420666f7220746044820152681a1a5cc8185cdcd95d60ba1b60648201526084016105b5565b60005b612ae660a085018561557f565b905081101561104f576004546001600160a01b031663b6e306ac612b0d60a087018761557f565b84818110612b1d57612b1d615205565b9050606002016040016020810190612b359190614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9d9190615562565b612bf85760405162461bcd60e51b815260206004820152602660248201527f574c3a536f6d652061737365747320617265206e6f7420656e61626c656420666044820152656f722066656560d01b60648201526084016105b5565b80612c028161521b565b915050612ad9565b60008060018551516007811115612c2357612c23614ac9565b03612cdd575060408085015190516001600160a01b0384168031926000928381818185875af1925050503d8060008114612c79576040519150601f19603f3d011682016040523d82523d6000602084013e612c7e565b606091505b5050905080612cc15760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016105b5565b612cd5826001600160a01b0386163161554f565b92505061325f565b60028551516007811115612cf357612cf3614ac9565b03612e49578451602001516040516370a0823160e01b81526001600160a01b038581166004830152909116906370a0823190602401602060405180830381865afa158015612d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d699190615251565b9050306001600160a01b03851603612da2576040850151855160200151612d9d916001600160a01b0390911690859061424b565b612dc6565b6040850151855160200151612dc6916001600160a01b0390911690869086906142ae565b8451602001516040516370a0823160e01b81526001600160a01b038581166004830152839216906370a08231906024015b602060405180830381865afa158015612e14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e389190615251565b612e42919061554f565b915061325f565b60038551516007811115612e5f57612e5f614ac9565b148015612eeb57508451602090810151908601516040516331a9108f60e11b815260048101919091526001600160a01b03868116921690636352211e90602401602060405180830381865afa158015612ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee09190615234565b6001600160a01b0316145b156130f5578451602001516040516370a0823160e01b81526001600160a01b038581166004830152909116906370a0823190602401602060405180830381865afa158015612f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f619190615251565b90508460000151602001516001600160a01b03166323b872dd858588602001516040518463ffffffff1660e01b8152600401612f9f939291906155c7565b600060405180830381600087803b158015612fb957600080fd5b505af1158015612fcd573d6000803e3d6000fd5b50505050826001600160a01b03168560000151602001516001600160a01b0316636352211e87602001516040518263ffffffff1660e01b815260040161301591815260200190565b602060405180830381865afa158015613032573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130569190615234565b6001600160a01b03161480156130e657508451602001516040516370a0823160e01b81526001600160a01b038581166004830152839216906370a0823190602401602060405180830381865afa1580156130b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d89190615251565b6130e2919061554f565b6001145b156130f057600191505b61325f565b6004855151600781111561310b5761310b614ac9565b0361324457845160209081015190860151604051627eeac760e11b81526001600160a01b038681166004830152602482019290925291169062fdd58e90604401602060405180830381865afa158015613168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318c9190615251565b90508460000151602001516001600160a01b031663f242432a8585886020015189604001516040518563ffffffff1660e01b81526004016131d094939291906155eb565b600060405180830381600087803b1580156131ea57600080fd5b505af11580156131fe573d6000803e3d6000fd5b5050865160209081015190880151604051627eeac760e11b81526001600160a01b03888116600483015260248201929092528594509116915062fdd58e90604401612df7565b8460405163391102fb60e01b81526004016105b59190614b37565b509392505050565b60006003613278602084018461496a565b600781111561328957613289614ac9565b0361329657506001919050565b506060013590565b60038560078111156132b2576132b2614ac9565b036132ec576040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528516906340c10f199060440161278d565b600485600781111561330057613300614ac9565b0361334157604051630ab714fb60e11b81526001600160a01b038481166004830152602482018490526044820183905285169063156e29f69060640161278d565b6040805160a0810190915280606081018088600781111561336457613364614ac9565b8152602001876001600160a01b031681525081526020018381526020018281525060405163391102fb60e01b81526004016105b59190614b37565b6001600160a01b0383166000908152600760209081526040808320858452909152902081906133ce8282615623565b50506001600160a01b0383166000908152600760209081526040808320858452909152902060040180546001600160a01b03191690556134166101608201610140830161516e565b6001600160a01b03841660009081526007602090815260408083208684529091528120600801805461ffff191660f09390931c929092179091555b61345e60a083018361557f565b90508110156134ed576001600160a01b0384166000908152600760209081526040808320868452909152902060050161349a60a084018461557f565b838181106134aa576134aa615205565b8354600181018555600094855260209094206060909102929092019260030290910190506134d882826156c6565b505080806134e59061521b565b915050613451565b5060005b6134fe60c0830183615705565b905081101561358d576001600160a01b0384166000908152600760209081526040808320868452909152902060060161353a60c0840184615705565b8381811061354a5761354a615205565b835460018101855560009485526020909420604090910292909201926002029091019050613578828261574e565b505080806135859061521b565b9150506134f1565b5060005b61359e60e0830183615705565b905081101561078f576001600160a01b0384166000908152600760208181526040808420878552909152909120016135d960e0840184615705565b838181106135e9576135e9615205565b835460018101855560009485526020909420604090910292909201929190910190506136158282615776565b505080806136229061521b565b915050613591565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060036001600160a01b03861660009081526006602052604090205460ff1660078111156136ad576136ad614ac9565b0361375f57604051634f558e7960e01b8152600481018590526001600160a01b03861690634f558e79906024015b602060405180830381865afa1580156136f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371c9190615562565b61375a5760405162461bcd60e51b815260206004820152600f60248201526e774e4654206e6f742065786973747360881b60448201526064016105b5565b61383c565b60046001600160a01b03861660009081526006602052604090205460ff16600781111561378e5761378e614ac9565b036137c057604051634f558e7960e01b8152600481018590526001600160a01b03861690634f558e79906024016136db565b6040805160a0810182526001600160a01b03871660009081526006602052919091205481906060820190819060ff16600781111561380057613800614ac9565b8152602001886001600160a01b03168152508152602001858152602001600081525060405163391102fb60e01b81526004016105b59190614b37565b61384e600160f31b6116db878761107a565b1595945050505050565b34156138ec576040805160a081019091526138979085908590806060810180600181526000602091820181905291835282015234604090910152613c2b565b604080516001815260006020820181905281830152346060820152905184916001600160a01b038716917ff3d1350815c4f9db2be36c35f840bfb002835a83ff1c3d8f3a217b1e6227d5aa9181900360800190a35b60005b8181101561284757600183838381811061390b5761390b615205565b613921926020608090920201908101915061496a565b600781111561393257613932614ac9565b14613c19576004546001600160a01b031615613a4e576004546001600160a01b031663eb9ae17c84848481811061396b5761396b615205565b6139849260406080909202019081019150602001614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156139c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ec9190615562565b613a4e5760405162461bcd60e51b815260206004820152602d60248201527f574c3a536f6d652061737365747320617265206e6f7420656e61626c6564206660448201526c1bdc8818dbdb1b185d195c985b609a1b60648201526084016105b5565b613a79838383818110613a6357613a63615205565b90506080020180360381019061087291906150ce565b613a99848484818110613a8e57613a8e615205565b905060800201613267565b14613ae25760405162461bcd60e51b81526020600482015260196024820152780537573706963696f757320617373657420666f72207772617603c1b60448201526064016105b5565b613b148585858585818110613af957613af9615205565b905060800201803603810190613b0f91906150ce565b613c2b565b83856001600160a01b03167ff3d1350815c4f9db2be36c35f840bfb002835a83ff1c3d8f3a217b1e6227d5aa858585818110613b5257613b52615205565b613b68926020608090920201908101915061496a565b6007811115613b7957613b79614ac9565b868686818110613b8b57613b8b615205565b613ba49260406080909202019081019150602001614987565b878787818110613bb657613bb6615205565b90506080020160400135888888818110613bd257613bd2615205565b90506080020160600135604051613c10949392919060ff9490941684526001600160a01b039290921660208401526040830152606082015260800190565b60405180910390a35b80613c238161521b565b9150506138ef565b60028151516007811115613c4157613c41614ac9565b1480613c60575060018151516007811115613c5e57613c5e614ac9565b145b15613cae57602081015115613cae5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e4964206d757374206265207a65726f60601b60448201526064016105b5565b60038151516007811115613cc457613cc4614ac9565b03613d1157604081015115613d115760405162461bcd60e51b8152602060048201526013602482015272416d6f756e74206d757374206265207a65726f60681b60448201526064016105b5565b6001600160a01b03831660009081526007602090815260408083208584529091529020600301541580613d57575060038151516007811115613d5557613d55614ac9565b145b15613d67576110638383836142cf565b6000613d8a848484600001516000015185600001516020015186602001516113ec565b9150506000811180613e02575080158015613e02575081516020908101516001600160a01b0386811660009081526007845260408082208883529094529283206003018054919092169290613de157613de1615205565b600091825260209091206003909102015461010090046001600160a01b0316145b15613e6f576040808301516001600160a01b038616600090815260076020908152838220878352905291909120600301805483908110613e4457613e44615205565b90600052602060002090600302016002016000828254613e64919061515b565b9091555061078f9050565b61078f8484846142cf565b60008060018551516007811115613e9357613e93614ac9565b03613f08575060408085015190516001600160a01b0384168031926000928381818185875af1925050503d8060008114613ee9576040519150601f19603f3d011682016040523d82523d6000602084013e613eee565b606091505b5050905081846001600160a01b031631612cd5919061554f565b60028551516007811115613f1e57613f1e614ac9565b036140a857306001600160a01b03851603613ff35760008560000151602001516001600160a01b0316848760400151604051602401613f729291906001600160a01b03929092168252602082015260400190565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b17905251613fa791906157be565b6000604051808303816000865af19150503d8060008114613fe4576040519150601f19603f3d011682016040523d82523d6000602084013e613fe9565b606091505b505090505061409c565b60008560000151602001516001600160a01b031685858860400151604051602401614020939291906155c7565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161405591906157be565b6000604051808303816000865af19150503d8060008114614092576040519150601f19603f3d011682016040523d82523d6000602084013e614097565b606091505b505050505b8460400151915061325f565b600385515160078111156140be576140be614ac9565b036141755760008560000151602001516001600160a01b0316858588602001516040516024016140f0939291906155c7565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161412591906157be565b6000604051808303816000865af19150503d8060008114614162576040519150601f19603f3d011682016040523d82523d6000602084013e614167565b606091505b50509050600192505061325f565b6004855151600781111561418b5761418b614ac9565b036132445760008560000151602001516001600160a01b03168585886020015189604001516040516024016141c394939291906155eb565b60408051601f198184030181529181526020820180516001600160e01b0316637921219560e11b179052516141f891906157be565b6000604051808303816000865af19150503d8060008114614235576040519150601f19603f3d011682016040523d82523d6000602084013e61423a565b606091505b50509050856040015192505061325f565b6040516001600160a01b03831660248201526044810182905261106390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261456d565b61078f846323b872dd60e01b858585604051602401614277939291906155c7565b6002546001600160a01b0384166000908152600760209081526040808320868452909152902060030154106143465760405162461bcd60e51b815260206004820152601d60248201527f546f6f206d75636820746f6b656e7320696e20636f6c6c61746572616c00000060448201526064016105b5565b60005b6001600160a01b03841660009081526007602090815260408083208684529091529020600601548110156144c3576001600160a01b038416600090815260076020908152604080832086845290915290206006018054829081106143af576143af615205565b600091825260209091206002909102015460f81b6001600160f81b031916600160f91b036144b1576001600160a01b038416600090815260076020908152604080832086845290915290206003015461440990600161515b565b6001600160a01b0385166000908152600760209081526040808320878452909152902060060180548390811061444157614441615205565b90600052602060002090600202016001015410156144b15760405162461bcd60e51b815260206004820152602760248201527f546f6f206d75636820636f6c6c61746572616c20736c6f747320666f722074686044820152661a5cc81dd3919560ca1b60648201526084016105b5565b806144bb8161521b565b915050614349565b506001600160a01b038316600090815260076020818152604080842086855282528320600390810180546001818101835591865292909420855180519390920201805486959194929385939092849260ff191691849081111561452857614528614ac9565b021790555060209182015181546001600160a01b0390911661010002610100600160a81b03199091161790558201516001820155604090910151600290910155505050565b60006145c2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166146429092919063ffffffff16565b90508051600014806145e35750808060200190518101906145e39190615562565b6110635760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105b5565b6060610561848460008585600080866001600160a01b0316858760405161466991906157be565b60006040518083038185875af1925050503d80600081146146a6576040519150601f19603f3d011682016040523d82523d6000602084013e6146ab565b606091505b50915091506146bc878383876146c7565b979650505050505050565b6060831561473657825160000361472f576001600160a01b0385163b61472f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105b5565b5081610561565b610561838381511561474b5781518083602001fd5b8060405162461bcd60e51b81526004016105b59190614c7c565b60006020828403121561477757600080fd5b81356001600160e01b03198116811461274457600080fd5b6001600160a01b038116811461163957600080fd5b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b03811182821017156147dc576147dc6147a4565b60405290565b604080519081016001600160401b03811182821017156147dc576147dc6147a4565b604051601f8201601f191681016001600160401b038111828210171561482c5761482c6147a4565b604052919050565b60006001600160401b0382111561484d5761484d6147a4565b50601f01601f191660200190565b600082601f83011261486c57600080fd5b813561487f61487a82614834565b614804565b81815284602083860101111561489457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080608085870312156148c757600080fd5b84356148d28161478f565b935060208501356148e28161478f565b92506040850135915060608501356001600160401b0381111561490457600080fd5b6149108782880161485b565b91505092959194509250565b6008811061163957600080fd5b60008060006060848603121561493e57600080fd5b83356149498161491c565b925060208401356149598161478f565b929592945050506040919091013590565b60006020828403121561497c57600080fd5b81356127448161491c565b60006020828403121561499957600080fd5b81356127448161478f565b801515811461163957600080fd5b600080600080608085870312156149c857600080fd5b84356149d38161491c565b935060208501356149e38161478f565b92506040850135915060608501356149fa816149a4565b939692955090935050565b60008083601f840112614a1757600080fd5b5081356001600160401b03811115614a2e57600080fd5b6020830191508360208260071b8501011115614a4957600080fd5b9250929050565b60008060008060608587031215614a6657600080fd5b84356001600160401b0380821115614a7d57600080fd5b908601906101608289031215614a9257600080fd5b90945060208601359080821115614aa857600080fd5b50614ab587828801614a05565b90945092505060408501356149fa8161478f565b634e487b7160e01b600052602160045260246000fd5b60088110614afd57634e487b7160e01b600052602160045260246000fd5b9052565b8051614b0e838251614adf565b6020908101516001600160a01b0316838201528101516040808401919091520151606090910152565b608081016105528284614b01565b602081016105528284614adf565b6001600160f81b03198116811461163957600080fd5b600080600080600060a08688031215614b8157600080fd5b8535614b8c8161478f565b9450602086013593506040860135614ba38161478f565b92506060860135614bb38161478f565b91506080860135614bc381614b53565b809150509295509295909350565b60008060008060608587031215614be757600080fd5b8435614bf28161478f565b93506020850135925060408501356001600160401b03811115614c1457600080fd5b614c2087828801614a05565b95989497509550505050565b60008060408385031215614c3f57600080fd5b8235614c4a8161478f565b946020939093013593505050565b60005b83811015614c73578181015183820152602001614c5b565b50506000910152565b6020815260008251806020840152614c9b816040850160208701614c58565b601f01601f19169190910160400192915050565b60006001600160401b03821115614cc857614cc86147a4565b5060051b60200190565b600082601f830112614ce357600080fd5b81356020614cf361487a83614caf565b82815260059290921b84018101918181019086841115614d1257600080fd5b8286015b84811015614d2d5780358352918301918301614d16565b509695505050505050565b600080600080600060a08688031215614d5057600080fd5b8535614d5b8161478f565b94506020860135614d6b8161478f565b935060408601356001600160401b0380821115614d8757600080fd5b614d9389838a01614cd2565b94506060880135915080821115614da957600080fd5b614db589838a01614cd2565b93506080880135915080821115614dcb57600080fd5b50614dd88882890161485b565b9150509295509295909350565b600081518084526020808501945080840160005b83811015614e1f57614e0c878351614b01565b6080969096019590820190600101614df9565b509495945050505050565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160f81b031916885283810151848901526040908101516001600160a01b03169088015260609096019590820190600101614e3e565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160f81b03191688528301518388015260409096019590820190600101614e97565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160a01b0316885283015161ffff168388015260409096019590820190600101614edc565b60208152614f22602082018351614b01565b600060208301516101408060a0850152614f40610160850183614de5565b91506040850151614f5c60c08601826001600160a01b03169052565b506060850151601f19808685030160e0870152614f798483614e2a565b9350608087015191508086850301610100870152614f978483614e83565b935060a08701519150808685030161012087015250614fb68382614ec8565b92505060c0850151614fd3828601826001600160f01b0319169052565b5090949350505050565b600080600080600060a08688031215614ff557600080fd5b85356150008161478f565b94506020860135935060408601356150178161491c565b925060608601356150278161478f565b949793965091946080013592915050565b600080600080600060a0868803121561505057600080fd5b853561505b8161478f565b9450602086013561506b8161478f565b9350604086013592506060860135915060808601356001600160401b0381111561509457600080fd5b614dd88882890161485b565b9384526001600160a01b0392909216602084015260408301526001600160f01b031916606082015260800190565b600081830360808112156150e157600080fd5b6150e96147ba565b60408212156150f757600080fd5b6150ff6147e2565b9150833561510c8161491c565b8252602084013561511c8161478f565b806020840152508181526040840135602082015260608401356040820152809250505092915050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055257610552615145565b60006020828403121561518057600080fd5b81356001600160f01b03198116811461274457600080fd5b6000602082840312156151aa57600080fd5b81516001600160401b038111156151c057600080fd5b8201601f810184136151d157600080fd5b80516151df61487a82614834565b8181528560208385010111156151f457600080fd5b611071826020830160208601614c58565b634e487b7160e01b600052603260045260246000fd5b60006001820161522d5761522d615145565b5060010190565b60006020828403121561524657600080fd5b81516127448161478f565b60006020828403121561526357600080fd5b5051919050565b60006080828403121561527c57600080fd5b604051608081018181106001600160401b038211171561529e5761529e6147a4565b60405282516152ac816149a4565b815260208301516152bc816149a4565b602082015260408301516152cf816149a4565b604082015260608301516152e28161478f565b60608201529392505050565b600060c0820160ff60f81b875460f81b1683526001808801546020818187015260018060a01b0391508160028b0154166040818189015260c060608901528591508a5480875260e0890192508b60005283600020965060005b81811015615370578754868116855260a01c61ffff168585015296860196928201928601615347565b5050506001600160a01b0389166080880152945061538e9350505050565b6001600160a01b03831660a0830152611071565b600082601f8301126153b357600080fd5b815160206153c361487a83614caf565b82815260059290921b840181019181810190868411156153e257600080fd5b8286015b84811015614d2d5780516153f98161478f565b83529183019183016153e6565b6000806000606080858703121561541c57600080fd5b84516001600160401b038082111561543357600080fd5b818701915087601f83011261544757600080fd5b8151602061545761487a83614caf565b82815260079290921b8401810191818101908b84111561547657600080fd5b948201945b838610156154fc57858c0360808112156154955760008081fd5b61549d6147ba565b6040808312156154ad5760008081fd5b6154b56147e2565b925088516154c28161491c565b8352888601516154d18161478f565b838701529181528782015181860152888801519181019190915282526080909501949082019061547b565b918a015191985090945050508083111561551557600080fd5b615521888489016153a2565b9450604087015192508083111561553757600080fd5b5050615545868287016153a2565b9150509250925092565b8181038181111561055257610552615145565b60006020828403121561557457600080fd5b8151612744816149a4565b6000808335601e1984360301811261559657600080fd5b8301803591506001600160401b038211156155b057600080fd5b6020019150606081023603821315614a4957600080fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b813561562e8161491c565b6008811061564c57634e487b7160e01b600052602160045260246000fd5b815460ff821691508160ff198216178355602084013561566b8161478f565b6001600160a81b03199190911690911760089190911b610100600160a81b031617815560408201356001820155606090910135600290910155565b80546001600160a01b0319166001600160a01b0392909216919091179055565b81356156d181614b53565b815460ff191660f882901c178255506020820135600182015560408201356156f88161478f565b61106381600284016156a6565b6000808335601e1984360301811261571c57600080fd5b8301803591506001600160401b0382111561573657600080fd5b6020019150600681901b3603821315614a4957600080fd5b813561575981614b53565b815460ff191660f882901c17825550602082013560018201555050565b81356157818161478f565b61578b81836156a6565b50602082013561ffff811681146157a157600080fd5b815461ffff60a01b191660a09190911b61ffff60a01b1617905550565b600082516157d0818460208701614c58565b919091019291505056fea2646970667358221220e9766e326372e48d69aee71dbc0212feda82c90814abb6d74e7b7e3bdb142d5b64736f6c634300081500330000000000000000000000006004efe4c11f98c05bf27b900db18258b5f87652000000000000000000000000303cd2a927d9cb6f5ce03b88a4e3e2528baedf40
Deployed Bytecode
0x60806040526004361061014b5760003560e01c80637f6d4c93116100b6578063bc197c811161006f578063bc197c8114610433578063c424d4f714610453578063f1551a9c14610480578063f23a6e61146104b5578063f2fde38b146104e1578063faf7d7201461050157600080fd5b80637f6d4c93146103715780638da5cb5b1461039157806391ddb146146103af578063980550ca146103c25780639a7b0509146103e6578063a50410401461041357600080fd5b806339e899ee1161010857806339e899ee1461029757806342fb01a8146102b75780634d36d085146102d757806362d44472146102f757806366967cbb1461031f578063715018a61461035c57600080fd5b806301ffc9a71461015057806310118ebb14610185578063150b7a02146101bd578063320a18dc146101f6578063331758e6146102185780633360aa3c14610238575b600080fd5b34801561015c57600080fd5b5061017061016b366004614765565b610521565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b506004546101a5906001600160a01b031681565b6040516001600160a01b03909116815260200161017c565b3480156101c957600080fd5b506101dd6101d83660046148b1565b610558565b6040516001600160e01b0319909116815260200161017c565b34801561020257600080fd5b50610216610211366004614929565b610569565b005b34801561022457600080fd5b506003546101a5906001600160a01b031681565b34801561024457600080fd5b5061027861025336600461496a565b600560205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161017c565b3480156102a357600080fd5b506102166102b2366004614987565b610671565b3480156102c357600080fd5b506102166102d23660046149b2565b61069b565b6102ea6102e5366004614a50565b610795565b60405161017c9190614b37565b34801561030357600080fd5b506101a5732536fe9ab3f511540f2f9e2ec2a805005c3dd80081565b34801561032b57600080fd5b5061034f61033a366004614987565b60066020526000908152604090205460ff1681565b60405161017c9190614b45565b34801561036857600080fd5b50610216610ded565b34801561037d57600080fd5b5061017061038c366004614b69565b610e01565b34801561039d57600080fd5b506001546001600160a01b03166101a5565b6102166103bd366004614bd1565b610ebc565b3480156103ce57600080fd5b506103d860025481565b60405190815260200161017c565b3480156103f257600080fd5b50610406610401366004614c2c565b610f33565b60405161017c9190614c7c565b34801561041f57600080fd5b5061021661042e366004614929565b611056565b34801561043f57600080fd5b506101dd61044e366004614d38565b611068565b34801561045f57600080fd5b5061047361046e366004614c2c565b61107a565b60405161017c9190614f10565b34801561048c57600080fd5b506104a061049b366004614fdd565b6113ec565b6040805192835260208301919091520161017c565b3480156104c157600080fd5b506101dd6104d0366004615038565b63f23a6e6160e01b95945050505050565b3480156104ed57600080fd5b506102166104fc366004614987565b6115c3565b34801561050d57600080fd5b5061021661051c366004614c2c565b61163c565b60006001600160e01b03198216630271189760e51b148061055257506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b61057161166c565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152600f60248201526e4e6f207a65726f206164647265737360881b60448201526064015b60405180910390fd5b6040518060400160405280836001600160a01b0316815260200182815250600560008560078111156105f2576105f2614ac9565b600781111561060357610603614ac9565b815260208082019290925260409081016000908120845181546001600160a01b0319166001600160a01b03918216178255948401516001918201559386168152600690925290208054859260ff199091169083600781111561066757610667614ac9565b0217905550505050565b61067961166c565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106a98686866116c6565b915091506106b785856119e5565b6106c057600080fd5b6106d185853330600360f81b611d19565b5060006106e3868660016000806113ec565b5090506106f1868686612107565b6106fd5750505061078f565b61070a878785888661274b565b6001600160a01b0386811660008181526007602090815260408083208a84529091529081902080546001820154600483015460089093015493518b96610100909304831695947fabb50c1815800da62a4637d3272d1584df1ee8cbd963d90fb44eb55b63acfcb594610783941691899160f01b906150a0565b60405180910390a45050505b50505050565b6040805160a08101825260006060820181815260808301829052825260208201819052918101919091526107c761284e565b6107d185836128a7565b61080f5760405162461bcd60e51b815260206004820152600f60248201526e15dc985c0818da1958dac819985a5b608a1b60448201526064016105b5565b600161081e602087018761496a565b600781111561082f5761082f614ac9565b1415801561085b57506000610847602087018761496a565b600781111561085857610858614ac9565b14155b156108cb57610879610872368790038701876150ce565b3330612c0a565b61088286613267565b146108cb5760405162461bcd60e51b81526020600482015260196024820152780537573706963696f757320617373657420666f72207772617603c1b60448201526064016105b5565b6001600560006108e361012089016101008a0161496a565b60078111156108f4576108f4614ac9565b600781111561090557610905614ac9565b81526020019081526020016000206001016000828254610925919061515b565b909155506109eb90506109406101208701610100880161496a565b600560006109566101208a016101008b0161496a565b600781111561096757610967614ac9565b600781111561097857610978614ac9565b815260208101919091526040016000908120546001600160a01b03169085906005906109ac6101208c016101008d0161496a565b60078111156109bd576109bd614ac9565b60078111156109ce576109ce614ac9565b81526020019081526020016000206001015489610120013561329e565b610a9260056000610a0461012089016101008a0161496a565b6007811115610a1557610a15614ac9565b6007811115610a2657610a26614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610a586101208a016101008b0161496a565b6007811115610a6957610a69614ac9565b6007811115610a7a57610a7a614ac9565b8152602001908152602001600020600101548761339f565b610b3a60056000610aab61012089016101008a0161496a565b6007811115610abc57610abc614ac9565b6007811115610acd57610acd614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610aff6101208a016101008b0161496a565b6007811115610b1057610b10614ac9565b6007811115610b2157610b21614ac9565b8152602001908152602001600020600101548686610ebc565b610be760056000610b5361012089016101008a0161496a565b6007811115610b6457610b64614ac9565b6007811115610b7557610b75614ac9565b815260208101919091526040016000908120546001600160a01b031690600590610ba76101208a016101008b0161496a565b6007811115610bb857610bb8614ac9565b6007811115610bc957610bc9614ac9565b8152602001908152602001600020600101543330600260f81b611d19565b50604085013560056000610c0361012089016101008a0161496a565b6007811115610c1457610c14614ac9565b6007811115610c2557610c25614ac9565b81526020808201929092526040908101600020546001600160a01b031691610c51918901908901614987565b6001600160a01b03167fa90a3b8dae41ae10a708d32fec7bf12da5c90879c98b9c4cca3c8fba91ddf49360056000610c916101208c016101008d0161496a565b6007811115610ca257610ca2614ac9565b6007811115610cb357610cb3614ac9565b81526020810191909152604001600020600101548634610cdb6101608d016101408e0161516e565b604051610ceb94939291906150a0565b60405180910390a46040805160a08101909152806060810180610d166101208a016101008b0161496a565b6007811115610d2757610d27614ac9565b815260200160056000610d426101208c016101008d0161496a565b6007811115610d5357610d53614ac9565b6007811115610d6457610d64614ac9565b81526020808201929092526040016000908120546001600160a01b0316909252918352910190600590610d9f6101208a016101008b0161496a565b6007811115610db057610db0614ac9565b6007811115610dc157610dc1614ac9565b815260200190815260200160002060010154815260200186610120013581525090506105616001600055565b610df561166c565b610dff600061362a565b565b6000336001600160a01b0387161480610e1957503330145b610e655760405162461bcd60e51b815260206004820152601860248201527f4f6e6c7920666f7220774e4654206f722077726170706572000000000000000060448201526064016105b5565b610e728686868686611d19565b610eb05760405162461bcd60e51b815260206004820152600f60248201526e1199594818da185c99d94819985a5b608a1b60448201526064016105b5565b50600195945050505050565b80151580610eca5750600034115b1561078f57610edb8484848461367c565b610f275760405162461bcd60e51b815260206004820152601860248201527f466f7262696464656e2061646420636f6c6c61746572616c000000000000000060448201526064016105b5565b61078f84848484613858565b60606000610f41848461107a565b51905060038151516007811115610f5a57610f5a614ac9565b03610fe65780516020908101519082015160405163c87b56dd60e01b81526001600160a01b039092169163c87b56dd91610f9a9160040190815260200190565b600060405180830381865afa158015610fb7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fdf9190810190615198565b915061104f565b60048151516007811115610ffc57610ffc614ac9565b0361103c578051602090810151908201516040516303a24d0760e21b81526001600160a01b0390921691630e89341c91610f9a9160040190815260200190565b6040518060200160405280600081525091505b5092915050565b611063838383600061069b565b505050565b63bc197c8160e01b5b95945050505050565b604080516101808101825260006101408201818152610160830182905260e083019081526101008301829052610120830182905282526060602083018190529282018190528282018390526080820183905260a082019290925260c08101919091526001600160a01b0383166000908152600760208181526040808420868552909152918290208251610180810190935280549091839160e0830191849183916101408601918491839160ff169081111561113757611137614ac9565b600781111561114857611148614ac9565b8152905461010090046001600160a01b031660209182015290825260018301548282015260029092015460409182015291835260038401805483518184028101840190945280845293820193909160009084015b82821015611233576000848152602090206040805160a08101909152600384029091018054829060608201908390829060ff1660078111156111e0576111e0614ac9565b60078111156111f1576111f1614ac9565b8152905461010090046001600160a01b03166020918201529082526001838101548383015260029093015460409092019190915291835292909201910161119c565b5050509082525060048201546001600160a01b0316602080830191909152600583018054604080518285028101850182528281529401939260009084015b828210156112d35760008481526020908190206040805160608101825260038602909201805460f81b6001600160f81b0319168352600180820154848601526002909101546001600160a01b0316918301919091529083529092019101611271565b50505050815260200160068201805480602002602001604051908101604052809291908181526020016000905b8282101561134c5760008481526020908190206040805180820190915260028502909101805460f81b6001600160f81b0319168252600190810154828401529083529092019101611300565b50505050815260200160078201805480602002602001604051908101604052809291908181526020016000905b828210156113c357600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101611379565b505050908252506008919091015460f01b6001600160f01b031916602090910152905092915050565b60008060005b6001600160a01b03881660009081526007602090815260408083208a84529091529020600301548110156115b7576001600160a01b0388811660009081526007602090815260408083208b845290915290206003018054918716918390811061145d5761145d615205565b600091825260209091206003909102015461010090046001600160a01b03161480156114d357506001600160a01b03881660009081526007602090815260408083208a845290915290206003018054859190839081106114bf576114bf615205565b906000526020600020906003020160010154145b801561154b57508560078111156114ec576114ec614ac9565b6001600160a01b03891660009081526007602090815260408083208b8452909152902060030180548390811061152457611524615205565b600091825260209091206003909102015460ff16600781111561154957611549614ac9565b145b156115a5576001600160a01b03881660009081526007602090815260408083208a8452909152902060030180548290811061158857611588615205565b9060005260206000209060030201600201548192509250506115b9565b806115af8161521b565b9150506113f2565b505b9550959350505050565b6115cb61166c565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b5565b6116398161362a565b50565b6001600160a01b0382166000908152600660205260408120546116689160ff909116908490849061069b565b5050565b6001546001600160a01b03163314610dff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b5565b6000806116f3600160f01b6116db868661107a565b60c0015181166001600160f01b031990811691161490565b156117405760405162461bcd60e51b815260206004820152601b60248201527f556e577261707020666f7262696464656e20627920617574686f72000000000060448201526064016105b5565b600385600781111561175457611754614ac9565b03611821576040516331a9108f60e11b8152600481018490526001600160a01b03851690636352211e90602401602060405180830381865afa15801561179e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c29190615234565b91506001600160a01b038216331461181c5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f776e65722063616e20756e77726170206974000000000000000060448201526064016105b5565b6119dd565b600485600781111561183557611835614ac9565b0361197e5760405163bd85b03960e01b8152600481018490526001600160a01b0385169063bd85b03990602401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190615251565b604051627eeac760e11b815233600482018190526024820186905293509091506001600160a01b0385169062fdd58e90604401602060405180830381865afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190615251565b811461181c5760405162461bcd60e51b815260206004820152603060248201527f45524331313520756e7772617020617661696c61626c65206f6e6c7920666f7260448201526f20616c6c20746f74616c537570706c7960801b60648201526084016105b5565b6040805160a081019091528060608101808860078111156119a1576119a1614ac9565b8152602001876001600160a01b03168152508152602001848152602001600081525060405163391102fb60e01b81526004016105b59190614b37565b935093915050565b6000805b6001600160a01b0384166000908152600760209081526040808320868452909152902060060154811015611d0f576001600160a01b03841660009081526007602090815260408083208684529091529020600601805482908110611a4f57611a4f615205565b600091825260208220600291909102015460f81b6001600160f81b0319169003611aff576001600160a01b03841660009081526007602090815260408083208684529091529020600601805442919083908110611aae57611aae615205565b9060005260206000209060020201600101541115611aff5760405162461bcd60e51b815260206004820152600e60248201526d2a34b6b2a637b1b59032b93937b960911b60448201526064016105b5565b6001600160a01b03841660009081526007602090815260408083208684529091529020600601805482908110611b3757611b37615205565b600091825260209091206002909102015460f81b6001600160f81b031916600160f81b03611cfd5760005b6001600160a01b0385166000908152600760209081526040808320878452909152902060050154811015611cfb576001600160a01b03851660009081526007602090815260408083208784529091529020600501805482908110611bc857611bc8615205565b600091825260208220600391909102015460f81b6001600160f81b0319169003611ce9576001600160a01b038516600090815260076020908152604080832087845290915281206005018054611c51918891889160029187908110611c2f57611c2f615205565b600091825260208220600260039092020101546001600160a01b0316906113ec565b506001600160a01b038716600090815260076020908152604080832089845290915290206006018054919250829185908110611c8f57611c8f615205565b9060005260206000209060020201600101541115611ce75760405162461bcd60e51b81526020600482015260156024820152742a3930b739b332b92332b2a637b1b59032b93937b960591b60448201526064016105b5565b505b80611cf38161521b565b915050611b62565b505b80611d078161521b565b9150506119e9565b5060019392505050565b60006001600160f81b0319821681036110715760005b6001600160a01b03871660009081526007602090815260408083208984529091529020600501548110156120fa576001600160a01b03871660009081526007602090815260408083208984529091529020600501805482908110611d9557611d95615205565b600091825260208220600391909102015460f81b6001600160f81b03191690036120e8576003546004546001600160a01b03918216911615611e9b576004546001600160a01b0389811660009081526007602090815260408083208c84529091529020600501805491909216916373cf00f69185908110611e1857611e18615205565b600091825260209091206003909102016002015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602401608060405180830381865afa158015611e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e94919061526a565b6060015190505b6000806000836001600160a01b031663ce244ce1600760008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d81526020019081526020016000206005018781548110611ef957611ef9615205565b9060005260206000209060030201600760008f6001600160a01b03166001600160a01b0316815260200190815260200160002060008e81526020019081526020016000206007018c8c6040518563ffffffff1660e01b8152600401611f6194939291906152ee565b600060405180830381865afa158015611f7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fa69190810190615406565b919450925090506000805b82518110156120e157306001600160a01b0316838281518110611fd657611fd6615205565b60200260200101516001600160a01b031603612010576120108d8d87848151811061200357612003615205565b6020026020010151613c2b565b61206685828151811061202557612025615205565b602002602001015185838151811061203f5761203f615205565b602002602001015185848151811061205957612059615205565b6020026020010151612c0a565b91508b8d6001600160a01b031684838151811061208557612085615205565b60200260200101516001600160a01b03167f2e7d475f6480b44a6b26e0a71fd4bf4fbf7842b803ad204a4d23042a02bd7335856040516120c791815260200190565b60405180910390a4806120d98161521b565b915050611fb1565b5050505050505b806120f28161521b565b915050611d2f565b5060019695505050505050565b6001600160a01b038381166000908152600760209081526040808320868452909152812060040154909182913391161561216657506001600160a01b038086166000908152600760209081526040808320888452909152902060040154165b60005b6001600160a01b0387166000908152600760209081526040808320898452909152902060030154811015612573576001600160a01b038716600090815260076020908152604080832089845290915281206003018054839081106121cf576121cf615205565b600091825260209091206003909102015460ff1660078111156121f4576121f4614ac9565b146124c95784156122c7576001600160a01b0387166000908152600760209081526040808320898452909152902060030180546122c091908390811061223c5761223c615205565b600091825260209091206040805160a081019091526003909202018054829060608201908390829060ff16600781111561227857612278614ac9565b600781111561228957612289614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523084613e7a565b925061238b565b6001600160a01b03871660009081526007602090815260408083208984529091529020600301805461238891908390811061230457612304615205565b600091825260209091206040805160a081019091526003909202018054829060608201908390829060ff16600781111561234057612340614ac9565b600781111561235157612351614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523084612c0a565b92505b6001600160a01b038716600090815260076020908152604080832089845290915290206003018054829081106123c3576123c3615205565b9060005260206000209060030201600201548314612461576001600160a01b0387166000908152600760209081526040808320898452909152902060030180548290811061241357612413615205565b600091825260208220600390910201546040516001600160a01b0361010090920482169289928b16917ffca203c3f6987c2a1dae80f773c277d67920e7bce0cea9c07cd0eb8142e985ca9190a45b6001600160a01b0387166000908152600760209081526040808320898452909152812060030180548390811061249957612499615205565b60009182526020909120600390910201805460ff191660018360078111156124c3576124c3614ac9565b02179055505b6103e85a1115801561250c57506001600160a01b03871660009081526007602090815260408083208984529091529020600301546125099060019061554f565b81105b156125615785876001600160a01b03167fd66d44264f9d44e254da71183ff08098f38da4675285592ee80cdbd3b6f5153e8360405161254d91815260200190565b60405180910390a360009350505050612744565b8061256b8161521b565b915050612169565b5060016001600160a01b03871660009081526007602081815260408084208a85529091529091205460ff16908111156125ae576125ae614ac9565b141580156125f157506001600160a01b038616600090815260076020818152604080842089855290915282205460ff16908111156125ee576125ee614ac9565b14155b1561273d578361269e576001600160a01b038616600090815260076020818152604080842089855290915291829020825160a0810190935280546126989392839160608301918491839160ff9091169081111561265057612650614ac9565b600781111561266157612661614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523083612c0a565b5061273d565b6001600160a01b038616600090815260076020818152604080842089855290915291829020825160a08101909352805461273b9392839160608301918491839160ff909116908111156126f3576126f3614ac9565b600781111561270457612704614ac9565b8152905461010090046001600160a01b03166020918201529082526001830154908201526002909101546040909101523083613e7a565b505b6001925050505b9392505050565b600385600781111561275f5761275f614ac9565b036127c457604051630852cd8d60e31b8152600481018390526001600160a01b038516906342966c68906024015b600060405180830381600087803b1580156127a757600080fd5b505af11580156127bb573d6000803e3d6000fd5b50505050612847565b60048560078111156127d8576127d8614ac9565b0361284757604051637a94c56560e11b81526001600160a01b038481166004830152602482018490526044820183905285169063f5298aca90606401600060405180830381600087803b15801561282e57600080fd5b505af1158015612842573d6000803e3d6000fd5b505050505b5050505050565b6002600054036128a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b5565b6002600055565b60006128ce600160f11b6116db6128c46040870160208801614987565b604087013561107a565b1580156128e457506001600160a01b0382163014155b6004549091506001600160a01b031615610552576004546001600160a01b0316638f8b138e6129196040860160208701614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190615562565b156129ce5760405162461bcd60e51b815260206004820152601a60248201527f574c3a41737365742064697361626c656420666f72207772617000000000000060448201526064016105b5565b6004546001600160a01b03166352cdc6a66129ef6040860160208701614987565b612a016101608701610140880161516e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526001600160f01b0319166024820152604401602060405180830381865afa158015612a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a789190615562565b612ad65760405162461bcd60e51b815260206004820152602960248201527f574c3a536f6d652072756c6573206172652064697361626c656420666f7220746044820152681a1a5cc8185cdcd95d60ba1b60648201526084016105b5565b60005b612ae660a085018561557f565b905081101561104f576004546001600160a01b031663b6e306ac612b0d60a087018761557f565b84818110612b1d57612b1d615205565b9050606002016040016020810190612b359190614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9d9190615562565b612bf85760405162461bcd60e51b815260206004820152602660248201527f574c3a536f6d652061737365747320617265206e6f7420656e61626c656420666044820152656f722066656560d01b60648201526084016105b5565b80612c028161521b565b915050612ad9565b60008060018551516007811115612c2357612c23614ac9565b03612cdd575060408085015190516001600160a01b0384168031926000928381818185875af1925050503d8060008114612c79576040519150601f19603f3d011682016040523d82523d6000602084013e612c7e565b606091505b5050905080612cc15760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016105b5565b612cd5826001600160a01b0386163161554f565b92505061325f565b60028551516007811115612cf357612cf3614ac9565b03612e49578451602001516040516370a0823160e01b81526001600160a01b038581166004830152909116906370a0823190602401602060405180830381865afa158015612d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d699190615251565b9050306001600160a01b03851603612da2576040850151855160200151612d9d916001600160a01b0390911690859061424b565b612dc6565b6040850151855160200151612dc6916001600160a01b0390911690869086906142ae565b8451602001516040516370a0823160e01b81526001600160a01b038581166004830152839216906370a08231906024015b602060405180830381865afa158015612e14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e389190615251565b612e42919061554f565b915061325f565b60038551516007811115612e5f57612e5f614ac9565b148015612eeb57508451602090810151908601516040516331a9108f60e11b815260048101919091526001600160a01b03868116921690636352211e90602401602060405180830381865afa158015612ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee09190615234565b6001600160a01b0316145b156130f5578451602001516040516370a0823160e01b81526001600160a01b038581166004830152909116906370a0823190602401602060405180830381865afa158015612f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f619190615251565b90508460000151602001516001600160a01b03166323b872dd858588602001516040518463ffffffff1660e01b8152600401612f9f939291906155c7565b600060405180830381600087803b158015612fb957600080fd5b505af1158015612fcd573d6000803e3d6000fd5b50505050826001600160a01b03168560000151602001516001600160a01b0316636352211e87602001516040518263ffffffff1660e01b815260040161301591815260200190565b602060405180830381865afa158015613032573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130569190615234565b6001600160a01b03161480156130e657508451602001516040516370a0823160e01b81526001600160a01b038581166004830152839216906370a0823190602401602060405180830381865afa1580156130b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d89190615251565b6130e2919061554f565b6001145b156130f057600191505b61325f565b6004855151600781111561310b5761310b614ac9565b0361324457845160209081015190860151604051627eeac760e11b81526001600160a01b038681166004830152602482019290925291169062fdd58e90604401602060405180830381865afa158015613168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318c9190615251565b90508460000151602001516001600160a01b031663f242432a8585886020015189604001516040518563ffffffff1660e01b81526004016131d094939291906155eb565b600060405180830381600087803b1580156131ea57600080fd5b505af11580156131fe573d6000803e3d6000fd5b5050865160209081015190880151604051627eeac760e11b81526001600160a01b03888116600483015260248201929092528594509116915062fdd58e90604401612df7565b8460405163391102fb60e01b81526004016105b59190614b37565b509392505050565b60006003613278602084018461496a565b600781111561328957613289614ac9565b0361329657506001919050565b506060013590565b60038560078111156132b2576132b2614ac9565b036132ec576040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528516906340c10f199060440161278d565b600485600781111561330057613300614ac9565b0361334157604051630ab714fb60e11b81526001600160a01b038481166004830152602482018490526044820183905285169063156e29f69060640161278d565b6040805160a0810190915280606081018088600781111561336457613364614ac9565b8152602001876001600160a01b031681525081526020018381526020018281525060405163391102fb60e01b81526004016105b59190614b37565b6001600160a01b0383166000908152600760209081526040808320858452909152902081906133ce8282615623565b50506001600160a01b0383166000908152600760209081526040808320858452909152902060040180546001600160a01b03191690556134166101608201610140830161516e565b6001600160a01b03841660009081526007602090815260408083208684529091528120600801805461ffff191660f09390931c929092179091555b61345e60a083018361557f565b90508110156134ed576001600160a01b0384166000908152600760209081526040808320868452909152902060050161349a60a084018461557f565b838181106134aa576134aa615205565b8354600181018555600094855260209094206060909102929092019260030290910190506134d882826156c6565b505080806134e59061521b565b915050613451565b5060005b6134fe60c0830183615705565b905081101561358d576001600160a01b0384166000908152600760209081526040808320868452909152902060060161353a60c0840184615705565b8381811061354a5761354a615205565b835460018101855560009485526020909420604090910292909201926002029091019050613578828261574e565b505080806135859061521b565b9150506134f1565b5060005b61359e60e0830183615705565b905081101561078f576001600160a01b0384166000908152600760208181526040808420878552909152909120016135d960e0840184615705565b838181106135e9576135e9615205565b835460018101855560009485526020909420604090910292909201929190910190506136158282615776565b505080806136229061521b565b915050613591565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060036001600160a01b03861660009081526006602052604090205460ff1660078111156136ad576136ad614ac9565b0361375f57604051634f558e7960e01b8152600481018590526001600160a01b03861690634f558e79906024015b602060405180830381865afa1580156136f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371c9190615562565b61375a5760405162461bcd60e51b815260206004820152600f60248201526e774e4654206e6f742065786973747360881b60448201526064016105b5565b61383c565b60046001600160a01b03861660009081526006602052604090205460ff16600781111561378e5761378e614ac9565b036137c057604051634f558e7960e01b8152600481018590526001600160a01b03861690634f558e79906024016136db565b6040805160a0810182526001600160a01b03871660009081526006602052919091205481906060820190819060ff16600781111561380057613800614ac9565b8152602001886001600160a01b03168152508152602001858152602001600081525060405163391102fb60e01b81526004016105b59190614b37565b61384e600160f31b6116db878761107a565b1595945050505050565b34156138ec576040805160a081019091526138979085908590806060810180600181526000602091820181905291835282015234604090910152613c2b565b604080516001815260006020820181905281830152346060820152905184916001600160a01b038716917ff3d1350815c4f9db2be36c35f840bfb002835a83ff1c3d8f3a217b1e6227d5aa9181900360800190a35b60005b8181101561284757600183838381811061390b5761390b615205565b613921926020608090920201908101915061496a565b600781111561393257613932614ac9565b14613c19576004546001600160a01b031615613a4e576004546001600160a01b031663eb9ae17c84848481811061396b5761396b615205565b6139849260406080909202019081019150602001614987565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156139c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ec9190615562565b613a4e5760405162461bcd60e51b815260206004820152602d60248201527f574c3a536f6d652061737365747320617265206e6f7420656e61626c6564206660448201526c1bdc8818dbdb1b185d195c985b609a1b60648201526084016105b5565b613a79838383818110613a6357613a63615205565b90506080020180360381019061087291906150ce565b613a99848484818110613a8e57613a8e615205565b905060800201613267565b14613ae25760405162461bcd60e51b81526020600482015260196024820152780537573706963696f757320617373657420666f72207772617603c1b60448201526064016105b5565b613b148585858585818110613af957613af9615205565b905060800201803603810190613b0f91906150ce565b613c2b565b83856001600160a01b03167ff3d1350815c4f9db2be36c35f840bfb002835a83ff1c3d8f3a217b1e6227d5aa858585818110613b5257613b52615205565b613b68926020608090920201908101915061496a565b6007811115613b7957613b79614ac9565b868686818110613b8b57613b8b615205565b613ba49260406080909202019081019150602001614987565b878787818110613bb657613bb6615205565b90506080020160400135888888818110613bd257613bd2615205565b90506080020160600135604051613c10949392919060ff9490941684526001600160a01b039290921660208401526040830152606082015260800190565b60405180910390a35b80613c238161521b565b9150506138ef565b60028151516007811115613c4157613c41614ac9565b1480613c60575060018151516007811115613c5e57613c5e614ac9565b145b15613cae57602081015115613cae5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e4964206d757374206265207a65726f60601b60448201526064016105b5565b60038151516007811115613cc457613cc4614ac9565b03613d1157604081015115613d115760405162461bcd60e51b8152602060048201526013602482015272416d6f756e74206d757374206265207a65726f60681b60448201526064016105b5565b6001600160a01b03831660009081526007602090815260408083208584529091529020600301541580613d57575060038151516007811115613d5557613d55614ac9565b145b15613d67576110638383836142cf565b6000613d8a848484600001516000015185600001516020015186602001516113ec565b9150506000811180613e02575080158015613e02575081516020908101516001600160a01b0386811660009081526007845260408082208883529094529283206003018054919092169290613de157613de1615205565b600091825260209091206003909102015461010090046001600160a01b0316145b15613e6f576040808301516001600160a01b038616600090815260076020908152838220878352905291909120600301805483908110613e4457613e44615205565b90600052602060002090600302016002016000828254613e64919061515b565b9091555061078f9050565b61078f8484846142cf565b60008060018551516007811115613e9357613e93614ac9565b03613f08575060408085015190516001600160a01b0384168031926000928381818185875af1925050503d8060008114613ee9576040519150601f19603f3d011682016040523d82523d6000602084013e613eee565b606091505b5050905081846001600160a01b031631612cd5919061554f565b60028551516007811115613f1e57613f1e614ac9565b036140a857306001600160a01b03851603613ff35760008560000151602001516001600160a01b0316848760400151604051602401613f729291906001600160a01b03929092168252602082015260400190565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b17905251613fa791906157be565b6000604051808303816000865af19150503d8060008114613fe4576040519150601f19603f3d011682016040523d82523d6000602084013e613fe9565b606091505b505090505061409c565b60008560000151602001516001600160a01b031685858860400151604051602401614020939291906155c7565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161405591906157be565b6000604051808303816000865af19150503d8060008114614092576040519150601f19603f3d011682016040523d82523d6000602084013e614097565b606091505b505050505b8460400151915061325f565b600385515160078111156140be576140be614ac9565b036141755760008560000151602001516001600160a01b0316858588602001516040516024016140f0939291906155c7565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161412591906157be565b6000604051808303816000865af19150503d8060008114614162576040519150601f19603f3d011682016040523d82523d6000602084013e614167565b606091505b50509050600192505061325f565b6004855151600781111561418b5761418b614ac9565b036132445760008560000151602001516001600160a01b03168585886020015189604001516040516024016141c394939291906155eb565b60408051601f198184030181529181526020820180516001600160e01b0316637921219560e11b179052516141f891906157be565b6000604051808303816000865af19150503d8060008114614235576040519150601f19603f3d011682016040523d82523d6000602084013e61423a565b606091505b50509050856040015192505061325f565b6040516001600160a01b03831660248201526044810182905261106390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261456d565b61078f846323b872dd60e01b858585604051602401614277939291906155c7565b6002546001600160a01b0384166000908152600760209081526040808320868452909152902060030154106143465760405162461bcd60e51b815260206004820152601d60248201527f546f6f206d75636820746f6b656e7320696e20636f6c6c61746572616c00000060448201526064016105b5565b60005b6001600160a01b03841660009081526007602090815260408083208684529091529020600601548110156144c3576001600160a01b038416600090815260076020908152604080832086845290915290206006018054829081106143af576143af615205565b600091825260209091206002909102015460f81b6001600160f81b031916600160f91b036144b1576001600160a01b038416600090815260076020908152604080832086845290915290206003015461440990600161515b565b6001600160a01b0385166000908152600760209081526040808320878452909152902060060180548390811061444157614441615205565b90600052602060002090600202016001015410156144b15760405162461bcd60e51b815260206004820152602760248201527f546f6f206d75636820636f6c6c61746572616c20736c6f747320666f722074686044820152661a5cc81dd3919560ca1b60648201526084016105b5565b806144bb8161521b565b915050614349565b506001600160a01b038316600090815260076020818152604080842086855282528320600390810180546001818101835591865292909420855180519390920201805486959194929385939092849260ff191691849081111561452857614528614ac9565b021790555060209182015181546001600160a01b0390911661010002610100600160a81b03199091161790558201516001820155604090910151600290910155505050565b60006145c2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166146429092919063ffffffff16565b90508051600014806145e35750808060200190518101906145e39190615562565b6110635760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105b5565b6060610561848460008585600080866001600160a01b0316858760405161466991906157be565b60006040518083038185875af1925050503d80600081146146a6576040519150601f19603f3d011682016040523d82523d6000602084013e6146ab565b606091505b50915091506146bc878383876146c7565b979650505050505050565b6060831561473657825160000361472f576001600160a01b0385163b61472f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105b5565b5081610561565b610561838381511561474b5781518083602001fd5b8060405162461bcd60e51b81526004016105b59190614c7c565b60006020828403121561477757600080fd5b81356001600160e01b03198116811461274457600080fd5b6001600160a01b038116811461163957600080fd5b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b03811182821017156147dc576147dc6147a4565b60405290565b604080519081016001600160401b03811182821017156147dc576147dc6147a4565b604051601f8201601f191681016001600160401b038111828210171561482c5761482c6147a4565b604052919050565b60006001600160401b0382111561484d5761484d6147a4565b50601f01601f191660200190565b600082601f83011261486c57600080fd5b813561487f61487a82614834565b614804565b81815284602083860101111561489457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080608085870312156148c757600080fd5b84356148d28161478f565b935060208501356148e28161478f565b92506040850135915060608501356001600160401b0381111561490457600080fd5b6149108782880161485b565b91505092959194509250565b6008811061163957600080fd5b60008060006060848603121561493e57600080fd5b83356149498161491c565b925060208401356149598161478f565b929592945050506040919091013590565b60006020828403121561497c57600080fd5b81356127448161491c565b60006020828403121561499957600080fd5b81356127448161478f565b801515811461163957600080fd5b600080600080608085870312156149c857600080fd5b84356149d38161491c565b935060208501356149e38161478f565b92506040850135915060608501356149fa816149a4565b939692955090935050565b60008083601f840112614a1757600080fd5b5081356001600160401b03811115614a2e57600080fd5b6020830191508360208260071b8501011115614a4957600080fd5b9250929050565b60008060008060608587031215614a6657600080fd5b84356001600160401b0380821115614a7d57600080fd5b908601906101608289031215614a9257600080fd5b90945060208601359080821115614aa857600080fd5b50614ab587828801614a05565b90945092505060408501356149fa8161478f565b634e487b7160e01b600052602160045260246000fd5b60088110614afd57634e487b7160e01b600052602160045260246000fd5b9052565b8051614b0e838251614adf565b6020908101516001600160a01b0316838201528101516040808401919091520151606090910152565b608081016105528284614b01565b602081016105528284614adf565b6001600160f81b03198116811461163957600080fd5b600080600080600060a08688031215614b8157600080fd5b8535614b8c8161478f565b9450602086013593506040860135614ba38161478f565b92506060860135614bb38161478f565b91506080860135614bc381614b53565b809150509295509295909350565b60008060008060608587031215614be757600080fd5b8435614bf28161478f565b93506020850135925060408501356001600160401b03811115614c1457600080fd5b614c2087828801614a05565b95989497509550505050565b60008060408385031215614c3f57600080fd5b8235614c4a8161478f565b946020939093013593505050565b60005b83811015614c73578181015183820152602001614c5b565b50506000910152565b6020815260008251806020840152614c9b816040850160208701614c58565b601f01601f19169190910160400192915050565b60006001600160401b03821115614cc857614cc86147a4565b5060051b60200190565b600082601f830112614ce357600080fd5b81356020614cf361487a83614caf565b82815260059290921b84018101918181019086841115614d1257600080fd5b8286015b84811015614d2d5780358352918301918301614d16565b509695505050505050565b600080600080600060a08688031215614d5057600080fd5b8535614d5b8161478f565b94506020860135614d6b8161478f565b935060408601356001600160401b0380821115614d8757600080fd5b614d9389838a01614cd2565b94506060880135915080821115614da957600080fd5b614db589838a01614cd2565b93506080880135915080821115614dcb57600080fd5b50614dd88882890161485b565b9150509295509295909350565b600081518084526020808501945080840160005b83811015614e1f57614e0c878351614b01565b6080969096019590820190600101614df9565b509495945050505050565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160f81b031916885283810151848901526040908101516001600160a01b03169088015260609096019590820190600101614e3e565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160f81b03191688528301518388015260409096019590820190600101614e97565b600081518084526020808501945080840160005b83811015614e1f57815180516001600160a01b0316885283015161ffff168388015260409096019590820190600101614edc565b60208152614f22602082018351614b01565b600060208301516101408060a0850152614f40610160850183614de5565b91506040850151614f5c60c08601826001600160a01b03169052565b506060850151601f19808685030160e0870152614f798483614e2a565b9350608087015191508086850301610100870152614f978483614e83565b935060a08701519150808685030161012087015250614fb68382614ec8565b92505060c0850151614fd3828601826001600160f01b0319169052565b5090949350505050565b600080600080600060a08688031215614ff557600080fd5b85356150008161478f565b94506020860135935060408601356150178161491c565b925060608601356150278161478f565b949793965091946080013592915050565b600080600080600060a0868803121561505057600080fd5b853561505b8161478f565b9450602086013561506b8161478f565b9350604086013592506060860135915060808601356001600160401b0381111561509457600080fd5b614dd88882890161485b565b9384526001600160a01b0392909216602084015260408301526001600160f01b031916606082015260800190565b600081830360808112156150e157600080fd5b6150e96147ba565b60408212156150f757600080fd5b6150ff6147e2565b9150833561510c8161491c565b8252602084013561511c8161478f565b806020840152508181526040840135602082015260608401356040820152809250505092915050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055257610552615145565b60006020828403121561518057600080fd5b81356001600160f01b03198116811461274457600080fd5b6000602082840312156151aa57600080fd5b81516001600160401b038111156151c057600080fd5b8201601f810184136151d157600080fd5b80516151df61487a82614834565b8181528560208385010111156151f457600080fd5b611071826020830160208601614c58565b634e487b7160e01b600052603260045260246000fd5b60006001820161522d5761522d615145565b5060010190565b60006020828403121561524657600080fd5b81516127448161478f565b60006020828403121561526357600080fd5b5051919050565b60006080828403121561527c57600080fd5b604051608081018181106001600160401b038211171561529e5761529e6147a4565b60405282516152ac816149a4565b815260208301516152bc816149a4565b602082015260408301516152cf816149a4565b604082015260608301516152e28161478f565b60608201529392505050565b600060c0820160ff60f81b875460f81b1683526001808801546020818187015260018060a01b0391508160028b0154166040818189015260c060608901528591508a5480875260e0890192508b60005283600020965060005b81811015615370578754868116855260a01c61ffff168585015296860196928201928601615347565b5050506001600160a01b0389166080880152945061538e9350505050565b6001600160a01b03831660a0830152611071565b600082601f8301126153b357600080fd5b815160206153c361487a83614caf565b82815260059290921b840181019181810190868411156153e257600080fd5b8286015b84811015614d2d5780516153f98161478f565b83529183019183016153e6565b6000806000606080858703121561541c57600080fd5b84516001600160401b038082111561543357600080fd5b818701915087601f83011261544757600080fd5b8151602061545761487a83614caf565b82815260079290921b8401810191818101908b84111561547657600080fd5b948201945b838610156154fc57858c0360808112156154955760008081fd5b61549d6147ba565b6040808312156154ad5760008081fd5b6154b56147e2565b925088516154c28161491c565b8352888601516154d18161478f565b838701529181528782015181860152888801519181019190915282526080909501949082019061547b565b918a015191985090945050508083111561551557600080fd5b615521888489016153a2565b9450604087015192508083111561553757600080fd5b5050615545868287016153a2565b9150509250925092565b8181038181111561055257610552615145565b60006020828403121561557457600080fd5b8151612744816149a4565b6000808335601e1984360301811261559657600080fd5b8301803591506001600160401b038211156155b057600080fd5b6020019150606081023603821315614a4957600080fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b813561562e8161491c565b6008811061564c57634e487b7160e01b600052602160045260246000fd5b815460ff821691508160ff198216178355602084013561566b8161478f565b6001600160a81b03199190911690911760089190911b610100600160a81b031617815560408201356001820155606090910135600290910155565b80546001600160a01b0319166001600160a01b0392909216919091179055565b81356156d181614b53565b815460ff191660f882901c178255506020820135600182015560408201356156f88161478f565b61106381600284016156a6565b6000808335601e1984360301811261571c57600080fd5b8301803591506001600160401b0382111561573657600080fd5b6020019150600681901b3603821315614a4957600080fd5b813561575981614b53565b815460ff191660f882901c17825550602082013560018201555050565b81356157818161478f565b61578b81836156a6565b50602082013561ffff811681146157a157600080fd5b815461ffff60a01b191660a09190911b61ffff60a01b1617905550565b600082516157d0818460208701614c58565b919091019291505056fea2646970667358221220e9766e326372e48d69aee71dbc0212feda82c90814abb6d74e7b7e3bdb142d5b64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006004efe4c11f98c05bf27b900db18258b5f87652000000000000000000000000303cd2a927d9cb6f5ce03b88a4e3e2528baedf40
-----Decoded View---------------
Arg [0] : _erc20 (address): 0x6004efe4C11f98C05bF27B900Db18258B5f87652
Arg [1] : _pointsOperator (address): 0x303cD2A927D9Cb6F5CE03b88a4e3E2528baEDF40
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006004efe4c11f98c05bf27b900db18258b5f87652
Arg [1] : 000000000000000000000000303cd2a927d9cb6f5ce03b88a4e3e2528baedf40
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.