ETH Price: $3,746.23 (+5.39%)

Transaction Decoder

Block:
13871680 at Dec-25-2021 02:37:14 AM +UTC
Transaction Fee:
0.00816115476104376 ETH $30.57
Gas Used:
132,944 Gas / 61.387913415 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Hiveon Pool)
9,829.310074417818470723 Eth9,829.310261868858470723 Eth0.00018745104
0x236672Ed...32361f6F9
0x3F32613F...e619fD94E
0.085322509484087804 Eth
Nonce: 101
0.077161354723044044 Eth
Nonce: 102
0.00816115476104376
0xd07dc426...a461d2430

Execution Trace

KeyUpgrade.upgradeKey( _raribleTokenId=666251, _amount=2 )
  • WatcherMinter.balanceOf( account=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, id=36 ) => ( 3 )
  • RaribleToken.isApprovedForAll( _owner=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, _operator=0x335e913f7c80C3Ef76781299995e4593890714f1 ) => ( True )
  • RaribleToken.balanceOf( _owner=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, _id=666251 ) => ( 2 )
  • RaribleToken.burn( _owner=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, _id=666251, _value=2 )
  • WatcherMinter.mint( _to=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, _id=40, _amount=2 )
  • WatcherMinter.burnForMint( _from=0x3F32613Fd7f10F47469e344dE162d72e619fD94E, _burnIds=[36], _burnAmounts=[2], _mintIds=[38], _mintAmounts=[2] )
    File 1 of 3: KeyUpgrade
    pragma solidity >=0.4.22 <0.9.0;
    import "@openzeppelin/contracts/access/Ownable.sol";
    contract KeyUpgrade is Ownable {
      WMinter public minter;
      mapping(uint => uint) public watcherId;
      mapping(uint => address) public raribleContracts;
      mapping(uint => bool) public isERC721;
      uint256 STELLAR_KEY_ID = 38;
      uint256 DATA_KEY_ID = 36;
      constructor(address _minterAddress, uint256[] memory _raribleTokenIds, uint256[] memory _watcherTokenIds, address[] memory _raribleContracts, bool[] memory _isERC721) {
        minter = WMinter(_minterAddress);
        for (uint i = 0; i < _raribleTokenIds.length; i++) {
          watcherId[_raribleTokenIds[i]] = _watcherTokenIds[i];
          raribleContracts[_raribleTokenIds[i]] = _raribleContracts[i];
          isERC721[_raribleTokenIds[i]] = _isERC721[i];
        }
      }
      function upgradeKey(uint256 _raribleTokenId, uint256 _amount) external {
        require(minter.balanceOf(msg.sender, DATA_KEY_ID) >= _amount, "User does not own enough DATA keys");
        transferWatcher(_raribleTokenId, _amount);
        uint256[] memory burnIds = new uint256[](1);
        uint256[] memory amounts = new uint256[](1);
        uint256[] memory mintIds = new uint256[](1);
        burnIds[0] = DATA_KEY_ID;
        mintIds[0] = STELLAR_KEY_ID;
        amounts[0] = _amount;
        minter.burnForMint(msg.sender, burnIds, amounts, mintIds, amounts);
      }
      function transferWatcher(uint256 _raribleTokenId, uint256 _amount) public {
        address _raribleContract = raribleContracts[_raribleTokenId];
        bool _isERC721 = isERC721[_raribleTokenId];
        require(_amount > 0, "Amount must be greater than zero");
        require(_raribleContract != address(0), "Address cannot be null");
        require(watcherId[_raribleTokenId] != 0, "Invalid Rarible token ID");
        if (_isERC721) {
          RaribleERC721 raribleERC721 = RaribleERC721(_raribleContract);
          
          require(raribleERC721.isApprovedForAll(msg.sender, address(this)) == true, "Contract is not authorized");
          require(raribleERC721.ownerOf(_raribleTokenId) == msg.sender, "User does not own this NFT");
          require(_amount == 1, "ERC721 can only burn 1");
          raribleERC721.burn(_raribleTokenId);
        } else {
          RaribleERC1155 raribleERC1155 = RaribleERC1155(_raribleContract);
          require(raribleERC1155.isApprovedForAll(msg.sender, address(this)) == true, "Contract is not authorized");
          require(raribleERC1155.balanceOf(msg.sender, _raribleTokenId) >= _amount, "User does not own this quantity of NFTs");
          raribleERC1155.burn(msg.sender, _raribleTokenId, _amount);
        }
        uint256 watcherTokenId = watcherId[_raribleTokenId];
        minter.mint(msg.sender, watcherTokenId, _amount);
      }
      function setWatcher(uint256 _raribleTokenId, uint256 _watcherTokenId, address _raribleContract, bool _isERC721) external onlyOwner() {
        watcherId[_raribleTokenId] = _watcherTokenId;
        raribleContracts[_raribleTokenId] = _raribleContract;
        isERC721[_raribleTokenId] = _isERC721;
      }
    }
    abstract contract RaribleERC721 {
      function isApprovedForAll(address _owner, address _operator) virtual public view returns (bool);
      function ownerOf(uint256 _tokenId) virtual public view returns (address);
      function burn(uint256 _tokenId) virtual public;
    }
    abstract contract RaribleERC1155 {
      function isApprovedForAll(address _owner, address _operator) virtual public view returns (bool);
      function balanceOf(address _owner, uint256 _id) virtual public view returns (uint256);
      function burn(address _owner, uint256 _id, uint256 _value) virtual public;
    }
    abstract contract WMinter {
      function balanceOf(address _account, uint256 _id) virtual public view returns (uint256);
      function balanceOfBatch(address[] memory _accounts, uint256[] memory _ids) virtual public view returns (uint256[] memory);
      function mint(address _to, uint256 _id, uint256 _amount) virtual public;
      function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) virtual public;
    }// SPDX-License-Identifier: MIT
    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
    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() {
            _setOwner(_msgSender());
        }
        /**
         * @dev Returns the address of the current owner.
         */
        function owner() public view virtual returns (address) {
            return _owner;
        }
        /**
         * @dev Throws if called by any account other than the owner.
         */
        modifier onlyOwner() {
            require(owner() == _msgSender(), "Ownable: caller is not the owner");
            _;
        }
        /**
         * @dev Leaves the contract without owner. It will not be possible to call
         * `onlyOwner` functions anymore. Can only be called by the current owner.
         *
         * NOTE: Renouncing ownership will leave the contract without an owner,
         * thereby removing any functionality that is only available to the owner.
         */
        function renounceOwnership() public virtual onlyOwner {
            _setOwner(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");
            _setOwner(newOwner);
        }
        function _setOwner(address newOwner) private {
            address oldOwner = _owner;
            _owner = newOwner;
            emit OwnershipTransferred(oldOwner, newOwner);
        }
    }
    

    File 2 of 3: RaribleToken
    pragma solidity ^0.5.0;
    pragma experimental ABIEncoderV2;
    
    /**
     * @title SafeMath
     * @dev Math operations with safety checks that throw on error
     */
    library SafeMath {
    
        /**
        * @dev Multiplies two numbers, throws on overflow.
        */
        function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
            // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
            if (a == 0) {
                return 0;
            }
    
            c = a * b;
            assert(c / a == b);
            return c;
        }
    
        /**
        * @dev Integer division of two numbers, truncating the quotient.
        */
        function div(uint256 a, uint256 b) internal pure returns (uint256) {
            // assert(b > 0); // Solidity automatically throws when dividing by 0
            // uint256 c = a / b;
            // assert(a == b * c + a % b); // There is no case in which this doesn't hold
            return a / b;
        }
    
        /**
        * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
        */
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
            assert(b <= a);
            return a - b;
        }
    
        /**
        * @dev Adds two numbers, throws on overflow.
        */
        function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
            c = a + b;
            assert(c >= a);
            return c;
        }
    }
    
    /**
        Note: Simple contract to use as base for const vals
    */
    contract CommonConstants {
    
        bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
        bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))
    }
    
    /**
        Note: The ERC-165 identifier for this interface is 0x4e2312e0.
    */
    interface ERC1155TokenReceiver {
        /**
            @notice Handle the receipt of a single ERC1155 token type.
            @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated.
            This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it accepts the transfer.
            This function MUST revert if it rejects the transfer.
            Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
            @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)"))`
        */
        function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4);
    
        /**
            @notice Handle the receipt of multiple ERC1155 token types.
            @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated.
            This function MUST return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81) if it accepts the transfer(s).
            This function MUST revert if it rejects the transfer(s).
            Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
            @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)"))`
        */
        function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4);
    }
    
    /**
     * @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);
    }
    
    /**
        @title ERC-1155 Multi Token Standard
        @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
        Note: The ERC-165 identifier for this interface is 0xd9b67a26.
     */
    contract IERC1155 is IERC165 {
        /**
            @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
            The `_operator` argument MUST be msg.sender.
            The `_from` argument MUST be the address of the holder whose balance is decreased.
            The `_to` argument MUST be the address of the recipient whose balance is increased.
            The `_id` argument MUST be the token type being transferred.
            The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
            When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
            When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
        */
        event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _value);
    
        /**
            @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
            The `_operator` argument MUST be msg.sender.
            The `_from` argument MUST be the address of the holder whose balance is decreased.
            The `_to` argument MUST be the address of the recipient whose balance is increased.
            The `_ids` argument MUST be the list of tokens being transferred.
            The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by.
            When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
            When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
        */
        event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values);
    
        /**
            @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled).
        */
        event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
    
        /**
            @dev MUST emit when the URI is updated for a token ID.
            URIs are defined in RFC 3986.
            The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
        */
        event URI(string _value, uint256 indexed _id);
    
        /**
            @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
            @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
            MUST revert if `_to` is the zero address.
            MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
            MUST revert on any other error.
            MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
            After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
            @param _from    Source address
            @param _to      Target address
            @param _id      ID of the token type
            @param _value   Transfer amount
            @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
        */
        function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external;
    
        /**
            @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
            @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
            MUST revert if `_to` is the zero address.
            MUST revert if length of `_ids` is not the same as length of `_values`.
            MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
            MUST revert on any other error.
            MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
            Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
            After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
            @param _from    Source address
            @param _to      Target address
            @param _ids     IDs of each token type (order and length must match _values array)
            @param _values  Transfer amounts per token type (order and length must match _ids array)
            @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
        */
        function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external;
    
        /**
            @notice Get the balance of an account's Tokens.
            @param _owner  The address of the token holder
            @param _id     ID of the Token
            @return        The _owner's balance of the Token type requested
         */
        function balanceOf(address _owner, uint256 _id) external view returns (uint256);
    
        /**
            @notice Get the balance of multiple account/token pairs
            @param _owners The addresses of the token holders
            @param _ids    ID of the Tokens
            @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
         */
        function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);
    
        /**
            @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
            @dev MUST emit the ApprovalForAll event on success.
            @param _operator  Address to add to the set of authorized operators
            @param _approved  True if the operator is approved, false to revoke approval
        */
        function setApprovalForAll(address _operator, bool _approved) external;
    
        /**
            @notice Queries the approval status of an operator for a given owner.
            @param _owner     The owner of the Tokens
            @param _operator  Address of authorized operator
            @return           True if the operator is approved, false if not
        */
        function isApprovedForAll(address _owner, address _operator) external view returns (bool);
    }
    
    /**
     * @dev Implementation of the {IERC165} interface.
     *
     * Contracts may inherit from this and call {_registerInterface} to declare
     * their support of an interface.
     */
    contract ERC165 is IERC165 {
        /*
         * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
         */
        bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
    
        /**
         * @dev Mapping of interface ids to whether or not it's supported.
         */
        mapping(bytes4 => bool) private _supportedInterfaces;
    
        constructor () internal {
            // Derived contracts need only register support for their own interfaces,
            // we register support for ERC165 itself here
            _registerInterface(_INTERFACE_ID_ERC165);
        }
    
        /**
         * @dev See {IERC165-supportsInterface}.
         *
         * Time complexity O(1), guaranteed to always use less than 30 000 gas.
         */
        function supportsInterface(bytes4 interfaceId) external view returns (bool) {
            return _supportedInterfaces[interfaceId];
        }
    
        /**
         * @dev Registers the contract as an implementer of the interface defined by
         * `interfaceId`. Support of the actual ERC165 interface is automatic and
         * registering its interface id is not required.
         *
         * See {IERC165-supportsInterface}.
         *
         * Requirements:
         *
         * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
         */
        function _registerInterface(bytes4 interfaceId) internal {
            require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
            _supportedInterfaces[interfaceId] = true;
        }
    }
    
    /**
     * @dev Collection of functions related to the address type
     */
    library Address {
        /**
         * @dev Returns true if `account` is a contract.
         *
         * [IMPORTANT]
         * ====
         * It is unsafe to assume that an address for which this function returns
         * false is an externally-owned account (EOA) and not a contract.
         *
         * Among others, `isContract` will return false for the following 
         * types of addresses:
         *
         *  - an externally-owned account
         *  - a contract in construction
         *  - an address where a contract will be created
         *  - an address where a contract lived, but was destroyed
         * ====
         */
        function isContract(address account) internal view returns (bool) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }
    
        /**
         * @dev Converts an `address` into `address payable`. Note that this is
         * simply a type cast: the actual underlying value is not changed.
         *
         * _Available since v2.4.0._
         */
        function toPayable(address account) internal pure returns (address payable) {
            return address(uint160(account));
        }
    
        /**
         * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
         * `recipient`, forwarding all available gas and reverting on errors.
         *
         * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
         * of certain opcodes, possibly making contracts go over the 2300 gas limit
         * imposed by `transfer`, making them unable to receive funds via
         * `transfer`. {sendValue} removes this limitation.
         *
         * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
         *
         * IMPORTANT: because control is transferred to `recipient`, care must be
         * taken to not create reentrancy vulnerabilities. Consider using
         * {ReentrancyGuard} or the
         * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
         *
         * _Available since v2.4.0._
         */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");
    
            // solhint-disable-next-line avoid-call-value
            (bool success, ) = recipient.call.value(amount)("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }
    }
    
    // A sample implementation of core ERC1155 function.
    contract ERC1155 is IERC1155, ERC165, CommonConstants
    {
        using SafeMath for uint256;
        using Address for address;
    
        // id => (owner => balance)
        mapping (uint256 => mapping(address => uint256)) internal balances;
    
        // owner => (operator => approved)
        mapping (address => mapping(address => bool)) internal operatorApproval;
    
    /////////////////////////////////////////// ERC165 //////////////////////////////////////////////
    
        /*
            bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
            bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
            bytes4(keccak256("balanceOf(address,uint256)")) ^
            bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
            bytes4(keccak256("setApprovalForAll(address,bool)")) ^
            bytes4(keccak256("isApprovedForAll(address,address)"));
        */
        bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;
    
    /////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////
    
        constructor() public {
            _registerInterface(INTERFACE_SIGNATURE_ERC1155);
        }
    
    /////////////////////////////////////////// ERC1155 //////////////////////////////////////////////
    
        /**
            @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
            @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
            MUST revert if `_to` is the zero address.
            MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
            MUST revert on any other error.
            MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
            After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
            @param _from    Source address
            @param _to      Target address
            @param _id      ID of the token type
            @param _value   Transfer amount
            @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
        */
        function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external {
    
            require(_to != address(0x0), "_to must be non-zero.");
            require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");
    
            // SafeMath will throw with insuficient funds _from
            // or if _id is not valid (balance will be 0)
            balances[_id][_from] = balances[_id][_from].sub(_value);
            balances[_id][_to]   = _value.add(balances[_id][_to]);
    
            // MUST emit event
            emit TransferSingle(msg.sender, _from, _to, _id, _value);
    
            // Now that the balance is updated and the event was emitted,
            // call onERC1155Received if the destination is a contract.
            if (_to.isContract()) {
                _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
            }
        }
    
        /**
            @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
            @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
            MUST revert if `_to` is the zero address.
            MUST revert if length of `_ids` is not the same as length of `_values`.
            MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
            MUST revert on any other error.
            MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
            Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
            After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
            @param _from    Source address
            @param _to      Target address
            @param _ids     IDs of each token type (order and length must match _values array)
            @param _values  Transfer amounts per token type (order and length must match _ids array)
            @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
        */
        function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external {
    
            // MUST Throw on errors
            require(_to != address(0x0), "destination address must be non-zero.");
            require(_ids.length == _values.length, "_ids and _values array lenght must match.");
            require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");
    
            for (uint256 i = 0; i < _ids.length; ++i) {
                uint256 id = _ids[i];
                uint256 value = _values[i];
    
                // SafeMath will throw with insuficient funds _from
                // or if _id is not valid (balance will be 0)
                balances[id][_from] = balances[id][_from].sub(value);
                balances[id][_to]   = value.add(balances[id][_to]);
            }
    
            // Note: instead of the below batch versions of event and acceptance check you MAY have emitted a TransferSingle
            // event and a subsequent call to _doSafeTransferAcceptanceCheck in above loop for each balance change instead.
            // Or emitted a TransferSingle event for each in the loop and then the single _doSafeBatchTransferAcceptanceCheck below.
            // However it is implemented the balance changes and events MUST match when a check (i.e. calling an external contract) is done.
    
            // MUST emit event
            emit TransferBatch(msg.sender, _from, _to, _ids, _values);
    
            // Now that the balances are updated and the events are emitted,
            // call onERC1155BatchReceived if the destination is a contract.
            if (_to.isContract()) {
                _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
            }
        }
    
        /**
            @notice Get the balance of an account's Tokens.
            @param _owner  The address of the token holder
            @param _id     ID of the Token
            @return        The _owner's balance of the Token type requested
         */
        function balanceOf(address _owner, uint256 _id) external view returns (uint256) {
            // The balance of any account can be calculated from the Transfer events history.
            // However, since we need to keep the balances to validate transfer request,
            // there is no extra cost to also privide a querry function.
            return balances[_id][_owner];
        }
    
    
        /**
            @notice Get the balance of multiple account/token pairs
            @param _owners The addresses of the token holders
            @param _ids    ID of the Tokens
            @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
         */
        function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory) {
    
            require(_owners.length == _ids.length);
    
            uint256[] memory balances_ = new uint256[](_owners.length);
    
            for (uint256 i = 0; i < _owners.length; ++i) {
                balances_[i] = balances[_ids[i]][_owners[i]];
            }
    
            return balances_;
        }
    
        /**
            @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
            @dev MUST emit the ApprovalForAll event on success.
            @param _operator  Address to add to the set of authorized operators
            @param _approved  True if the operator is approved, false to revoke approval
        */
        function setApprovalForAll(address _operator, bool _approved) external {
            operatorApproval[msg.sender][_operator] = _approved;
            emit ApprovalForAll(msg.sender, _operator, _approved);
        }
    
        /**
            @notice Queries the approval status of an operator for a given owner.
            @param _owner     The owner of the Tokens
            @param _operator  Address of authorized operator
            @return           True if the operator is approved, false if not
        */
        function isApprovedForAll(address _owner, address _operator) external view returns (bool) {
            return operatorApproval[_owner][_operator];
        }
    
    /////////////////////////////////////////// Internal //////////////////////////////////////////////
    
        function _doSafeTransferAcceptanceCheck(address _operator, address _from, address _to, uint256 _id, uint256 _value, bytes memory _data) internal {
    
            // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
            // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.
    
    
            // Note: if the below reverts in the onERC1155Received function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
            // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_ACCEPTED test.
            require(ERC1155TokenReceiver(_to).onERC1155Received(_operator, _from, _id, _value, _data) == ERC1155_ACCEPTED, "contract returned an unknown value from onERC1155Received");
        }
    
        function _doSafeBatchTransferAcceptanceCheck(address _operator, address _from, address _to, uint256[] memory _ids, uint256[] memory _values, bytes memory _data) internal {
    
            // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
            // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.
    
            // Note: if the below reverts in the onERC1155BatchReceived function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
            // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_BATCH_ACCEPTED test.
            require(ERC1155TokenReceiver(_to).onERC1155BatchReceived(_operator, _from, _ids, _values, _data) == ERC1155_BATCH_ACCEPTED, "contract returned an unknown value from onERC1155BatchReceived");
        }
    }
    
    library UintLibrary {
        function toString(uint256 _i) internal pure returns (string memory) {
            if (_i == 0) {
                return "0";
            }
            uint j = _i;
            uint len;
            while (j != 0) {
                len++;
                j /= 10;
            }
            bytes memory bstr = new bytes(len);
            uint k = len - 1;
            while (_i != 0) {
                bstr[k--] = byte(uint8(48 + _i % 10));
                _i /= 10;
            }
            return string(bstr);
        }
    }
    
    library StringLibrary {
        using UintLibrary for uint256;
    
        function append(string memory _a, string memory _b) internal pure returns (string memory) {
            bytes memory _ba = bytes(_a);
            bytes memory _bb = bytes(_b);
            bytes memory bab = new bytes(_ba.length + _bb.length);
            uint k = 0;
            for (uint i = 0; i < _ba.length; i++) bab[k++] = _ba[i];
            for (uint i = 0; i < _bb.length; i++) bab[k++] = _bb[i];
            return string(bab);
        }
    
        function append(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
            bytes memory _ba = bytes(_a);
            bytes memory _bb = bytes(_b);
            bytes memory _bc = bytes(_c);
            bytes memory bbb = new bytes(_ba.length + _bb.length + _bc.length);
            uint k = 0;
            for (uint i = 0; i < _ba.length; i++) bbb[k++] = _ba[i];
            for (uint i = 0; i < _bb.length; i++) bbb[k++] = _bb[i];
            for (uint i = 0; i < _bc.length; i++) bbb[k++] = _bc[i];
            return string(bbb);
        }
    
        function recover(string memory message, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
            bytes memory msgBytes = bytes(message);
            bytes memory fullMessage = concat(
                bytes("\x19Ethereum Signed Message:\n"),
                bytes(msgBytes.length.toString()),
                msgBytes,
                new bytes(0), new bytes(0), new bytes(0), new bytes(0)
            );
            return ecrecover(keccak256(fullMessage), v, r, s);
        }
    
        function concat(bytes memory _ba, bytes memory _bb, bytes memory _bc, bytes memory _bd, bytes memory _be, bytes memory _bf, bytes memory _bg) internal pure returns (bytes memory) {
            bytes memory resultBytes = new bytes(_ba.length + _bb.length + _bc.length + _bd.length + _be.length + _bf.length + _bg.length);
            uint k = 0;
            for (uint i = 0; i < _ba.length; i++) resultBytes[k++] = _ba[i];
            for (uint i = 0; i < _bb.length; i++) resultBytes[k++] = _bb[i];
            for (uint i = 0; i < _bc.length; i++) resultBytes[k++] = _bc[i];
            for (uint i = 0; i < _bd.length; i++) resultBytes[k++] = _bd[i];
            for (uint i = 0; i < _be.length; i++) resultBytes[k++] = _be[i];
            for (uint i = 0; i < _bf.length; i++) resultBytes[k++] = _bf[i];
            for (uint i = 0; i < _bg.length; i++) resultBytes[k++] = _bg[i];
            return resultBytes;
        }
    }
    
    contract HasContractURI is ERC165 {
    
        string public contractURI;
    
        /*
         * bytes4(keccak256('contractURI()')) == 0xe8a3d485
         */
        bytes4 private constant _INTERFACE_ID_CONTRACT_URI = 0xe8a3d485;
    
        constructor(string memory _contractURI) public {
            contractURI = _contractURI;
            _registerInterface(_INTERFACE_ID_CONTRACT_URI);
        }
    
        /**
         * @dev Internal function to set the contract URI
         * @param _contractURI string URI prefix to assign
         */
        function _setContractURI(string memory _contractURI) internal {
            contractURI = _contractURI;
        }
    }
    
    contract HasTokenURI {
        using StringLibrary for string;
    
        //Token URI prefix
        string public tokenURIPrefix;
    
        // Optional mapping for token URIs
        mapping(uint256 => string) private _tokenURIs;
    
        constructor(string memory _tokenURIPrefix) public {
            tokenURIPrefix = _tokenURIPrefix;
        }
    
        /**
         * @dev Returns an URI for a given token ID.
         * Throws if the token ID does not exist. May return an empty string.
         * @param tokenId uint256 ID of the token to query
         */
        function _tokenURI(uint256 tokenId) internal view returns (string memory) {
            return tokenURIPrefix.append(_tokenURIs[tokenId]);
        }
    
        /**
         * @dev Internal function to set the token URI for a given token.
         * Reverts if the token ID does not exist.
         * @param tokenId uint256 ID of the token to set its URI
         * @param uri string URI to assign
         */
        function _setTokenURI(uint256 tokenId, string memory uri) internal {
            _tokenURIs[tokenId] = uri;
        }
    
        /**
         * @dev Internal function to set the token URI prefix.
         * @param _tokenURIPrefix string URI prefix to assign
         */
        function _setTokenURIPrefix(string memory _tokenURIPrefix) internal {
            tokenURIPrefix = _tokenURIPrefix;
        }
    
        function _clearTokenURI(uint256 tokenId) internal {
            if (bytes(_tokenURIs[tokenId]).length != 0) {
                delete _tokenURIs[tokenId];
            }
        }
    }
    
    /*
     * @dev Provides information about the current execution context, including the
     * sender of the transaction and its data. While these are generally available
     * via msg.sender and msg.data, they should not be accessed in such a direct
     * manner, since when dealing with GSN meta-transactions the account sending and
     * paying for execution may not be the actual sender (as far as an application
     * is concerned).
     *
     * This contract is only required for intermediate, library-like contracts.
     */
    contract Context {
        // Empty internal constructor, to prevent people from mistakenly deploying
        // an instance of this contract, which should be used via inheritance.
        constructor () internal { }
        // solhint-disable-previous-line no-empty-blocks
    
        function _msgSender() internal view returns (address payable) {
            return msg.sender;
        }
    
        function _msgData() internal view returns (bytes memory) {
            this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
            return msg.data;
        }
    }
    
    /**
     * @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.
     *
     * 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.
     */
    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 () internal {
            address msgSender = _msgSender();
            _owner = msgSender;
            emit OwnershipTransferred(address(0), msgSender);
        }
    
        /**
         * @dev Returns the address of the current owner.
         */
        function owner() public view returns (address) {
            return _owner;
        }
    
        /**
         * @dev Throws if called by any account other than the owner.
         */
        modifier onlyOwner() {
            require(isOwner(), "Ownable: caller is not the owner");
            _;
        }
    
        /**
         * @dev Returns true if the caller is the current owner.
         */
        function isOwner() public view returns (bool) {
            return _msgSender() == _owner;
        }
    
        /**
         * @dev Leaves the contract without owner. It will not be possible to call
         * `onlyOwner` functions anymore. Can only be called by the current owner.
         *
         * NOTE: Renouncing ownership will leave the contract without an owner,
         * thereby removing any functionality that is only available to the owner.
         */
        function renounceOwnership() public onlyOwner {
            emit OwnershipTransferred(_owner, address(0));
            _owner = 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 onlyOwner {
            _transferOwnership(newOwner);
        }
    
        /**
         * @dev Transfers ownership of the contract to a new account (`newOwner`).
         */
        function _transferOwnership(address newOwner) internal {
            require(newOwner != address(0), "Ownable: new owner is the zero address");
            emit OwnershipTransferred(_owner, newOwner);
            _owner = newOwner;
        }
    }
    
    /**
        Note: The ERC-165 identifier for this interface is 0x0e89341c.
    */
    interface IERC1155Metadata_URI {
        /**
            @notice A distinct Uniform Resource Identifier (URI) for a given token.
            @dev URIs are defined in RFC 3986.
            The URI may point to a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
            @return URI string
        */
        function uri(uint256 _id) external view returns (string memory);
    }
    
    /**
        Note: The ERC-165 identifier for this interface is 0x0e89341c.
    */
    contract ERC1155Metadata_URI is IERC1155Metadata_URI, HasTokenURI {
    
        constructor(string memory _tokenURIPrefix) HasTokenURI(_tokenURIPrefix) public {
    
        }
    
        function uri(uint256 _id) external view returns (string memory) {
            return _tokenURI(_id);
        }
    }
    
    contract HasSecondarySaleFees is ERC165 {
    
        event SecondarySaleFees(uint256 tokenId, address[] recipients, uint[] bps);
    
        /*
         * bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
         * bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
         *
         * => 0x0ebd4c7f ^ 0xb9c4d9fb == 0xb7799584
         */
        bytes4 private constant _INTERFACE_ID_FEES = 0xb7799584;
    
        constructor() public {
            _registerInterface(_INTERFACE_ID_FEES);
        }
    
        function getFeeRecipients(uint256 id) public view returns (address payable[] memory);
        function getFeeBps(uint256 id) public view returns (uint[] memory);
    }
    
    contract ERC1155Base is HasSecondarySaleFees, Ownable, ERC1155Metadata_URI, HasContractURI, ERC1155 {
    
        struct Fee {
            address payable recipient;
            uint256 value;
        }
    
        // id => creator
        mapping (uint256 => address) public creators;
        // id => fees
        mapping (uint256 => Fee[]) public fees;
    
        constructor(string memory contractURI, string memory tokenURIPrefix) HasContractURI(contractURI) ERC1155Metadata_URI(tokenURIPrefix) public {
    
        }
    
        function getFeeRecipients(uint256 id) public view returns (address payable[] memory) {
            Fee[] memory _fees = fees[id];
            address payable[] memory result = new address payable[](_fees.length);
            for (uint i = 0; i < _fees.length; i++) {
                result[i] = _fees[i].recipient;
            }
            return result;
        }
    
        function getFeeBps(uint256 id) public view returns (uint[] memory) {
            Fee[] memory _fees = fees[id];
            uint[] memory result = new uint[](_fees.length);
            for (uint i = 0; i < _fees.length; i++) {
                result[i] = _fees[i].value;
            }
            return result;
        }
    
        // Creates a new token type and assings _initialSupply to minter
        function _mint(uint256 _id, Fee[] memory _fees, uint256 _supply, string memory _uri) internal {
            require(creators[_id] == address(0x0), "Token is already minted");
            require(_supply != 0, "Supply should be positive");
            require(bytes(_uri).length > 0, "uri should be set");
    
            creators[_id] = msg.sender;
            address[] memory recipients = new address[](_fees.length);
            uint[] memory bps = new uint[](_fees.length);
            for (uint i = 0; i < _fees.length; i++) {
                require(_fees[i].recipient != address(0x0), "Recipient should be present");
                require(_fees[i].value != 0, "Fee value should be positive");
                fees[_id].push(_fees[i]);
                recipients[i] = _fees[i].recipient;
                bps[i] = _fees[i].value;
            }
            if (_fees.length > 0) {
                emit SecondarySaleFees(_id, recipients, bps);
            }
            balances[_id][msg.sender] = _supply;
            _setTokenURI(_id, _uri);
    
            // Transfer event with mint semantic
            emit TransferSingle(msg.sender, address(0x0), msg.sender, _id, _supply);
            emit URI(_uri, _id);
        }
    
        function burn(address _owner, uint256 _id, uint256 _value) external {
    
            require(_owner == msg.sender || operatorApproval[_owner][msg.sender] == true, "Need operator approval for 3rd party burns.");
    
            // SafeMath will throw with insuficient funds _owner
            // or if _id is not valid (balance will be 0)
            balances[_id][_owner] = balances[_id][_owner].sub(_value);
    
            // MUST emit event
            emit TransferSingle(msg.sender, _owner, address(0x0), _id, _value);
        }
    
        /**
         * @dev Internal function to set the token URI for a given token.
         * Reverts if the token ID does not exist.
         * @param tokenId uint256 ID of the token to set its URI
         * @param uri string URI to assign
         */
        function _setTokenURI(uint256 tokenId, string memory uri) internal {
            require(creators[tokenId] != address(0x0), "_setTokenURI: Token should exist");
            super._setTokenURI(tokenId, uri);
        }
    
        function setTokenURIPrefix(string memory tokenURIPrefix) public onlyOwner {
            _setTokenURIPrefix(tokenURIPrefix);
        }
    
        function setContractURI(string memory contractURI) public onlyOwner {
            _setContractURI(contractURI);
        }
    }
    
    /**
     * @title Roles
     * @dev Library for managing addresses assigned to a Role.
     */
    library Roles {
        struct Role {
            mapping (address => bool) bearer;
        }
    
        /**
         * @dev Give an account access to this role.
         */
        function add(Role storage role, address account) internal {
            require(!has(role, account), "Roles: account already has role");
            role.bearer[account] = true;
        }
    
        /**
         * @dev Remove an account's access to this role.
         */
        function remove(Role storage role, address account) internal {
            require(has(role, account), "Roles: account does not have role");
            role.bearer[account] = false;
        }
    
        /**
         * @dev Check if an account has this role.
         * @return bool
         */
        function has(Role storage role, address account) internal view returns (bool) {
            require(account != address(0), "Roles: account is the zero address");
            return role.bearer[account];
        }
    }
    
    contract SignerRole is Context {
        using Roles for Roles.Role;
    
        event SignerAdded(address indexed account);
        event SignerRemoved(address indexed account);
    
        Roles.Role private _signers;
    
        constructor () internal {
            _addSigner(_msgSender());
        }
    
        modifier onlySigner() {
            require(isSigner(_msgSender()), "SignerRole: caller does not have the Signer role");
            _;
        }
    
        function isSigner(address account) public view returns (bool) {
            return _signers.has(account);
        }
    
        function addSigner(address account) public onlySigner {
            _addSigner(account);
        }
    
        function renounceSigner() public {
            _removeSigner(_msgSender());
        }
    
        function _addSigner(address account) internal {
            _signers.add(account);
            emit SignerAdded(account);
        }
    
        function _removeSigner(address account) internal {
            _signers.remove(account);
            emit SignerRemoved(account);
        }
    }
    
    
    
    
    
    
    
    contract RaribleToken is Ownable, SignerRole, ERC1155Base {
        string public name;
        string public symbol;
    
        constructor(string memory _name, string memory _symbol, address signer, string memory contractURI, string memory tokenURIPrefix) ERC1155Base(contractURI, tokenURIPrefix) public {
            name = _name;
            symbol = _symbol;
    
            _addSigner(signer);
            _registerInterface(bytes4(keccak256('MINT_WITH_ADDRESS')));
        }
    
        function addSigner(address account) public onlyOwner {
            _addSigner(account);
        }
    
        function removeSigner(address account) public onlyOwner {
            _removeSigner(account);
        }
    
        function mint(uint256 id, uint8 v, bytes32 r, bytes32 s, Fee[] memory fees, uint256 supply, string memory uri) public {
            require(isSigner(ecrecover(keccak256(abi.encodePacked(this, id)), v, r, s)), "signer should sign tokenId");
            _mint(id, fees, supply, uri);
        }
    }

    File 3 of 3: WatcherMinter
    // SPDX-License-Identifier: MIT
    pragma solidity >=0.4.22 <0.9.0;
    import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
    import "@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol";
    import "@rarible/royalties/contracts/LibPart.sol";
    import "@rarible/royalties/contracts/LibRoyaltiesV2.sol";
    contract WatcherMinter is ERC1155, RoyaltiesV2Impl {
      string public name;
      string public symbol;
      string public contractURI = "QmdqrVASguJRJHAzbfys3xdfbhLCTyKogGNyQiDQeNSgss";
      bytes32 public OWNER_ROLE = keccak256("OWNER_ROLE");
      bytes32 public ADMIN_ROLE = keccak256("ADMIN_ROLE");
      mapping(uint => string) public tokenURI;
      mapping(address => bool) public isAdmin;
      address public owner;
      address payable public royaltyAddress = payable(0x21ff1ac88a4A7c07C7573132f976D05B259632EE);
      constructor() ERC1155("") {
        name = "Frontier";
        symbol = "FRONTIER";
        owner = msg.sender;
      }
      modifier adminOnly() {
        require(msg.sender == owner || isAdmin[msg.sender] == true);
        _;
      }
      modifier ownerOnly() {
        require(msg.sender == owner);
        _;
      }
      function addAdmin(address _address) external ownerOnly() {
        isAdmin[_address] = true;
      }
      function mint(address _to, uint _id, uint _amount) external adminOnly() {
        _mint(_to, _id, _amount, "");
      }
      function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts) external adminOnly() {
        _mintBatch(_to, _ids, _amounts, "");
      }
      function burn(uint _id, uint _amount) external {
        _burn(msg.sender, _id, _amount);
      }
      function burnBatch(uint[] memory _ids, uint[] memory _amounts) external {
        _burnBatch(msg.sender, _ids, _amounts);
      }
      function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external adminOnly() {
        _burnBatch(_from, _burnIds, _burnAmounts);
        _mintBatch(_from, _mintIds, _mintAmounts, "");
      }
      function setURI(uint _id, string memory _uri) external adminOnly() {
        require(bytes(tokenURI[_id]).length == 0);
        tokenURI[_id] = _uri;
        _setRoyalties(_id, royaltyAddress, 1000);
        emit URI(_uri, _id);
      }
      function uri(uint _id) public override view returns (string memory) {
        return tokenURI[_id];
      }
      function _setRoyalties(uint _tokenId, address payable _royaltiesReceipientAddress, uint96 _percentageBasisPoints) internal adminOnly() {
            LibPart.Part[] memory _royalties = new LibPart.Part[](1);
            _royalties[0].value = _percentageBasisPoints;
            _royalties[0].account = _royaltiesReceipientAddress;
            _saveRoyalties(_tokenId, _royalties);
        }
        function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155) returns (bool) {
            if(interfaceId == LibRoyaltiesV2._INTERFACE_ID_ROYALTIES) {
                return true;
            }
            return super.supportsInterface(interfaceId);
        } 
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import "./IERC1155.sol";
    import "./IERC1155Receiver.sol";
    import "./extensions/IERC1155MetadataURI.sol";
    import "../../utils/Address.sol";
    import "../../utils/Context.sol";
    import "../../utils/introspection/ERC165.sol";
    /**
     * @dev Implementation of the basic standard multi-token.
     * See https://eips.ethereum.org/EIPS/eip-1155
     * Originally based on code by Enjin: https://github.com/enjin/erc-1155
     *
     * _Available since v3.1._
     */
    contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
        using Address for address;
        // Mapping from token ID to account balances
        mapping(uint256 => mapping(address => uint256)) private _balances;
        // Mapping from account to operator approvals
        mapping(address => mapping(address => bool)) private _operatorApprovals;
        // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
        string private _uri;
        /**
         * @dev See {_setURI}.
         */
        constructor(string memory uri_) {
            _setURI(uri_);
        }
        /**
         * @dev See {IERC165-supportsInterface}.
         */
        function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
            return
                interfaceId == type(IERC1155).interfaceId ||
                interfaceId == type(IERC1155MetadataURI).interfaceId ||
                super.supportsInterface(interfaceId);
        }
        /**
         * @dev See {IERC1155MetadataURI-uri}.
         *
         * This implementation returns the same URI for *all* token types. It relies
         * on the token type ID substitution mechanism
         * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
         *
         * Clients calling this function must replace the `\\{id\\}` substring with the
         * actual token type ID.
         */
        function uri(uint256) public view virtual override returns (string memory) {
            return _uri;
        }
        /**
         * @dev See {IERC1155-balanceOf}.
         *
         * Requirements:
         *
         * - `account` cannot be the zero address.
         */
        function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
            require(account != address(0), "ERC1155: balance query for the zero address");
            return _balances[id][account];
        }
        /**
         * @dev See {IERC1155-balanceOfBatch}.
         *
         * Requirements:
         *
         * - `accounts` and `ids` must have the same length.
         */
        function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
            public
            view
            virtual
            override
            returns (uint256[] memory)
        {
            require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
            uint256[] memory batchBalances = new uint256[](accounts.length);
            for (uint256 i = 0; i < accounts.length; ++i) {
                batchBalances[i] = balanceOf(accounts[i], ids[i]);
            }
            return batchBalances;
        }
        /**
         * @dev See {IERC1155-setApprovalForAll}.
         */
        function setApprovalForAll(address operator, bool approved) public virtual override {
            require(_msgSender() != operator, "ERC1155: setting approval status for self");
            _operatorApprovals[_msgSender()][operator] = approved;
            emit ApprovalForAll(_msgSender(), operator, approved);
        }
        /**
         * @dev See {IERC1155-isApprovedForAll}.
         */
        function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
            return _operatorApprovals[account][operator];
        }
        /**
         * @dev See {IERC1155-safeTransferFrom}.
         */
        function safeTransferFrom(
            address from,
            address to,
            uint256 id,
            uint256 amount,
            bytes memory data
        ) public virtual override {
            require(
                from == _msgSender() || isApprovedForAll(from, _msgSender()),
                "ERC1155: caller is not owner nor approved"
            );
            _safeTransferFrom(from, to, id, amount, data);
        }
        /**
         * @dev See {IERC1155-safeBatchTransferFrom}.
         */
        function safeBatchTransferFrom(
            address from,
            address to,
            uint256[] memory ids,
            uint256[] memory amounts,
            bytes memory data
        ) public virtual override {
            require(
                from == _msgSender() || isApprovedForAll(from, _msgSender()),
                "ERC1155: transfer caller is not owner nor approved"
            );
            _safeBatchTransferFrom(from, to, ids, amounts, data);
        }
        /**
         * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
         *
         * Emits a {TransferSingle} event.
         *
         * Requirements:
         *
         * - `to` cannot be the zero address.
         * - `from` must have a balance of tokens of type `id` of at least `amount`.
         * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
         * acceptance magic value.
         */
        function _safeTransferFrom(
            address from,
            address to,
            uint256 id,
            uint256 amount,
            bytes memory data
        ) internal virtual {
            require(to != address(0), "ERC1155: transfer to the zero address");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);
            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
            emit TransferSingle(operator, from, to, id, amount);
            _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
        }
        /**
         * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
         *
         * Emits a {TransferBatch} event.
         *
         * Requirements:
         *
         * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
         * acceptance magic value.
         */
        function _safeBatchTransferFrom(
            address from,
            address to,
            uint256[] memory ids,
            uint256[] memory amounts,
            bytes memory data
        ) internal virtual {
            require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
            require(to != address(0), "ERC1155: transfer to the zero address");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, from, to, ids, amounts, data);
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 fromBalance = _balances[id][from];
                require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
                unchecked {
                    _balances[id][from] = fromBalance - amount;
                }
                _balances[id][to] += amount;
            }
            emit TransferBatch(operator, from, to, ids, amounts);
            _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
        }
        /**
         * @dev Sets a new URI for all token types, by relying on the token type ID
         * substitution mechanism
         * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
         *
         * By this mechanism, any occurrence of the `\\{id\\}` substring in either the
         * URI or any of the amounts in the JSON file at said URI will be replaced by
         * clients with the token type ID.
         *
         * For example, the `https://token-cdn-domain/\\{id\\}.json` URI would be
         * interpreted by clients as
         * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
         * for token type ID 0x4cce0.
         *
         * See {uri}.
         *
         * Because these URIs cannot be meaningfully represented by the {URI} event,
         * this function emits no events.
         */
        function _setURI(string memory newuri) internal virtual {
            _uri = newuri;
        }
        /**
         * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
         *
         * Emits a {TransferSingle} event.
         *
         * Requirements:
         *
         * - `account` cannot be the zero address.
         * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
         * acceptance magic value.
         */
        function _mint(
            address account,
            uint256 id,
            uint256 amount,
            bytes memory data
        ) internal virtual {
            require(account != address(0), "ERC1155: mint to the zero address");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);
            _balances[id][account] += amount;
            emit TransferSingle(operator, address(0), account, id, amount);
            _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
        }
        /**
         * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
         *
         * Requirements:
         *
         * - `ids` and `amounts` must have the same length.
         * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
         * acceptance magic value.
         */
        function _mintBatch(
            address to,
            uint256[] memory ids,
            uint256[] memory amounts,
            bytes memory data
        ) internal virtual {
            require(to != address(0), "ERC1155: mint to the zero address");
            require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
            for (uint256 i = 0; i < ids.length; i++) {
                _balances[ids[i]][to] += amounts[i];
            }
            emit TransferBatch(operator, address(0), to, ids, amounts);
            _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
        }
        /**
         * @dev Destroys `amount` tokens of token type `id` from `account`
         *
         * Requirements:
         *
         * - `account` cannot be the zero address.
         * - `account` must have at least `amount` tokens of token type `id`.
         */
        function _burn(
            address account,
            uint256 id,
            uint256 amount
        ) internal virtual {
            require(account != address(0), "ERC1155: burn from the zero address");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");
            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
            emit TransferSingle(operator, account, address(0), id, amount);
        }
        /**
         * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
         *
         * Requirements:
         *
         * - `ids` and `amounts` must have the same length.
         */
        function _burnBatch(
            address account,
            uint256[] memory ids,
            uint256[] memory amounts
        ) internal virtual {
            require(account != address(0), "ERC1155: burn from the zero address");
            require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
            address operator = _msgSender();
            _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");
            for (uint256 i = 0; i < ids.length; i++) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 accountBalance = _balances[id][account];
                require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
                unchecked {
                    _balances[id][account] = accountBalance - amount;
                }
            }
            emit TransferBatch(operator, account, address(0), ids, amounts);
        }
        /**
         * @dev Hook that is called before any token transfer. This includes minting
         * and burning, as well as batched variants.
         *
         * The same hook is called on both single and batched variants. For single
         * transfers, the length of the `id` and `amount` arrays will be 1.
         *
         * Calling conditions (for each `id` and `amount` pair):
         *
         * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
         * of token type `id` will be  transferred to `to`.
         * - When `from` is zero, `amount` tokens of token type `id` will be minted
         * for `to`.
         * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
         * will be burned.
         * - `from` and `to` are never both zero.
         * - `ids` and `amounts` have the same, non-zero length.
         *
         * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
         */
        function _beforeTokenTransfer(
            address operator,
            address from,
            address to,
            uint256[] memory ids,
            uint256[] memory amounts,
            bytes memory data
        ) internal virtual {}
        function _doSafeTransferAcceptanceCheck(
            address operator,
            address from,
            address to,
            uint256 id,
            uint256 amount,
            bytes memory data
        ) private {
            if (to.isContract()) {
                try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                    if (response != IERC1155Receiver.onERC1155Received.selector) {
                        revert("ERC1155: ERC1155Receiver rejected tokens");
                    }
                } catch Error(string memory reason) {
                    revert(reason);
                } catch {
                    revert("ERC1155: transfer to non ERC1155Receiver implementer");
                }
            }
        }
        function _doSafeBatchTransferAcceptanceCheck(
            address operator,
            address from,
            address to,
            uint256[] memory ids,
            uint256[] memory amounts,
            bytes memory data
        ) private {
            if (to.isContract()) {
                try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                    bytes4 response
                ) {
                    if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                        revert("ERC1155: ERC1155Receiver rejected tokens");
                    }
                } catch Error(string memory reason) {
                    revert(reason);
                } catch {
                    revert("ERC1155: transfer to non ERC1155Receiver implementer");
                }
            }
        }
        function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
            uint256[] memory array = new uint256[](1);
            array[0] = element;
            return array;
        }
    }
    // SPDX-License-Identifier: MIT
    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 be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
         * - `from` must have a balance of tokens of type `id` of at least `amount`.
         * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
         * acceptance magic value.
         */
        function safeTransferFrom(
            address from,
            address to,
            uint256 id,
            uint256 amount,
            bytes calldata data
        ) external;
        /**
         * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
         *
         * Emits a {TransferBatch} event.
         *
         * Requirements:
         *
         * - `ids` and `amounts` must have the same length.
         * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
         * acceptance magic value.
         */
        function safeBatchTransferFrom(
            address from,
            address to,
            uint256[] calldata ids,
            uint256[] calldata amounts,
            bytes calldata data
        ) external;
    }
    // SPDX-License-Identifier: MIT
    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.
            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. 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
    pragma solidity ^0.8.0;
    import "../IERC1155.sol";
    /**
     * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
     * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
     *
     * _Available since v3.1._
     */
    interface IERC1155MetadataURI is IERC1155 {
        /**
         * @dev Returns the URI for token type `id`.
         *
         * If the `\\{id\\}` substring is present in the URI, it must be replaced by
         * clients with the actual token type ID.
         */
        function uri(uint256 id) external view returns (string memory);
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    /**
     * @dev Collection of functions related to the address type
     */
    library Address {
        /**
         * @dev Returns true if `account` is a contract.
         *
         * [IMPORTANT]
         * ====
         * It is unsafe to assume that an address for which this function returns
         * false is an externally-owned account (EOA) and not a contract.
         *
         * Among others, `isContract` will return false for the following
         * types of addresses:
         *
         *  - an externally-owned account
         *  - a contract in construction
         *  - an address where a contract will be created
         *  - an address where a contract lived, but was destroyed
         * ====
         */
        function isContract(address account) internal view returns (bool) {
            // This method relies on extcodesize, which returns 0 for contracts in
            // construction, since the code is only stored at the end of the
            // constructor execution.
            uint256 size;
            assembly {
                size := extcodesize(account)
            }
            return size > 0;
        }
        /**
         * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
         * `recipient`, forwarding all available gas and reverting on errors.
         *
         * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
         * of certain opcodes, possibly making contracts go over the 2300 gas limit
         * imposed by `transfer`, making them unable to receive funds via
         * `transfer`. {sendValue} removes this limitation.
         *
         * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
         *
         * IMPORTANT: because control is transferred to `recipient`, care must be
         * taken to not create reentrancy vulnerabilities. Consider using
         * {ReentrancyGuard} or the
         * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
         */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");
            (bool success, ) = recipient.call{value: amount}("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }
        /**
         * @dev Performs a Solidity function call using a low level `call`. A
         * plain `call` is an unsafe replacement for a function call: use this
         * function instead.
         *
         * If `target` reverts with a revert reason, it is bubbled up by this
         * function (like regular Solidity function calls).
         *
         * Returns the raw returned data. To convert to the expected return value,
         * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
         *
         * Requirements:
         *
         * - `target` must be a contract.
         * - calling `target` with `data` must not revert.
         *
         * _Available since v3.1._
         */
        function functionCall(address target, bytes memory data) internal returns (bytes memory) {
            return functionCall(target, data, "Address: low-level call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
         * `errorMessage` as a fallback revert reason when `target` reverts.
         *
         * _Available since v3.1._
         */
        function functionCall(
            address target,
            bytes memory data,
            string memory errorMessage
        ) internal returns (bytes memory) {
            return functionCallWithValue(target, data, 0, errorMessage);
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but also transferring `value` wei to `target`.
         *
         * Requirements:
         *
         * - the calling contract must have an ETH balance of at least `value`.
         * - the called Solidity function must be `payable`.
         *
         * _Available since v3.1._
         */
        function functionCallWithValue(
            address target,
            bytes memory data,
            uint256 value
        ) internal returns (bytes memory) {
            return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
        }
        /**
         * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
         * with `errorMessage` as a fallback revert reason when `target` reverts.
         *
         * _Available since v3.1._
         */
        function functionCallWithValue(
            address target,
            bytes memory data,
            uint256 value,
            string memory errorMessage
        ) internal returns (bytes memory) {
            require(address(this).balance >= value, "Address: insufficient balance for call");
            require(isContract(target), "Address: call to non-contract");
            (bool success, bytes memory returndata) = target.call{value: value}(data);
            return verifyCallResult(success, returndata, errorMessage);
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but performing a static call.
         *
         * _Available since v3.3._
         */
        function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
            return functionStaticCall(target, data, "Address: low-level static call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
         * but performing a static call.
         *
         * _Available since v3.3._
         */
        function functionStaticCall(
            address target,
            bytes memory data,
            string memory errorMessage
        ) internal view returns (bytes memory) {
            require(isContract(target), "Address: static call to non-contract");
            (bool success, bytes memory returndata) = target.staticcall(data);
            return verifyCallResult(success, returndata, errorMessage);
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but performing a delegate call.
         *
         * _Available since v3.4._
         */
        function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
            return functionDelegateCall(target, data, "Address: low-level delegate call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
         * but performing a delegate call.
         *
         * _Available since v3.4._
         */
        function functionDelegateCall(
            address target,
            bytes memory data,
            string memory errorMessage
        ) internal returns (bytes memory) {
            require(isContract(target), "Address: delegate call to non-contract");
            (bool success, bytes memory returndata) = target.delegatecall(data);
            return verifyCallResult(success, returndata, errorMessage);
        }
        /**
         * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
         * revert reason 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 {
                // 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
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
    }
    // SPDX-License-Identifier: MIT
    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
    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
    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
    pragma solidity ^0.8.0;
    library LibPart {
        bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");
        struct Part {
            address payable account;
            uint96 value;
        }
        function hash(Part memory part) internal pure returns (bytes32) {
            return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
        }
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    library LibRoyaltiesV2 {
        /*
         * bytes4(keccak256('getRaribleV2Royalties(uint256)')) == 0xcad96cca
         */
        bytes4 constant _INTERFACE_ID_ROYALTIES = 0xcad96cca;
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    pragma abicoder v2;
    import "./LibPart.sol";
    interface RoyaltiesV2 {
        event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties);
        function getRaribleV2Royalties(uint256 id) external view returns (LibPart.Part[] memory);
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    import "../LibPart.sol";
    abstract contract AbstractRoyalties {
        mapping (uint256 => LibPart.Part[]) internal royalties;
        function _saveRoyalties(uint256 id, LibPart.Part[] memory _royalties) internal {
            uint256 totalValue;
            for (uint i = 0; i < _royalties.length; i++) {
                require(_royalties[i].account != address(0x0), "Recipient should be present");
                require(_royalties[i].value != 0, "Royalty value should be positive");
                totalValue += _royalties[i].value;
                royalties[id].push(_royalties[i]);
            }
            require(totalValue < 10000, "Royalty total value should be < 10000");
            _onRoyaltiesSet(id, _royalties);
        }
        function _updateAccount(uint256 _id, address _from, address _to) internal {
            uint length = royalties[_id].length;
            for(uint i = 0; i < length; i++) {
                if (royalties[_id][i].account == _from) {
                    royalties[_id][i].account = payable(address(uint160(_to)));
                }
            }
        }
        function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) virtual internal;
    }
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    pragma abicoder v2;
    import "./AbstractRoyalties.sol";
    import "../RoyaltiesV2.sol";
    contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 {
        function getRaribleV2Royalties(uint256 id) override external view returns (LibPart.Part[] memory) {
            return royalties[id];
        }
        function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) override internal {
            emit RoyaltiesSet(id, _royalties);
        }
    }