ERC-1155
Overview
Max Total Supply
546 RMs
Holders
154
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RockNFT
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "../utils/ERC1155TradableForRock.sol"; import "../governance/ParameterControl.sol"; /* * TODO: * [] Use ERC1155 https://docs.openzeppelin.com/contracts/3.x/erc1155 * [] * */ // Rock NFT public contract RockNFT is ERC1155TradableForRock { event ParameterControlChanged (address previous, address new_); event AddZone(uint256 _metaverseId, uint256 _zoneType, uint256 _zoneIndex, uint256 _rockIndexFrom, uint256 _rockIndexTo, address _coreTeam, address _collAddr, uint256 _price); event InitMetaverse(uint256 _metaverseId); event EChangeZonePrice(uint256 _metaverseId, uint256 _zoneIndex, uint256 _price); event EChangeMetaverseOwner(uint256 _metaverseId, address _add); mapping(uint256 => address) public metaverseOwners; mapping(uint256 => mapping(uint256 => SharedStructs.zone)) public metaverseZones; mapping(uint256 => mapping(address => mapping(uint256 => bool))) minted; using SafeMath for uint256; address public parameterControlAdd; constructor(address admin, address operator, address _parameterAdd, string memory name, string memory symbol) ERC1155TradableForRock(name, symbol, "", admin, operator ) public { require(_parameterAdd != address(0x0), "INV_ADD"); parameterControlAdd = _parameterAdd; } function changeZonePrice(uint256 _metaverseId, uint256 _zoneIndex, uint256 _price) external { require(metaverseOwners[_metaverseId] == msgSender(), "I_A"); require(metaverseZones[_metaverseId][_zoneIndex].rockIndexTo > 0, "I_Z"); require(metaverseZones[_metaverseId][_zoneIndex].typeZone == 3, "I_Z"); metaverseZones[_metaverseId][_zoneIndex].price = _price; emit EChangeZonePrice(_metaverseId, _zoneIndex, _price); } function changeMetaverseOwner(uint256 _metaverseId, address _add) external { require(metaverseOwners[_metaverseId] == msgSender(), "I_A"); require(_add != address(0x0), "I_A"); metaverseOwners[_metaverseId] = _add; emit EChangeMetaverseOwner(_metaverseId, _add); } function sliceUint(bytes memory bs, uint start) internal pure returns (uint256) { require(bs.length >= start + 32, "OOR"); uint256 x; assembly { x := mload(add(bs, add(0x20, start))) } return x; } function mintRock( uint256 _metaverseId, address _to, uint256 _zoneIndex, uint256 _rockIndex, string memory _uri, bytes memory _data) external payable { address _mOwner = metaverseOwners[_metaverseId]; require(_mOwner != address(0x0), "N_E_M"); SharedStructs.zone memory _zone = metaverseZones[_metaverseId][_zoneIndex]; require(_rockIndex >= _zone.rockIndexFrom && _rockIndex <= _zone.rockIndexTo, "I_R_I"); uint256 _tokenId = (_metaverseId * (10 ** 9) + _zoneIndex) * (10 ** 9) + _rockIndex; require(!_exists(_tokenId), "E_T"); require(_zone.rockIndexTo > 0, "I_S"); if (_zone.typeZone == 1) { require(_zone.coreTeamAddr == msgSender(), "C_T"); } else if (_zone.typeZone == 3) { require(msg.value >= _zone.price, "M_P_P"); } creators[_tokenId] = operator; if (bytes(_uri).length > 0) { customUri[_tokenId] = _uri; emit URI(_uri, _tokenId); } _mint(_to, _tokenId, 1, _data); // check user mint fee if (_zone.price > 0) { if (msg.value > 0) { ParameterControl _p = ParameterControl(parameterControlAdd); uint256 purchaseFeePercent = _p.getUInt256("ROCK_PUR_FEE"); uint256 fee = msg.value * purchaseFeePercent / 10000; (bool success,) = _mOwner.call{value : msg.value - fee}(""); require(success, "FAIL"); } } emit MintEvent(_to, _tokenId, 1); } function checkZone(SharedStructs.zone memory _zone) internal returns (bool) { if (_zone.typeZone != 3) { return false; } if (_zone.zoneIndex >= 10 ** 9 || _zone.rockIndexFrom >= 10 ** 9 || _zone.rockIndexTo >= 10 ** 9) { return false; } if (_zone.rockIndexTo > 0) { if (_zone.price == 0) { return false; } if (_zone.rockIndexFrom > _zone.rockIndexTo || _zone.rockIndexFrom == 0) { return false; } return true; } else { return false; } } function addZone( uint256 _metaverseId, SharedStructs.zone memory _zone) external payable { require(metaverseOwners[_metaverseId] != address(0x0), "N_E_M"); require(metaverseZones[_metaverseId][_zone.zoneIndex].rockIndexTo <= 0, "E_Z"); require(metaverseOwners[_metaverseId] == msgSender(), "I_A"); require(checkZone(_zone), "I_ZONE"); require(_zone.typeZone == 3, "INV_TYPE"); // get params ParameterControl _p = ParameterControl(parameterControlAdd); // get fee for imo uint256 imoFEE = _p.getUInt256("INIT_IMO_FEE"); if (imoFEE > 0) { require(msg.value >= imoFEE * (_zone.rockIndexTo - _zone.rockIndexFrom + 1), "MISS_INI_FEE"); } metaverseZones[_metaverseId][_zone.zoneIndex] = _zone; emit AddZone(_metaverseId, _zone.typeZone, _zone.zoneIndex, _zone.rockIndexFrom, _zone.rockIndexTo, _zone.coreTeamAddr, _zone.collAddr, _zone.price); } function initMetaverse( uint256 _metaverseId, SharedStructs.zone memory _zone3 ) external payable { require(metaverseOwners[_metaverseId] == address(0x0), "E_M"); require(_zone3.typeZone == 3, "I_Z3"); // rock index = 1 for rove team require(_zone3.rockIndexFrom == 2, "I_Z3"); require(checkZone(_zone3), "I_Z3"); uint256 totalRockSize = _zone3.rockIndexTo - _zone3.rockIndexFrom + 1; require(totalRockSize > 0, "I_Z3"); // get params ParameterControl _p = ParameterControl(parameterControlAdd); // get fee for imo uint256 imoFEE = _p.getUInt256("INIT_IMO_FEE"); if (imoFEE > 0) { require(msg.value >= imoFEE * totalRockSize, "I_F"); } metaverseOwners[_metaverseId] = _msgSender(); metaverseZones[_metaverseId][_zone3.zoneIndex] = _zone3; // init zone 1 for operator rove team SharedStructs.zone memory _zone1; _zone1.coreTeamAddr = operator; _zone1.typeZone = 1; _zone1.rockIndexFrom = 1; _zone1.rockIndexTo = 1; _zone1.price = 0; _zone1.collAddr = address(0x0); _zone1.zoneIndex = 1; metaverseZones[_metaverseId][_zone1.zoneIndex] = _zone1; uint256 _tokenId = (_metaverseId * (10 ** 9) + _zone1.zoneIndex) * (10 ** 9) + _zone1.rockIndexFrom; creators[_tokenId] = operator; _mint(_zone1.coreTeamAddr, _tokenId, 1, ''); emit MintEvent(_zone1.coreTeamAddr, _tokenId, 1); emit InitMetaverse(_metaverseId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./common/meta-transactions/ContentMixin.sol"; import "./common/meta-transactions/NativeMetaTransaction.sol"; import "./IERC1155Tradable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } library SharedStructs { struct zone { uint256 zoneIndex; // required uint256 price; // required for type=3 address coreTeamAddr; // required for type=1 address collAddr; // required for type=2 uint256 typeZone; //1: team ,2: nft hodler, 3: public uint256 rockIndexFrom; uint256 rockIndexTo;// required to >= from } } /** * @title ERC1155Tradable * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin, like _exists(), name(), symbol(), and totalSupply() */ contract ERC1155TradableForRock is ContextMixin, ERC1155PresetMinterPauser, NativeMetaTransaction, ReentrancyGuard, IERC1155Tradable { event OperatorChanged (address previous, address new_); event AdminChanged (address previous, address new_); event ProxyRegistryAddressChanged (address previous, address new_); event MintEvent (address _to, uint256 _id, uint256 _quantity); using Strings for string; using SafeMath for uint256; // super admin address public admin;// multi sig address // operator address public operator; address public proxyRegistryAddress; mapping(uint256 => address) public creators; mapping(uint256 => string) customUri; // Contract name string public name; // Contract symbol string public symbol; /** * @dev Require _msgSender() to be the creator of the token id */ modifier creatorOnly(uint256 _id) { require(creators[_id] == _msgSender(), "ONLY_CREATOR"); _; } /** * @dev Require _msgSender() to own more than 0 of the token id */ modifier ownersOnly(uint256 _id) { require(balanceOf(_msgSender(), _id) > 0, "ONLY_OWNERS"); _; } modifier operatorOnly() { require(_msgSender() == operator, "ONLY_OPERATOR"); require(hasRole(OPERATOR_ROLE, _msgSender()), "ONLY_OPERATOR"); _; } modifier adminOnly() { require(_msgSender() == admin, "ONLY_ADMIN"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ONLY_ADMIN"); _; } bytes32 public constant CREATOR_ROLE = keccak256("CREATOR_ROLE"); bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE"); constructor( string memory _name, string memory _symbol, string memory _uri, address _admin, address _operator ) ERC1155PresetMinterPauser(_uri) { name = _name; symbol = _symbol; proxyRegistryAddress = address(0); _initializeEIP712(name); admin = _admin; // set role for admin address grantRole(DEFAULT_ADMIN_ROLE, admin); operator = _operator; // set role for operator address grantRole(OPERATOR_ROLE, operator); grantRole(CREATOR_ROLE, operator); grantRole(MINTER_ROLE, operator); grantRole(PAUSER_ROLE, operator); if (admin != _msgSender()) { // revoke role for sender revokeRole(MINTER_ROLE, _msgSender()); revokeRole(PAUSER_ROLE, _msgSender()); revokeRole(DEFAULT_ADMIN_ROLE, _msgSender()); } } // changeOperator: update operator by admin function changeOperator(address _newOperator) public adminOnly { require(_msgSender() == admin, "NOT_ADMIN"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NOT_ADMIN"); address _previousOperator = operator; operator = _newOperator; grantRole(OPERATOR_ROLE, operator); grantRole(CREATOR_ROLE, operator); grantRole(MINTER_ROLE, operator); grantRole(PAUSER_ROLE, operator); revokeRole(OPERATOR_ROLE, _previousOperator); revokeRole(CREATOR_ROLE, _previousOperator); revokeRole(MINTER_ROLE, _previousOperator); revokeRole(PAUSER_ROLE, _previousOperator); emit OperatorChanged(_previousOperator, operator); } // changeOperator: update admin by old admin function changeAdmin(address _newAdmin) public adminOnly { require(_msgSender() == admin, "NOT_ADMIN"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NOT_ADMIN"); address _previousAdmin = admin; admin = _newAdmin; grantRole(DEFAULT_ADMIN_ROLE, admin); // grantRole(CREATOR_ROLE, admin); // grantRole(MINTER_ROLE, admin); // grantRole(PAUSER_ROLE, admin); // revokeRole(CREATOR_ROLE, admin); // revokeRole(MINTER_ROLE, admin); // revokeRole(PAUSER_ROLE, admin); revokeRole(DEFAULT_ADMIN_ROLE, _previousAdmin); emit AdminChanged(_previousAdmin, admin); } function uri( uint256 _id ) override public view returns (string memory) { require(_exists(_id), "NONEXISTENT_TOKEN"); // We have to convert string to bytes to check for existence bytes memory customUriBytes = bytes(customUri[_id]); if (customUriBytes.length > 0) { return customUri[_id]; } else { return super.uri(_id); } } /** * @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]. * @param _newURI New URI for all tokens */ function setURI( string memory _newURI ) public operatorOnly { require(hasRole(CREATOR_ROLE, _msgSender()), "ONLY_CREATOR"); _setURI(_newURI); } /** * @dev Will update the base URI for the token * @param _tokenId The token to update. _msgSender() must be its creator. * @param _newURI New URI for the token. */ function setCustomURI( uint256 _tokenId, string memory _newURI ) public creatorOnly(_tokenId) { require(hasRole(CREATOR_ROLE, _msgSender()), "ONLY_CREATOR"); customUri[_tokenId] = _newURI; emit URI(_newURI, _tokenId); } /** * @dev Mints some amount of tokens to an address * @param _to Address of the future owner of the token * @param _id Token ID to mint * @param _quantity Amount of tokens to mint * @param _data Data to pass if receiver is contract */ function mint( address _to, uint256 _id, uint256 _quantity, bytes memory _data ) virtual public override creatorOnly(_id) { } /** * @dev Change the creator address for given tokens * @param _to Address of the new creator * @param _ids Array of Token IDs to change creator */ function setCreator( address _to, uint256[] memory _ids ) public operatorOnly { require(_to != address(0), "INVALID_ADDRESS."); _grantRole(CREATOR_ROLE, _to); _grantRole(MINTER_ROLE, _to); for (uint256 i = 0; i < _ids.length; i++) { uint256 id = _ids[i]; _setCreator(_to, id); } } function setProxyRegistryAddress(address _proxyRegistryAddress) public operatorOnly { require(_proxyRegistryAddress != proxyRegistryAddress, "PROXY_INVALID"); address previous = proxyRegistryAddress; proxyRegistryAddress = _proxyRegistryAddress; emit ProxyRegistryAddressChanged(previous, proxyRegistryAddress); } /** * Override isApprovedForAll to whitelist user's [OpenSea] proxy accounts to enable gas-free listings. */ function isApprovedForAll( address _owner, address _operator ) override(ERC1155, IERC1155) public view returns (bool isOperator) { if (proxyRegistryAddress != address(0)) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == _operator) { return true; } } return ERC1155.isApprovedForAll(_owner, _operator); } /** * @dev Change the creator address for given token * @param _to Address of the new creator * @param _id Token IDs to change creator of */ function _setCreator(address _to, uint256 _id) internal creatorOnly(_id) { creators[_id] = _to; } /** * @dev Returns whether the specified token exists by checking to see if it has a creator * @param _id uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists( uint256 _id ) internal view returns (bool) { return creators[_id] != address(0); } function exists( uint256 _id ) external view returns (bool) { return _exists(_id); } function getCreator(uint256 id) public view returns (address sender) { return creators[id]; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155PresetMinterPauser, IERC165) returns (bool) { return interfaceId == type(IERC1155Tradable).interfaceId || super.supportsInterface(interfaceId); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } /** @dev EIP2981 royalties implementation. */ struct RoyaltyInfo { address recipient; uint24 amount; bool isValue; } mapping(uint256 => RoyaltyInfo) public royalties; function setTokenRoyalty( uint256 _tokenId, address _recipient, uint256 _value ) public operatorOnly { require(hasRole(CREATOR_ROLE, _msgSender()), "NOT_CREATOR"); require(_value <= 10000, 'TOO_HIGH'); royalties[_tokenId] = RoyaltyInfo(_recipient, uint24(_value), true); } // EIP2981 standard royalties return. function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { RoyaltyInfo memory royalty = royalties[_tokenId]; if (royalty.isValue) { receiver = royalty.recipient; royaltyAmount = (_salePrice * royalty.amount) / 10000; } else { receiver = creators[_tokenId]; royaltyAmount = (_salePrice * 500) / 10000; } } // Withdraw function withdraw(address _to) external nonReentrant adminOnly { require(address(this).balance > 0, "NOT_ENOUGH"); (bool success,) = _to.call{value : address(this).balance}(""); require(success, "FAIL"); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "@openzeppelin/contracts/access/AccessControl.sol"; import "hardhat/console.sol"; import "./IParameterControl.sol"; /* * @dev Implementation of a programmable parameter control. * * [x] Add (key, value) * [x] Add access control * */ contract ParameterControl is AccessControl, IParameterControl { event AdminChanged (address previousAdmin, address newAdmin); event SetEvent (string key, string value); address public admin; // is a mutil sig address when deploy mapping(string => string) private _params; mapping(string => int) private _paramsInt; mapping(string => uint256) private _paramsUInt256; constructor( address admin_ ) { require(admin_ != address(0x0), "admin is zero address"); admin = admin_; _setupRole(DEFAULT_ADMIN_ROLE, admin); } function get(string memory key) external view override returns (string memory) { return _params[key]; } function getInt(string memory key) external view override returns (int) { return _paramsInt[key]; } function getUInt256(string memory key) external view override returns (uint256) { return _paramsUInt256[key]; } function set(string memory key, string memory value) external override { console.log("msg.sender %s", msg.sender); require(msg.sender == admin, "Sender is not admin"); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not a admin"); _params[key] = value; emit SetEvent(key, value); } function setInt(string memory key, int value) external override { console.log("msg.sender %s", msg.sender); require(msg.sender == admin, "Sender is not admin"); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not a admin"); _paramsInt[key] = value; } function setUInt256(string memory key, uint256 value) external override { console.log("msg.sender %s", msg.sender); require(msg.sender == admin, "Sender is not admin"); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not a admin"); _paramsUInt256[key] = value; } function updateAdmin(address admin_) external { require(msg.sender == admin); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not a admin"); require(admin_ != address(0x0), "admin is zero address"); console.log("set new admin %s -> %s", admin, admin_); address previousAdmin = admin; admin = admin_; _setupRole(DEFAULT_ADMIN_ROLE, admin); _revokeRole(DEFAULT_ADMIN_ROLE, previousAdmin); emit AdminChanged(previousAdmin, admin); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/presets/ERC1155PresetMinterPauser.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../extensions/ERC1155Burnable.sol"; import "../extensions/ERC1155Pausable.sol"; import "../../../access/AccessControlEnumerable.sol"; import "../../../utils/Context.sol"; /** * @dev {ERC1155} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. * * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._ */ contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ constructor(string memory uri) ERC1155(uri) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mint(to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mintBatch(to, ids, amounts, data); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause"); _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC1155) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import {EIP712Base} from "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { bytes32 private constant M_TX_HASH = keccak256( bytes( "MetaTransaction(nonce,from,signature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress] + 1; emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "fail"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( M_TX_HASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "IN_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; interface IERC1155Tradable is IERC1155, IERC2981 { function getCreator(uint256 id) external view virtual returns (address sender); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not 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 `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `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 // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must 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 // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import {Initializable} from "./Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT pragma solidity >= 0.4.22 <0.9.0; library console { address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); function _sendLogPayload(bytes memory payload) private view { uint256 payloadLength = payload.length; address consoleAddress = CONSOLE_ADDRESS; assembly { let payloadStart := add(payload, 32) let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0) } } function log() internal view { _sendLogPayload(abi.encodeWithSignature("log()")); } function logInt(int p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(int)", p0)); } function logUint(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function logString(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function logBool(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function logAddress(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function logBytes(bytes memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); } function logBytes1(bytes1 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); } function logBytes2(bytes2 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); } function logBytes3(bytes3 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); } function logBytes4(bytes4 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); } function logBytes5(bytes5 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); } function logBytes6(bytes6 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); } function logBytes7(bytes7 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); } function logBytes8(bytes8 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); } function logBytes9(bytes9 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); } function logBytes10(bytes10 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); } function logBytes11(bytes11 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); } function logBytes12(bytes12 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); } function logBytes13(bytes13 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); } function logBytes14(bytes14 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); } function logBytes15(bytes15 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); } function logBytes16(bytes16 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); } function logBytes17(bytes17 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); } function logBytes18(bytes18 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); } function logBytes19(bytes19 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); } function logBytes20(bytes20 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); } function logBytes21(bytes21 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); } function logBytes22(bytes22 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); } function logBytes23(bytes23 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); } function logBytes24(bytes24 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); } function logBytes25(bytes25 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); } function logBytes26(bytes26 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); } function logBytes27(bytes27 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); } function logBytes28(bytes28 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); } function logBytes29(bytes29 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); } function logBytes30(bytes30 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); } function logBytes31(bytes31 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); } function logBytes32(bytes32 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); } function log(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function log(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function log(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function log(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function log(uint p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1)); } function log(uint p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1)); } function log(uint p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1)); } function log(uint p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1)); } function log(string memory p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1)); } function log(string memory p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); } function log(string memory p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); } function log(string memory p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); } function log(bool p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1)); } function log(bool p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); } function log(bool p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); } function log(bool p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); } function log(address p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1)); } function log(address p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); } function log(address p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); } function log(address p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); } function log(uint p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2)); } function log(uint p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2)); } function log(uint p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2)); } function log(uint p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2)); } function log(uint p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2)); } function log(uint p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2)); } function log(uint p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2)); } function log(uint p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2)); } function log(uint p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2)); } function log(uint p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2)); } function log(uint p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2)); } function log(uint p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2)); } function log(uint p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2)); } function log(uint p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2)); } function log(uint p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2)); } function log(uint p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2)); } function log(string memory p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2)); } function log(string memory p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2)); } function log(string memory p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2)); } function log(string memory p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2)); } function log(string memory p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2)); } function log(string memory p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); } function log(string memory p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); } function log(string memory p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); } function log(string memory p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2)); } function log(string memory p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); } function log(string memory p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); } function log(string memory p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); } function log(string memory p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2)); } function log(string memory p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); } function log(string memory p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); } function log(string memory p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); } function log(bool p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2)); } function log(bool p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2)); } function log(bool p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2)); } function log(bool p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2)); } function log(bool p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2)); } function log(bool p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); } function log(bool p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); } function log(bool p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); } function log(bool p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2)); } function log(bool p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); } function log(bool p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); } function log(bool p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); } function log(bool p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2)); } function log(bool p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); } function log(bool p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); } function log(bool p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); } function log(address p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2)); } function log(address p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2)); } function log(address p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2)); } function log(address p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2)); } function log(address p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2)); } function log(address p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); } function log(address p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); } function log(address p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); } function log(address p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2)); } function log(address p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); } function log(address p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); } function log(address p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); } function log(address p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2)); } function log(address p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); } function log(address p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); } function log(address p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); } function log(uint p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; interface IParameterControl { function get(string memory key) external view returns (string memory value); function set(string memory key, string memory value) external; function getInt(string memory key) external view returns (int value); function setInt(string memory key, int value) external; function getUInt256(string memory key) external view returns (uint256 value); function setUInt256(string memory key, uint256 value) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"_parameterAdd","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_zoneType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_zoneIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rockIndexFrom","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rockIndexTo","type":"uint256"},{"indexed":false,"internalType":"address","name":"_coreTeam","type":"address"},{"indexed":false,"internalType":"address","name":"_collAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"AddZone","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"new_","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_add","type":"address"}],"name":"EChangeMetaverseOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_zoneIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"EChangeZonePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_metaverseId","type":"uint256"}],"name":"InitMetaverse","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"MintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"new_","type":"address"}],"name":"OperatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"new_","type":"address"}],"name":"ParameterControlChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"new_","type":"address"}],"name":"ProxyRegistryAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CREATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"components":[{"internalType":"uint256","name":"zoneIndex","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"coreTeamAddr","type":"address"},{"internalType":"address","name":"collAddr","type":"address"},{"internalType":"uint256","name":"typeZone","type":"uint256"},{"internalType":"uint256","name":"rockIndexFrom","type":"uint256"},{"internalType":"uint256","name":"rockIndexTo","type":"uint256"}],"internalType":"struct SharedStructs.zone","name":"_zone","type":"tuple"}],"name":"addZone","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"internalType":"address","name":"_add","type":"address"}],"name":"changeMetaverseOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOperator","type":"address"}],"name":"changeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"internalType":"uint256","name":"_zoneIndex","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changeZonePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"address","name":"sender","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"components":[{"internalType":"uint256","name":"zoneIndex","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"coreTeamAddr","type":"address"},{"internalType":"address","name":"collAddr","type":"address"},{"internalType":"uint256","name":"typeZone","type":"uint256"},{"internalType":"uint256","name":"rockIndexFrom","type":"uint256"},{"internalType":"uint256","name":"rockIndexTo","type":"uint256"}],"internalType":"struct SharedStructs.zone","name":"_zone3","type":"tuple"}],"name":"initMetaverse","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"metaverseOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"metaverseZones","outputs":[{"internalType":"uint256","name":"zoneIndex","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"coreTeamAddr","type":"address"},{"internalType":"address","name":"collAddr","type":"address"},{"internalType":"uint256","name":"typeZone","type":"uint256"},{"internalType":"uint256","name":"rockIndexFrom","type":"uint256"},{"internalType":"uint256","name":"rockIndexTo","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metaverseId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_zoneIndex","type":"uint256"},{"internalType":"uint256","name":"_rockIndex","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mintRock","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parameterControlAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"royalties","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint24","name":"amount","type":"uint24"},{"internalType":"bool","name":"isValue","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"setCustomURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526005805461ff00191690553480156200001c57600080fd5b50604051620069ce380380620069ce8339810160408190526200003f9162000cd8565b8181604051806020016040528060008152508787828062000066816200038d60201b60201c565b506005805460ff1916905562000087600062000081620003a6565b620003c2565b620000a5600080516020620069ae83398151915262000081620003a6565b620000c36000805160206200698e83398151915262000081620003a6565b5060016008558451620000de90600e90602088019062000b3b565b508351620000f490600f90602087019062000b3b565b50600b80546001600160a01b0319169055600e8054620001a591906200011a9062000d7b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001489062000d7b565b8015620001995780601f106200016d5761010080835404028352916020019162000199565b820191906000526020600020905b8154815290600101906020018083116200017b57829003601f168201915b5050620003ce92505050565b600980546001600160a01b0319166001600160a01b038416908117909155620001d19060009062000436565b600a80546001600160a01b0319166001600160a01b0383169081179091556200021c907f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9299062000436565b600a5462000255907f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f906001600160a01b031662000436565b600a546200027d90600080516020620069ae833981519152906001600160a01b031662000436565b600a54620002a5906000805160206200698e833981519152906001600160a01b031662000436565b620002af620003a6565b6009546001600160a01b039081169116146200031757620002e9600080516020620069ae833981519152620002e3620003a6565b6200046e565b620003076000805160206200698e833981519152620002e3620003a6565b620003176000620002e3620003a6565b50505050506001600160a01b038316620003625760405162461bcd60e51b815260206004820152600760248201526612539597d0511160ca1b60448201526064015b60405180910390fd5b5050601480546001600160a01b0319166001600160a01b03929092169190911790555062000f199050565b8051620003a290600490602084019062000b3b565b5050565b6000620003bd6200049b60201b6200323c1760201c565b905090565b620003a28282620004fa565b600554610100900460ff1615620004195760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640162000359565b620004248162000538565b506005805461ff001916610100179055565b6000828152602081905260409020600101546200045d8162000457620003a6565b620005da565b620004698383620004fa565b505050565b6000828152602081905260409020600101546200048f8162000457620003a6565b62000469838362000675565b600033301415620004f457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620004f79050565b50335b90565b620005118282620006b360201b620032991760201c565b6000828152600160209081526040909120620004699183906200331e62000755821b17901c565b6040518060800160405280604f81526020016200693f604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600655565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620003a25762000624816001600160a01b031660146200077560201b620033331760201c565b6200063a8360206200333362000775821b17811c565b6040516020016200064d92919062000db8565b60408051601f198184030181529082905262461bcd60e51b8252620003599160040162000e31565b6200068c82826200092e60201b620034ce1760201c565b60008281526001602090815260409091206200046991839062003551620009ce821b17901c565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620003a2576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562000711620003a6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006200076c836001600160a01b038416620009e5565b90505b92915050565b606060006200078683600262000e7c565b6200079390600262000e9e565b6001600160401b03811115620007ad57620007ad62000bfe565b6040519080825280601f01601f191660200182016040528015620007d8576020820181803683370190505b509050600360fc1b81600081518110620007f657620007f662000eb9565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000828576200082862000eb9565b60200101906001600160f81b031916908160001a90535060006200084e84600262000e7c565b6200085b90600162000e9e565b90505b6001811115620008dd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000893576200089362000eb9565b1a60f81b828281518110620008ac57620008ac62000eb9565b60200101906001600160f81b031916908160001a90535060049490941c93620008d58162000ecf565b90506200085e565b5083156200076c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000359565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615620003a2576000828152602081815260408083206001600160a01b03851684529091529020805460ff191690556200098a620003a6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006200076c836001600160a01b03841662000a37565b600081815260018301602052604081205462000a2e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200076f565b5060006200076f565b6000818152600183016020526040812054801562000b3057600062000a5e60018362000ee9565b855490915060009062000a749060019062000ee9565b905081811462000ae057600086600001828154811062000a985762000a9862000eb9565b906000526020600020015490508087600001848154811062000abe5762000abe62000eb9565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062000af45762000af462000f03565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506200076f565b60009150506200076f565b82805462000b499062000d7b565b90600052602060002090601f01602090048101928262000b6d576000855562000bb8565b82601f1062000b8857805160ff191683800117855562000bb8565b8280016001018555821562000bb8579182015b8281111562000bb857825182559160200191906001019062000b9b565b5062000bc692915062000bca565b5090565b5b8082111562000bc6576000815560010162000bcb565b80516001600160a01b038116811462000bf957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c3157818101518382015260200162000c17565b8381111562000c41576000848401525b50505050565b600082601f83011262000c5957600080fd5b81516001600160401b038082111562000c765762000c7662000bfe565b604051601f8301601f19908116603f0116810190828211818310171562000ca15762000ca162000bfe565b8160405283815286602085880101111562000cbb57600080fd5b62000cce84602083016020890162000c14565b9695505050505050565b600080600080600060a0868803121562000cf157600080fd5b62000cfc8662000be1565b945062000d0c6020870162000be1565b935062000d1c6040870162000be1565b60608701519093506001600160401b038082111562000d3a57600080fd5b62000d4889838a0162000c47565b9350608088015191508082111562000d5f57600080fd5b5062000d6e8882890162000c47565b9150509295509295909350565b600181811c9082168062000d9057607f821691505b6020821081141562000db257634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000df281601785016020880162000c14565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000e2581602884016020880162000c14565b01602801949350505050565b602081526000825180602084015262000e5281604085016020870162000c14565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000e995762000e9962000e66565b500290565b6000821982111562000eb45762000eb462000e66565b500190565b634e487b7160e01b600052603260045260246000fd5b60008162000ee15762000ee162000e66565b506000190190565b60008282101562000efe5762000efe62000e66565b500390565b634e487b7160e01b600052603160045260246000fd5b615a168062000f296000396000f3fe6080604052600436106103805760003560e01c80637f77f574116101d1578063ca15c87311610102578063d547741f116100a0578063f242432a1161006f578063f242432a14610ba2578063f5298aca14610bc2578063f5b541a614610be2578063f851a44014610c0457600080fd5b8063d547741f14610b20578063e63ab1e914610b40578063e985e9c514610b62578063eaaef2c314610b8257600080fd5b8063d26ea6c0116100dc578063d26ea6c014610a88578063d2a6b51a14610aa8578063d48e638a14610ac8578063d539139314610afe57600080fd5b8063ca15c87314610a12578063cd53d08e14610a32578063cd7c032614610a6857600080fd5b80639713c8071161016f578063a22cb46511610149578063a22cb46514610989578063afc24cd6146109a9578063afc41841146109bc578063c91f88cc146109dc57600080fd5b80639713c807146109415780639ff43f9e14610961578063a217fddf1461097457600080fd5b80638f283970116101ab5780638f283970146108cc5780639010d07c146108ec57806391d148541461090c57806395d89b411461092c57600080fd5b80637f77f5741461081b5780638456cb59146108955780638aeda25a146108aa57600080fd5b80632f2ff15d116102b65780634e19338911610254578063582543391161022357806358254339146107135780635c975abb146107c35780636b20c454146107db578063731133e9146107fb57600080fd5b80634e1933891461067b5780634f558e79146106b357806351cff8d9146106d3578063570ca735146106f357600080fd5b80633adf80b4116102905780633adf80b4146106065780633f4ba83a14610626578063409592871461063b5780634e1273f41461064e57600080fd5b80632f2ff15d146105b35780633408e470146105d357806336568abe146105e657600080fd5b80630f7e597011610323578063248a9ca3116102fd578063248a9ca3146104ee5780632a55205a1461051e5780632d0335ab1461055d5780632eb2c2d61461059357600080fd5b80630f7e59701461048c5780631f7fdffa146104b957806320379ee5146104d957600080fd5b806306394c9b1161035f57806306394c9b1461040a57806306fdde031461042a5780630c53c51c1461044c5780630e89341c1461046c57600080fd5b8062fdd58e1461038557806301ffc9a7146103b857806302fe5305146103e8575b600080fd5b34801561039157600080fd5b506103a56103a03660046148ca565b610c24565b6040519081526020015b60405180910390f35b3480156103c457600080fd5b506103d86103d336600461490c565b610cc0565b60405190151581526020016103af565b3480156103f457600080fd5b50610408610403366004614a03565b610ce5565b005b34801561041657600080fd5b50610408610425366004614a3f565b610d97565b34801561043657600080fd5b5061043f610fb2565b6040516103af9190614ab4565b34801561045857600080fd5b5061043f610467366004614ac7565b611040565b34801561047857600080fd5b5061043f610487366004614b44565b611213565b34801561049857600080fd5b5061043f604051806040016040528060018152602001603160f81b81525081565b3480156104c557600080fd5b506104086104d4366004614bf1565b6113c6565b3480156104e557600080fd5b506006546103a5565b3480156104fa57600080fd5b506103a5610509366004614b44565b60009081526020819052604090206001015490565b34801561052a57600080fd5b5061053e610539366004614c8b565b611464565b604080516001600160a01b0390931683526020830191909152016103af565b34801561056957600080fd5b506103a5610578366004614a3f565b6001600160a01b031660009081526007602052604090205490565b34801561059f57600080fd5b506104086105ae366004614cad565b611526565b3480156105bf57600080fd5b506104086105ce366004614d5a565b6115cf565b3480156105df57600080fd5b50466103a5565b3480156105f257600080fd5b50610408610601366004614d5a565b611601565b34801561061257600080fd5b50610408610621366004614d8a565b61168f565b34801561063257600080fd5b50610408611764565b610408610649366004614dc6565b6117fa565b34801561065a57600080fd5b5061066e610669366004614e57565b611caf565b6040516103af9190614f54565b34801561068757600080fd5b5060145461069b906001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b3480156106bf57600080fd5b506103d86106ce366004614b44565b611dd8565b3480156106df57600080fd5b506104086106ee366004614a3f565b611df7565b3480156106ff57600080fd5b50600a5461069b906001600160a01b031681565b34801561071f57600080fd5b5061078261072e366004614c8b565b60126020908152600092835260408084209091529082529020805460018201546002830154600384015460048501546005860154600690960154949593946001600160a01b03938416949390921692909187565b6040805197885260208801969096526001600160a01b0394851695870195909552929091166060850152608084015260a083015260c082015260e0016103af565b3480156107cf57600080fd5b5060055460ff166103d8565b3480156107e757600080fd5b506104086107f6366004614f67565b611f84565b34801561080757600080fd5b50610408610816366004614fdc565b611fd9565b34801561082757600080fd5b5061086a610836366004614b44565b6010602052600090815260409020546001600160a01b03811690600160a01b810462ffffff1690600160b81b900460ff1683565b604080516001600160a01b03909416845262ffffff90921660208401521515908201526060016103af565b3480156108a157600080fd5b5061040861201b565b3480156108b657600080fd5b506103a560008051602061596183398151915281565b3480156108d857600080fd5b506104086108e7366004614a3f565b6120af565b3480156108f857600080fd5b5061069b610907366004614c8b565b6121f1565b34801561091857600080fd5b506103d8610927366004614d5a565b612209565b34801561093857600080fd5b5061043f612232565b34801561094d57600080fd5b5061040861095c366004615032565b61223f565b61040861096f36600461506a565b6123b9565b34801561098057600080fd5b506103a5600081565b34801561099557600080fd5b506104086109a4366004615104565b6128b5565b6104086109b736600461506a565b6128c7565b3480156109c857600080fd5b506104086109d7366004615137565b612c2e565b3480156109e857600080fd5b5061069b6109f7366004614b44565b6011602052600090815260409020546001600160a01b031681565b348015610a1e57600080fd5b506103a5610a2d366004614b44565b612d73565b348015610a3e57600080fd5b5061069b610a4d366004614b44565b600c602052600090815260409020546001600160a01b031681565b348015610a7457600080fd5b50600b5461069b906001600160a01b031681565b348015610a9457600080fd5b50610408610aa3366004614a3f565b612d8a565b348015610ab457600080fd5b50610408610ac3366004615163565b612ea2565b348015610ad457600080fd5b5061069b610ae3366004614b44565b6000908152600c60205260409020546001600160a01b031690565b348015610b0a57600080fd5b506103a56000805160206159c183398151915281565b348015610b2c57600080fd5b50610408610b3b366004614d5a565b612fd2565b348015610b4c57600080fd5b506103a56000805160206159a183398151915281565b348015610b6e57600080fd5b506103d8610b7d3660046151a8565b612ffa565b348015610b8e57600080fd5b50610408610b9d366004614d5a565b6130ca565b348015610bae57600080fd5b50610408610bbd3660046151d6565b613190565b348015610bce57600080fd5b50610408610bdd36600461523e565b6131e7565b348015610bee57600080fd5b506103a560008051602061598183398151915281565b348015610c1057600080fd5b5060095461069b906001600160a01b031681565b60006001600160a01b038316610c955760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636a4731c560e11b1480610cba5750610cba82613566565b600a546001600160a01b0316610cf9613571565b6001600160a01b031614610d1f5760405162461bcd60e51b8152600401610c8c90615273565b610d39600080516020615981833981519152610927613571565b610d555760405162461bcd60e51b8152600401610c8c90615273565b610d6f600080516020615961833981519152610927613571565b610d8b5760405162461bcd60e51b8152600401610c8c9061529a565b610d9481613580565b50565b6009546001600160a01b0316610dab613571565b6001600160a01b031614610dd15760405162461bcd60e51b8152600401610c8c906152c0565b610dde6000610927613571565b610dfa5760405162461bcd60e51b8152600401610c8c906152c0565b6009546001600160a01b0316610e0e613571565b6001600160a01b031614610e345760405162461bcd60e51b8152600401610c8c906152e4565b610e416000610927613571565b610e5d5760405162461bcd60e51b8152600401610c8c906152e4565b600a80546001600160a01b038381166001600160a01b0319831681179093551690610e9790600080516020615981833981519152906115cf565b600a54610ebc90600080516020615961833981519152906001600160a01b03166115cf565b600a54610ee1906000805160206159c1833981519152906001600160a01b03166115cf565b600a54610f06906000805160206159a1833981519152906001600160a01b03166115cf565b610f1e60008051602061598183398151915282612fd2565b610f3660008051602061596183398151915282612fd2565b610f4e6000805160206159c183398151915282612fd2565b610f666000805160206159a183398151915282612fd2565b600a54604080516001600160a01b03808516825290921660208301527fd58299b712891143e76310d5e664c4203c940a67db37cf856bdaa3c5c76a802c91015b60405180910390a15050565b600e8054610fbf90615307565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90615307565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60408051606081810183526001600160a01b0388166000818152600760209081529085902054845283015291810186905261107e8782878787613593565b6110d45760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610c8c565b6001600160a01b0387166000908152600760205260409020546110f8906001615352565b6001600160a01b0388166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061114890899033908a9061536a565b60405180910390a1600080306001600160a01b0316888a60405160200161117092919061539f565b60408051601f198184030181529082905261118a916153d6565b6000604051808303816000865af19150503d80600081146111c7576040519150601f19603f3d011682016040523d82523d6000602084013e6111cc565b606091505b5091509150816112075760405162461bcd60e51b8152600401610c8c9060208082526004908201526319985a5b60e21b604082015260600190565b98975050505050505050565b6000818152600c60205260409020546060906001600160a01b031661126e5760405162461bcd60e51b81526020600482015260116024820152702727a722ac24a9aa22a72a2faa27a5a2a760791b6044820152606401610c8c565b6000828152600d60205260408120805461128790615307565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390615307565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b505050505090506000815111156113b0576000838152600d60205260409020805461132a90615307565b80601f016020809104026020016040519081016040528092919081815260200182805461135690615307565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b5050505050915050919050565b6113b983613661565b9392505050565b50919050565b6113e06000805160206159c1833981519152610927613571565b6114525760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610c8c565b61145e848484846136f5565b50505050565b6000828152601060209081526040808320815160608101835290546001600160a01b0381168252600160a01b810462ffffff1693820193909352600160b81b90920460ff16158015918301919091528291906114e85780516020820151909350612710906114d79062ffffff16866153f2565b6114e19190615411565b915061151e565b6000858152600c60205260409020546001600160a01b03169250612710611511856101f46153f2565b61151b9190615411565b91505b509250929050565b61152e613571565b6001600160a01b0316856001600160a01b03161480611554575061155485610b7d613571565b6115bb5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c8c565b6115c8858585858561385b565b5050505050565b6000828152602081905260409020600101546115f2816115ed613571565b613a13565b6115fc8383613a77565b505050565b611609613571565b6001600160a01b0316816001600160a01b0316146116815760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c8c565b61168b8282613a99565b5050565b81611698613571565b6000828152600c60205260409020546001600160a01b039081169116146116d15760405162461bcd60e51b8152600401610c8c9061529a565b6116eb600080516020615961833981519152610927613571565b6117075760405162461bcd60e51b8152600401610c8c9061529a565b6000838152600d6020908152604090912083516117269285019061481c565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b836040516117579190614ab4565b60405180910390a2505050565b61177e6000805160206159a1833981519152610927613571565b6117f05760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e706175736500000000006064820152608401610c8c565b6117f8613abb565b565b6000868152601160205260409020546001600160a01b0316806118475760405162461bcd60e51b81526020600482015260056024820152644e5f455f4d60d81b6044820152606401610c8c565b6000878152601260209081526040808320888452825291829020825160e0810184528154815260018201549281019290925260028101546001600160a01b03908116938301939093526003810154909216606082015260048201546080820152600582015460a0820181905260069092015460c08201529085108015906118d257508060c001518511155b6119065760405162461bcd60e51b8152602060048201526005602482015264495f525f4960d81b6044820152606401610c8c565b600085876119188b633b9aca006153f2565b6119229190615352565b61193090633b9aca006153f2565b61193a9190615352565b6000818152600c60205260409020549091506001600160a01b0316156119885760405162461bcd60e51b81526020600482015260036024820152621157d560ea1b6044820152606401610c8c565b60008260c00151116119c25760405162461bcd60e51b8152602060048201526003602482015262495f5360e81b6044820152606401610c8c565b816080015160011415611a26576119d761323c565b6001600160a01b031682604001516001600160a01b031614611a215760405162461bcd60e51b815260206004820152600360248201526210d7d560ea1b6044820152606401610c8c565b611a6f565b816080015160031415611a6f578160200151341015611a6f5760405162461bcd60e51b815260206004820152600560248201526404d5f505f560dc1b6044820152606401610c8c565b600a546000828152600c6020526040902080546001600160a01b0319166001600160a01b03909216919091179055845115611afd576000818152600d602090815260409091208651611ac39288019061481c565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b86604051611af49190614ab4565b60405180910390a25b611b0a8882600187613b54565b602082015115611c5b573415611c5b57601454604051636d12dce160e01b815260206004820152600c60248201526b524f434b5f5055525f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba89190615433565b90506000612710611bb983346153f2565b611bc39190615411565b905060006001600160a01b038716611bdb833461544c565b604051600081818185875af1925050503d8060008114611c17576040519150601f19603f3d011682016040523d82523d6000602084013e611c1c565b606091505b5050905080611c565760405162461bcd60e51b8152600401610c8c906020808252600490820152631190525360e21b604082015260600190565b505050505b604080516001600160a01b038a1681526020810183905260018183015290517f8069ef4945469d029cc32e222031bccdc99b2eaaf4ee374cd268012f7ddee9079181900360600190a1505050505050505050565b60608151835114611d145760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610c8c565b600083516001600160401b03811115611d2f57611d2f614929565b604051908082528060200260200182016040528015611d58578160200160208202803683370190505b50905060005b8451811015611dd057611da3858281518110611d7c57611d7c615463565b6020026020010151858381518110611d9657611d96615463565b6020026020010151610c24565b828281518110611db557611db5615463565b6020908102919091010152611dc981615479565b9050611d5e565b509392505050565b6000818152600c60205260408120546001600160a01b03161515610cba565b60026008541415611e4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c8c565b60026008556009546001600160a01b0316611e63613571565b6001600160a01b031614611e895760405162461bcd60e51b8152600401610c8c906152c0565b611e966000610927613571565b611eb25760405162461bcd60e51b8152600401610c8c906152c0565b60004711611eef5760405162461bcd60e51b815260206004820152600a60248201526909c9ea8be8a9c9eaa8e960b31b6044820152606401610c8c565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611f3c576040519150601f19603f3d011682016040523d82523d6000602084013e611f41565b606091505b5050905080611f7b5760405162461bcd60e51b8152600401610c8c906020808252600490820152631190525360e21b604082015260600190565b50506001600855565b611f8c613571565b6001600160a01b0316836001600160a01b03161480611fb25750611fb283610b7d613571565b611fce5760405162461bcd60e51b8152600401610c8c90615494565b6115fc838383613c37565b82611fe2613571565b6000828152600c60205260409020546001600160a01b039081169116146115c85760405162461bcd60e51b8152600401610c8c9061529a565b6120356000805160206159a1833981519152610927613571565b6120a75760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f207061757365000000000000006064820152608401610c8c565b6117f8613dcf565b6009546001600160a01b03166120c3613571565b6001600160a01b0316146120e95760405162461bcd60e51b8152600401610c8c906152c0565b6120f66000610927613571565b6121125760405162461bcd60e51b8152600401610c8c906152c0565b6009546001600160a01b0316612126613571565b6001600160a01b03161461214c5760405162461bcd60e51b8152600401610c8c906152e4565b6121596000610927613571565b6121755760405162461bcd60e51b8152600401610c8c906152e4565b600980546001600160a01b038381166001600160a01b03198316811790935516906121a2906000906115cf565b6121ad600082612fd2565b600954604080516001600160a01b03808516825290921660208301527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f9101610fa6565b60008281526001602052604081206113b99083613e4b565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600f8054610fbf90615307565b600a546001600160a01b0316612253613571565b6001600160a01b0316146122795760405162461bcd60e51b8152600401610c8c90615273565b612293600080516020615981833981519152610927613571565b6122af5760405162461bcd60e51b8152600401610c8c90615273565b6122c9600080516020615961833981519152610927613571565b6123035760405162461bcd60e51b815260206004820152600b60248201526a2727aa2fa1a922a0aa27a960a91b6044820152606401610c8c565b6127108111156123405760405162461bcd60e51b81526020600482015260086024820152670a89e9ebe90928e960c31b6044820152606401610c8c565b604080516060810182526001600160a01b03938416815262ffffff928316602080830191825260018385019081526000978852601090915292909520905181549551925194166001600160b81b031990951694909417600160a01b91909216021760ff60b81b1916600160b81b91151591909102179055565b6000828152601160205260409020546001600160a01b0316156124045760405162461bcd60e51b8152602060048201526003602482015262455f4d60e81b6044820152606401610c8c565b80608001516003146124285760405162461bcd60e51b8152600401610c8c906154dd565b8060a0015160021461244c5760405162461bcd60e51b8152600401610c8c906154dd565b61245581613e57565b6124715760405162461bcd60e51b8152600401610c8c906154dd565b60008160a001518260c00151612487919061544c565b612492906001615352565b9050600081116124b45760405162461bcd60e51b8152600401610c8c906154dd565b601454604051636d12dce160e01b815260206004820152600c60248201526b494e49545f494d4f5f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa15801561251e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125429190615433565b905080156125895761255483826153f2565b3410156125895760405162461bcd60e51b815260206004820152600360248201526224afa360e91b6044820152606401610c8c565b612591613571565b600086815260116020908152604080832080546001600160a01b03199081166001600160a01b039687161790915560128352818420895185528352818420895181558984015160018201558983015160028201805484169188169190911790556060808b01516003830180549094169716969096179091556080808a0151600483015560a0808b0151600584015560c0808c0151600690940193909355835160e081018552868152948501869052928401859052948301849052938201839052810182905291820152600a60009054906101000a90046001600160a01b031681604001906001600160a01b031690816001600160a01b031681525050600181608001818152505060018160a001818152505060018160c00181815250506000816020018181525050600081606001906001600160a01b031690816001600160a01b03168152505060018160000181815250508060126000888152602001908152602001600020600083600001518152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080820151816004015560a0820151816005015560c0820151816006015590505060008160a00151826000015188633b9aca006127b791906153f2565b6127c19190615352565b6127cf90633b9aca006153f2565b6127d99190615352565b600a546000828152600c6020908152604080832080546001600160a01b0319166001600160a01b039095169490941790935585830151835191820190935290815291925061282b918390600190613b54565b60408281015181516001600160a01b0390911681526020810183905260018183015290517f8069ef4945469d029cc32e222031bccdc99b2eaaf4ee374cd268012f7ddee9079181900360600190a16040518781527f49669a69295acda27baba0ea29247e02f517f3450c77bd52c362870cfb7ceac49060200160405180910390a150505050505050565b61168b6128c0613571565b8383613ef9565b6000828152601160205260409020546001600160a01b03166129135760405162461bcd60e51b81526020600482015260056024820152644e5f455f4d60d81b6044820152606401610c8c565b600082815260126020908152604080832084518452909152902060060154156129645760405162461bcd60e51b815260206004820152600360248201526222afad60e91b6044820152606401610c8c565b61296c61323c565b6000838152601160205260409020546001600160a01b039081169116146129a55760405162461bcd60e51b8152600401610c8c906154fb565b6129ae81613e57565b6129e35760405162461bcd60e51b8152602060048201526006602482015265495f5a4f4e4560d01b6044820152606401610c8c565b8060800151600314612a225760405162461bcd60e51b8152602060048201526008602482015267494e565f5459504560c01b6044820152606401610c8c565b601454604051636d12dce160e01b815260206004820152600c60248201526b494e49545f494d4f5f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa158015612a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab09190615433565b90508015612b1f578260a001518360c00151612acc919061544c565b612ad7906001615352565b612ae190826153f2565b341015612b1f5760405162461bcd60e51b815260206004820152600c60248201526b4d4953535f494e495f46454560a01b6044820152606401610c8c565b60008481526012602090815260408083208651845282529182902085518082559186015160018201819055838701516002830180546001600160a01b038084166001600160a01b03199283161790925560608a01516003860180549382169390921692909217905560808901516004850181905560a08a01516005860181905560c08b0151600690960186905596517fb8033036b5cd4a496e1a16b0f2fd490dc18c2ce1c7c969b4c8f6f84fc3f6b97297612c20978d97939690959194919297885260208801969096526040870194909452606086019290925260808501526001600160a01b0390811660a08501521660c083015260e08201526101000190565b60405180910390a150505050565b612c3661323c565b6000848152601160205260409020546001600160a01b03908116911614612c6f5760405162461bcd60e51b8152600401610c8c906154fb565b6000838152601260209081526040808320858452909152902060060154612cbe5760405162461bcd60e51b815260206004820152600360248201526224afad60e91b6044820152606401610c8c565b6000838152601260209081526040808320858452909152902060040154600314612d105760405162461bcd60e51b815260206004820152600360248201526224afad60e91b6044820152606401610c8c565b600083815260126020908152604080832085845282529182902060010183905581518581529081018490529081018290527f95f65f2fc932b553231b4290f85999ae60ac9e82086414d2281a129723b1e76a9060600160405180910390a1505050565b6000818152600160205260408120610cba90613fda565b600a546001600160a01b0316612d9e613571565b6001600160a01b031614612dc45760405162461bcd60e51b8152600401610c8c90615273565b612dde600080516020615981833981519152610927613571565b612dfa5760405162461bcd60e51b8152600401610c8c90615273565b600b546001600160a01b0382811691161415612e485760405162461bcd60e51b815260206004820152600d60248201526c141493d61657d2539590531251609a1b6044820152606401610c8c565b600b80546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527ffc15895015d07bcb2ae0459d79c7bfb40d36feedb31f55cc34e3ef404c86c5779101610fa6565b600a546001600160a01b0316612eb6613571565b6001600160a01b031614612edc5760405162461bcd60e51b8152600401610c8c90615273565b612ef6600080516020615981833981519152610927613571565b612f125760405162461bcd60e51b8152600401610c8c90615273565b6001600160a01b038216612f5b5760405162461bcd60e51b815260206004820152601060248201526f24a72b20a624a22fa0a2222922a9a99760811b6044820152606401610c8c565b612f7360008051602061596183398151915283613a77565b612f8b6000805160206159c183398151915283613a77565b60005b81518110156115fc576000828281518110612fab57612fab615463565b60200260200101519050612fbf8482613fe4565b5080612fca81615479565b915050612f8e565b600082815260208190526040902060010154612ff0816115ed613571565b6115fc8383613a99565b600b546000906001600160a01b03161561309c57600b5460405163c455279160e01b81526001600160a01b03858116600483015291821691841690829063c455279190602401602060405180830381865afa15801561305d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130819190615518565b6001600160a01b0316141561309a576001915050610cba565b505b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff166113b9565b6130d261323c565b6000838152601160205260409020546001600160a01b0390811691161461310b5760405162461bcd60e51b8152600401610c8c906154fb565b6001600160a01b0381166131315760405162461bcd60e51b8152600401610c8c906154fb565b60008281526011602090815260409182902080546001600160a01b0319166001600160a01b0385169081179091558251858152918201527fdd9fea2fe1361d546c2bb487b53ae58d9745b2e73cf28408f5da6ad65d7ba3c19101610fa6565b613198613571565b6001600160a01b0316856001600160a01b031614806131be57506131be85610b7d613571565b6131da5760405162461bcd60e51b8152600401610c8c90615494565b6115c88585858585614055565b6131ef613571565b6001600160a01b0316836001600160a01b03161480613215575061321583610b7d613571565b6132315760405162461bcd60e51b8152600401610c8c90615494565b6115fc838383614181565b60003330141561329357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506132969050565b50335b90565b6132a38282612209565b61168b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556132da613571565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006113b9836001600160a01b038416614291565b606060006133428360026153f2565b61334d906002615352565b6001600160401b0381111561336457613364614929565b6040519080825280601f01601f19166020018201604052801561338e576020820181803683370190505b509050600360fc1b816000815181106133a9576133a9615463565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106133d8576133d8615463565b60200101906001600160f81b031916908160001a90535060006133fc8460026153f2565b613407906001615352565b90505b600181111561347f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061343b5761343b615463565b1a60f81b82828151811061345157613451615463565b60200101906001600160f81b031916908160001a90535060049490941c9361347881615535565b905061340a565b5083156113b95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c8c565b6134d88282612209565b1561168b576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916905561350d613571565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006113b9836001600160a01b0384166142e0565b6000610cba826143d3565b600061357b61323c565b905090565b805161168b90600490602084019061481c565b60006001600160a01b0386166135d75760405162461bcd60e51b815260206004820152600960248201526824a72fa9a4a3a722a960b91b6044820152606401610c8c565b60016135ea6135e587614413565b614490565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015613638573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60606004805461367090615307565b80601f016020809104026020016040519081016040528092919081815260200182805461369c90615307565b80156136e95780601f106136be576101008083540402835291602001916136e9565b820191906000526020600020905b8154815290600101906020018083116136cc57829003601f168201915b50505050509050919050565b6001600160a01b03841661371b5760405162461bcd60e51b8152600401610c8c9061554c565b815183511461373c5760405162461bcd60e51b8152600401610c8c9061558d565b6000613746613571565b9050613757816000878787876144c0565b60005b84518110156137f35783818151811061377557613775615463565b60200260200101516002600087848151811061379357613793615463565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546137db9190615352565b909155508190506137eb81615479565b91505061375a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516138449291906155d5565b60405180910390a46115c8816000878787876144ce565b815183511461387c5760405162461bcd60e51b8152600401610c8c9061558d565b6001600160a01b0384166138a25760405162461bcd60e51b8152600401610c8c906155fa565b60006138ac613571565b90506138bc8187878787876144c0565b60005b84518110156139a55760008582815181106138dc576138dc615463565b6020026020010151905060008583815181106138fa576138fa615463565b60209081029190910181015160008481526002835260408082206001600160a01b038e16835290935291909120549091508181101561394b5760405162461bcd60e51b8152600401610c8c9061563f565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061398a908490615352565b925050819055505050508061399e90615479565b90506138bf565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516139f59291906155d5565b60405180910390a4613a0b8187878787876144ce565b505050505050565b613a1d8282612209565b61168b57613a35816001600160a01b03166014613333565b613a40836020613333565b604051602001613a51929190615689565b60408051601f198184030181529082905262461bcd60e51b8252610c8c91600401614ab4565b613a818282613299565b60008281526001602052604090206115fc908261331e565b613aa382826134ce565b60008281526001602052604090206115fc9082613551565b60055460ff16613b045760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c8c565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613b37613571565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038416613b7a5760405162461bcd60e51b8152600401610c8c9061554c565b6000613b84613571565b9050613ba581600087613b968861462a565b613b9f8861462a565b876144c0565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290613bd7908490615352565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46115c881600087878787614675565b6001600160a01b038316613c5d5760405162461bcd60e51b8152600401610c8c906156fe565b8051825114613c7e5760405162461bcd60e51b8152600401610c8c9061558d565b6000613c88613571565b9050613ca8818560008686604051806020016040528060008152506144c0565b60005b8351811015613d70576000848281518110613cc857613cc8615463565b602002602001015190506000848381518110613ce657613ce6615463565b60209081029190910181015160008481526002835260408082206001600160a01b038c168352909352919091205490915081811015613d375760405162461bcd60e51b8152600401610c8c90615741565b60009283526002602090815260408085206001600160a01b038b1686529091529092209103905580613d6881615479565b915050613cab565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051613dc19291906155d5565b60405180910390a450505050565b60055460ff1615613e155760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c8c565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613b37613571565b60006113b98383614730565b60008160800151600314613e6d57506000919050565b8151633b9aca00111580613e895750633b9aca008260a0015110155b80613e9c5750633b9aca008260c0015110155b15613ea957506000919050565b60c082015115613ef1576020820151613ec457506000919050565b8160c001518260a001511180613edc575060a0820151155b15613ee957506000919050565b506001919050565b506000919050565b816001600160a01b0316836001600160a01b03161415613f6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610c8c565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000610cba825490565b80613fed613571565b6000828152600c60205260409020546001600160a01b039081169116146140265760405162461bcd60e51b8152600401610c8c9061529a565b506000908152600c6020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03841661407b5760405162461bcd60e51b8152600401610c8c906155fa565b6000614085613571565b9050614096818787613b968861462a565b60008481526002602090815260408083206001600160a01b038a168452909152902054838110156140d95760405162461bcd60e51b8152600401610c8c9061563f565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290614118908490615352565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4614178828888888888614675565b50505050505050565b6001600160a01b0383166141a75760405162461bcd60e51b8152600401610c8c906156fe565b60006141b1613571565b90506141e1818560006141c38761462a565b6141cc8761462a565b604051806020016040528060008152506144c0565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156142245760405162461bcd60e51b8152600401610c8c90615741565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60008181526001830160205260408120546142d857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cba565b506000610cba565b600081815260018301602052604081205480156143c957600061430460018361544c565b85549091506000906143189060019061544c565b905081811461437d57600086600001828154811061433857614338615463565b906000526020600020015490508087600001848154811061435b5761435b615463565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061438e5761438e615785565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cba565b6000915050610cba565b60006001600160e01b03198216636cdb3d1360e11b148061440457506001600160e01b031982166303a24d0760e21b145b80610cba5750610cba8261475a565b600060405180606001604052806025815260200161593c6025913980516020918201208351848301516040808701518051908601209051614473950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061449b60065490565b60405161190160f01b6020820152602281019190915260428101839052606201614473565b613a0b86868686868661477f565b6001600160a01b0384163b15613a0b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190614512908990899088908890889060040161579b565b6020604051808303816000875af192505050801561454d575060408051601f3d908101601f1916820190925261454a918101906157ed565b60015b6145fa5761455961580a565b806308c379a01415614593575061456e615825565b806145795750614595565b8060405162461bcd60e51b8152600401610c8c9190614ab4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610c8c565b6001600160e01b0319811663bc197c8160e01b146141785760405162461bcd60e51b8152600401610c8c906158ae565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061466457614664615463565b602090810291909101015292915050565b6001600160a01b0384163b15613a0b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906146b990899089908890889088906004016158f6565b6020604051808303816000875af19250505080156146f4575060408051601f3d908101601f191682019092526146f1918101906157ed565b60015b6147005761455961580a565b6001600160e01b0319811663f23a6e6160e01b146141785760405162461bcd60e51b8152600401610c8c906158ae565b600082600001828154811061474757614747615463565b9060005260206000200154905092915050565b60006001600160e01b03198216635a05180f60e01b1480610cba5750610cba826147e7565b60055460ff1615613a0b5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610c8c565b60006001600160e01b03198216637965db0b60e01b1480610cba57506301ffc9a760e01b6001600160e01b0319831614610cba565b82805461482890615307565b90600052602060002090601f01602090048101928261484a5760008555614890565b82601f1061486357805160ff1916838001178555614890565b82800160010185558215614890579182015b82811115614890578251825591602001919060010190614875565b5061489c9291506148a0565b5090565b5b8082111561489c57600081556001016148a1565b6001600160a01b0381168114610d9457600080fd5b600080604083850312156148dd57600080fd5b82356148e8816148b5565b946020939093013593505050565b6001600160e01b031981168114610d9457600080fd5b60006020828403121561491e57600080fd5b81356113b9816148f6565b634e487b7160e01b600052604160045260246000fd5b60e081018181106001600160401b038211171561495e5761495e614929565b60405250565b601f8201601f191681016001600160401b038111828210171561498957614989614929565b6040525050565b600082601f8301126149a157600080fd5b81356001600160401b038111156149ba576149ba614929565b6040516149d1601f8301601f191660200182614964565b8181528460208386010111156149e657600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614a1557600080fd5b81356001600160401b03811115614a2b57600080fd5b614a3784828501614990565b949350505050565b600060208284031215614a5157600080fd5b81356113b9816148b5565b60005b83811015614a77578181015183820152602001614a5f565b8381111561145e5750506000910152565b60008151808452614aa0816020860160208601614a5c565b601f01601f19169290920160200192915050565b6020815260006113b96020830184614a88565b600080600080600060a08688031215614adf57600080fd5b8535614aea816148b5565b945060208601356001600160401b03811115614b0557600080fd5b614b1188828901614990565b9450506040860135925060608601359150608086013560ff81168114614b3657600080fd5b809150509295509295909350565b600060208284031215614b5657600080fd5b5035919050565b60006001600160401b03821115614b7657614b76614929565b5060051b60200190565b600082601f830112614b9157600080fd5b81356020614b9e82614b5d565b604051614bab8282614964565b83815260059390931b8501820192828101915086841115614bcb57600080fd5b8286015b84811015614be65780358352918301918301614bcf565b509695505050505050565b60008060008060808587031215614c0757600080fd5b8435614c12816148b5565b935060208501356001600160401b0380821115614c2e57600080fd5b614c3a88838901614b80565b94506040870135915080821115614c5057600080fd5b614c5c88838901614b80565b93506060870135915080821115614c7257600080fd5b50614c7f87828801614990565b91505092959194509250565b60008060408385031215614c9e57600080fd5b50508035926020909101359150565b600080600080600060a08688031215614cc557600080fd5b8535614cd0816148b5565b94506020860135614ce0816148b5565b935060408601356001600160401b0380821115614cfc57600080fd5b614d0889838a01614b80565b94506060880135915080821115614d1e57600080fd5b614d2a89838a01614b80565b93506080880135915080821115614d4057600080fd5b50614d4d88828901614990565b9150509295509295909350565b60008060408385031215614d6d57600080fd5b823591506020830135614d7f816148b5565b809150509250929050565b60008060408385031215614d9d57600080fd5b8235915060208301356001600160401b03811115614dba57600080fd5b61151b85828601614990565b60008060008060008060c08789031215614ddf57600080fd5b863595506020870135614df1816148b5565b9450604087013593506060870135925060808701356001600160401b0380821115614e1b57600080fd5b614e278a838b01614990565b935060a0890135915080821115614e3d57600080fd5b50614e4a89828a01614990565b9150509295509295509295565b60008060408385031215614e6a57600080fd5b82356001600160401b0380821115614e8157600080fd5b818501915085601f830112614e9557600080fd5b81356020614ea282614b5d565b604051614eaf8282614964565b83815260059390931b8501820192828101915089841115614ecf57600080fd5b948201945b83861015614ef6578535614ee7816148b5565b82529482019490820190614ed4565b96505086013592505080821115614f0c57600080fd5b5061151b85828601614b80565b600081518084526020808501945080840160005b83811015614f4957815187529582019590820190600101614f2d565b509495945050505050565b6020815260006113b96020830184614f19565b600080600060608486031215614f7c57600080fd5b8335614f87816148b5565b925060208401356001600160401b0380821115614fa357600080fd5b614faf87838801614b80565b93506040860135915080821115614fc557600080fd5b50614fd286828701614b80565b9150509250925092565b60008060008060808587031215614ff257600080fd5b8435614ffd816148b5565b9350602085013592506040850135915060608501356001600160401b0381111561502657600080fd5b614c7f87828801614990565b60008060006060848603121561504757600080fd5b833592506020840135615059816148b5565b929592945050506040919091013590565b60008082840361010081121561507f57600080fd5b8335925060e0601f198201121561509557600080fd5b506040516150a28161493f565b602084013581526040840135602082015260608401356150c1816148b5565b604082015260808401356150d4816148b5565b8060608301525060a0840135608082015260c084013560a082015260e084013560c0820152809150509250929050565b6000806040838503121561511757600080fd5b8235615122816148b5565b915060208301358015158114614d7f57600080fd5b60008060006060848603121561514c57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561517657600080fd5b8235615181816148b5565b915060208301356001600160401b0381111561519c57600080fd5b61151b85828601614b80565b600080604083850312156151bb57600080fd5b82356151c6816148b5565b91506020830135614d7f816148b5565b600080600080600060a086880312156151ee57600080fd5b85356151f9816148b5565b94506020860135615209816148b5565b9350604086013592506060860135915060808601356001600160401b0381111561523257600080fd5b614d4d88828901614990565b60008060006060848603121561525357600080fd5b833561525e816148b5565b95602085013595506040909401359392505050565b6020808252600d908201526c27a7262cafa7a822a920aa27a960991b604082015260600190565b6020808252600c908201526b27a7262cafa1a922a0aa27a960a11b604082015260600190565b6020808252600a908201526927a7262cafa0a226a4a760b11b604082015260600190565b6020808252600990820152682727aa2fa0a226a4a760b91b604082015260600190565b600181811c9082168061531b57607f821691505b602082108114156113c057634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156153655761536561533c565b500190565b6001600160a01b0384811682528316602082015260606040820181905260009061539690830184614a88565b95945050505050565b600083516153b1818460208801614a5c565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516153e8818460208701614a5c565b9190910192915050565b600081600019048311821515161561540c5761540c61533c565b500290565b60008261542e57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561544557600080fd5b5051919050565b60008282101561545e5761545e61533c565b500390565b634e487b7160e01b600052603260045260246000fd5b600060001982141561548d5761548d61533c565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b602080825260049082015263495f5a3360e01b604082015260600190565b602080825260039082015262495f4160e81b604082015260600190565b60006020828403121561552a57600080fd5b81516113b9816148b5565b6000816155445761554461533c565b506000190190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006155e86040830185614f19565b82810360208401526153968185614f19565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516156c1816017850160208801614a5c565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516156f2816028840160208801614a5c565b01602801949350505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a0604082018190526000906157c790830186614f19565b82810360608401526157d98186614f19565b905082810360808401526112078185614a88565b6000602082840312156157ff57600080fd5b81516113b9816148f6565b600060033d11156132965760046000803e5060005160e01c90565b600060443d10156158335790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561586257505050505090565b828501915081518181111561587a5750505050505090565b843d87010160208285010111156158945750505050505090565b6158a360208286010187614964565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061593090830184614a88565b97965050505050505056fe4d6574615472616e73616374696f6e286e6f6e63652c66726f6d2c7369676e617475726529828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92965d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220f17f5dc421d13b6e5313ff221f18e8bf46dde4ae5618decd9bc1b76d99983ae564736f6c634300080c0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742965d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a600000000000000000000000025ba272695b064f33b843c32834f847255ff25dc000000000000000000000000f287d98a7b0823a49cfd20e250a251b97561c6ad00000000000000000000000046396fbadafd9354a13edd57e4f5173d3df0748a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000021557365722d67656e657261746564204d657461766572736573206f6e20526f7665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524d730000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103805760003560e01c80637f77f574116101d1578063ca15c87311610102578063d547741f116100a0578063f242432a1161006f578063f242432a14610ba2578063f5298aca14610bc2578063f5b541a614610be2578063f851a44014610c0457600080fd5b8063d547741f14610b20578063e63ab1e914610b40578063e985e9c514610b62578063eaaef2c314610b8257600080fd5b8063d26ea6c0116100dc578063d26ea6c014610a88578063d2a6b51a14610aa8578063d48e638a14610ac8578063d539139314610afe57600080fd5b8063ca15c87314610a12578063cd53d08e14610a32578063cd7c032614610a6857600080fd5b80639713c8071161016f578063a22cb46511610149578063a22cb46514610989578063afc24cd6146109a9578063afc41841146109bc578063c91f88cc146109dc57600080fd5b80639713c807146109415780639ff43f9e14610961578063a217fddf1461097457600080fd5b80638f283970116101ab5780638f283970146108cc5780639010d07c146108ec57806391d148541461090c57806395d89b411461092c57600080fd5b80637f77f5741461081b5780638456cb59146108955780638aeda25a146108aa57600080fd5b80632f2ff15d116102b65780634e19338911610254578063582543391161022357806358254339146107135780635c975abb146107c35780636b20c454146107db578063731133e9146107fb57600080fd5b80634e1933891461067b5780634f558e79146106b357806351cff8d9146106d3578063570ca735146106f357600080fd5b80633adf80b4116102905780633adf80b4146106065780633f4ba83a14610626578063409592871461063b5780634e1273f41461064e57600080fd5b80632f2ff15d146105b35780633408e470146105d357806336568abe146105e657600080fd5b80630f7e597011610323578063248a9ca3116102fd578063248a9ca3146104ee5780632a55205a1461051e5780632d0335ab1461055d5780632eb2c2d61461059357600080fd5b80630f7e59701461048c5780631f7fdffa146104b957806320379ee5146104d957600080fd5b806306394c9b1161035f57806306394c9b1461040a57806306fdde031461042a5780630c53c51c1461044c5780630e89341c1461046c57600080fd5b8062fdd58e1461038557806301ffc9a7146103b857806302fe5305146103e8575b600080fd5b34801561039157600080fd5b506103a56103a03660046148ca565b610c24565b6040519081526020015b60405180910390f35b3480156103c457600080fd5b506103d86103d336600461490c565b610cc0565b60405190151581526020016103af565b3480156103f457600080fd5b50610408610403366004614a03565b610ce5565b005b34801561041657600080fd5b50610408610425366004614a3f565b610d97565b34801561043657600080fd5b5061043f610fb2565b6040516103af9190614ab4565b34801561045857600080fd5b5061043f610467366004614ac7565b611040565b34801561047857600080fd5b5061043f610487366004614b44565b611213565b34801561049857600080fd5b5061043f604051806040016040528060018152602001603160f81b81525081565b3480156104c557600080fd5b506104086104d4366004614bf1565b6113c6565b3480156104e557600080fd5b506006546103a5565b3480156104fa57600080fd5b506103a5610509366004614b44565b60009081526020819052604090206001015490565b34801561052a57600080fd5b5061053e610539366004614c8b565b611464565b604080516001600160a01b0390931683526020830191909152016103af565b34801561056957600080fd5b506103a5610578366004614a3f565b6001600160a01b031660009081526007602052604090205490565b34801561059f57600080fd5b506104086105ae366004614cad565b611526565b3480156105bf57600080fd5b506104086105ce366004614d5a565b6115cf565b3480156105df57600080fd5b50466103a5565b3480156105f257600080fd5b50610408610601366004614d5a565b611601565b34801561061257600080fd5b50610408610621366004614d8a565b61168f565b34801561063257600080fd5b50610408611764565b610408610649366004614dc6565b6117fa565b34801561065a57600080fd5b5061066e610669366004614e57565b611caf565b6040516103af9190614f54565b34801561068757600080fd5b5060145461069b906001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b3480156106bf57600080fd5b506103d86106ce366004614b44565b611dd8565b3480156106df57600080fd5b506104086106ee366004614a3f565b611df7565b3480156106ff57600080fd5b50600a5461069b906001600160a01b031681565b34801561071f57600080fd5b5061078261072e366004614c8b565b60126020908152600092835260408084209091529082529020805460018201546002830154600384015460048501546005860154600690960154949593946001600160a01b03938416949390921692909187565b6040805197885260208801969096526001600160a01b0394851695870195909552929091166060850152608084015260a083015260c082015260e0016103af565b3480156107cf57600080fd5b5060055460ff166103d8565b3480156107e757600080fd5b506104086107f6366004614f67565b611f84565b34801561080757600080fd5b50610408610816366004614fdc565b611fd9565b34801561082757600080fd5b5061086a610836366004614b44565b6010602052600090815260409020546001600160a01b03811690600160a01b810462ffffff1690600160b81b900460ff1683565b604080516001600160a01b03909416845262ffffff90921660208401521515908201526060016103af565b3480156108a157600080fd5b5061040861201b565b3480156108b657600080fd5b506103a560008051602061596183398151915281565b3480156108d857600080fd5b506104086108e7366004614a3f565b6120af565b3480156108f857600080fd5b5061069b610907366004614c8b565b6121f1565b34801561091857600080fd5b506103d8610927366004614d5a565b612209565b34801561093857600080fd5b5061043f612232565b34801561094d57600080fd5b5061040861095c366004615032565b61223f565b61040861096f36600461506a565b6123b9565b34801561098057600080fd5b506103a5600081565b34801561099557600080fd5b506104086109a4366004615104565b6128b5565b6104086109b736600461506a565b6128c7565b3480156109c857600080fd5b506104086109d7366004615137565b612c2e565b3480156109e857600080fd5b5061069b6109f7366004614b44565b6011602052600090815260409020546001600160a01b031681565b348015610a1e57600080fd5b506103a5610a2d366004614b44565b612d73565b348015610a3e57600080fd5b5061069b610a4d366004614b44565b600c602052600090815260409020546001600160a01b031681565b348015610a7457600080fd5b50600b5461069b906001600160a01b031681565b348015610a9457600080fd5b50610408610aa3366004614a3f565b612d8a565b348015610ab457600080fd5b50610408610ac3366004615163565b612ea2565b348015610ad457600080fd5b5061069b610ae3366004614b44565b6000908152600c60205260409020546001600160a01b031690565b348015610b0a57600080fd5b506103a56000805160206159c183398151915281565b348015610b2c57600080fd5b50610408610b3b366004614d5a565b612fd2565b348015610b4c57600080fd5b506103a56000805160206159a183398151915281565b348015610b6e57600080fd5b506103d8610b7d3660046151a8565b612ffa565b348015610b8e57600080fd5b50610408610b9d366004614d5a565b6130ca565b348015610bae57600080fd5b50610408610bbd3660046151d6565b613190565b348015610bce57600080fd5b50610408610bdd36600461523e565b6131e7565b348015610bee57600080fd5b506103a560008051602061598183398151915281565b348015610c1057600080fd5b5060095461069b906001600160a01b031681565b60006001600160a01b038316610c955760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636a4731c560e11b1480610cba5750610cba82613566565b600a546001600160a01b0316610cf9613571565b6001600160a01b031614610d1f5760405162461bcd60e51b8152600401610c8c90615273565b610d39600080516020615981833981519152610927613571565b610d555760405162461bcd60e51b8152600401610c8c90615273565b610d6f600080516020615961833981519152610927613571565b610d8b5760405162461bcd60e51b8152600401610c8c9061529a565b610d9481613580565b50565b6009546001600160a01b0316610dab613571565b6001600160a01b031614610dd15760405162461bcd60e51b8152600401610c8c906152c0565b610dde6000610927613571565b610dfa5760405162461bcd60e51b8152600401610c8c906152c0565b6009546001600160a01b0316610e0e613571565b6001600160a01b031614610e345760405162461bcd60e51b8152600401610c8c906152e4565b610e416000610927613571565b610e5d5760405162461bcd60e51b8152600401610c8c906152e4565b600a80546001600160a01b038381166001600160a01b0319831681179093551690610e9790600080516020615981833981519152906115cf565b600a54610ebc90600080516020615961833981519152906001600160a01b03166115cf565b600a54610ee1906000805160206159c1833981519152906001600160a01b03166115cf565b600a54610f06906000805160206159a1833981519152906001600160a01b03166115cf565b610f1e60008051602061598183398151915282612fd2565b610f3660008051602061596183398151915282612fd2565b610f4e6000805160206159c183398151915282612fd2565b610f666000805160206159a183398151915282612fd2565b600a54604080516001600160a01b03808516825290921660208301527fd58299b712891143e76310d5e664c4203c940a67db37cf856bdaa3c5c76a802c91015b60405180910390a15050565b600e8054610fbf90615307565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90615307565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60408051606081810183526001600160a01b0388166000818152600760209081529085902054845283015291810186905261107e8782878787613593565b6110d45760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610c8c565b6001600160a01b0387166000908152600760205260409020546110f8906001615352565b6001600160a01b0388166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061114890899033908a9061536a565b60405180910390a1600080306001600160a01b0316888a60405160200161117092919061539f565b60408051601f198184030181529082905261118a916153d6565b6000604051808303816000865af19150503d80600081146111c7576040519150601f19603f3d011682016040523d82523d6000602084013e6111cc565b606091505b5091509150816112075760405162461bcd60e51b8152600401610c8c9060208082526004908201526319985a5b60e21b604082015260600190565b98975050505050505050565b6000818152600c60205260409020546060906001600160a01b031661126e5760405162461bcd60e51b81526020600482015260116024820152702727a722ac24a9aa22a72a2faa27a5a2a760791b6044820152606401610c8c565b6000828152600d60205260408120805461128790615307565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390615307565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b505050505090506000815111156113b0576000838152600d60205260409020805461132a90615307565b80601f016020809104026020016040519081016040528092919081815260200182805461135690615307565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b5050505050915050919050565b6113b983613661565b9392505050565b50919050565b6113e06000805160206159c1833981519152610927613571565b6114525760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610c8c565b61145e848484846136f5565b50505050565b6000828152601060209081526040808320815160608101835290546001600160a01b0381168252600160a01b810462ffffff1693820193909352600160b81b90920460ff16158015918301919091528291906114e85780516020820151909350612710906114d79062ffffff16866153f2565b6114e19190615411565b915061151e565b6000858152600c60205260409020546001600160a01b03169250612710611511856101f46153f2565b61151b9190615411565b91505b509250929050565b61152e613571565b6001600160a01b0316856001600160a01b03161480611554575061155485610b7d613571565b6115bb5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c8c565b6115c8858585858561385b565b5050505050565b6000828152602081905260409020600101546115f2816115ed613571565b613a13565b6115fc8383613a77565b505050565b611609613571565b6001600160a01b0316816001600160a01b0316146116815760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c8c565b61168b8282613a99565b5050565b81611698613571565b6000828152600c60205260409020546001600160a01b039081169116146116d15760405162461bcd60e51b8152600401610c8c9061529a565b6116eb600080516020615961833981519152610927613571565b6117075760405162461bcd60e51b8152600401610c8c9061529a565b6000838152600d6020908152604090912083516117269285019061481c565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b836040516117579190614ab4565b60405180910390a2505050565b61177e6000805160206159a1833981519152610927613571565b6117f05760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e706175736500000000006064820152608401610c8c565b6117f8613abb565b565b6000868152601160205260409020546001600160a01b0316806118475760405162461bcd60e51b81526020600482015260056024820152644e5f455f4d60d81b6044820152606401610c8c565b6000878152601260209081526040808320888452825291829020825160e0810184528154815260018201549281019290925260028101546001600160a01b03908116938301939093526003810154909216606082015260048201546080820152600582015460a0820181905260069092015460c08201529085108015906118d257508060c001518511155b6119065760405162461bcd60e51b8152602060048201526005602482015264495f525f4960d81b6044820152606401610c8c565b600085876119188b633b9aca006153f2565b6119229190615352565b61193090633b9aca006153f2565b61193a9190615352565b6000818152600c60205260409020549091506001600160a01b0316156119885760405162461bcd60e51b81526020600482015260036024820152621157d560ea1b6044820152606401610c8c565b60008260c00151116119c25760405162461bcd60e51b8152602060048201526003602482015262495f5360e81b6044820152606401610c8c565b816080015160011415611a26576119d761323c565b6001600160a01b031682604001516001600160a01b031614611a215760405162461bcd60e51b815260206004820152600360248201526210d7d560ea1b6044820152606401610c8c565b611a6f565b816080015160031415611a6f578160200151341015611a6f5760405162461bcd60e51b815260206004820152600560248201526404d5f505f560dc1b6044820152606401610c8c565b600a546000828152600c6020526040902080546001600160a01b0319166001600160a01b03909216919091179055845115611afd576000818152600d602090815260409091208651611ac39288019061481c565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b86604051611af49190614ab4565b60405180910390a25b611b0a8882600187613b54565b602082015115611c5b573415611c5b57601454604051636d12dce160e01b815260206004820152600c60248201526b524f434b5f5055525f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba89190615433565b90506000612710611bb983346153f2565b611bc39190615411565b905060006001600160a01b038716611bdb833461544c565b604051600081818185875af1925050503d8060008114611c17576040519150601f19603f3d011682016040523d82523d6000602084013e611c1c565b606091505b5050905080611c565760405162461bcd60e51b8152600401610c8c906020808252600490820152631190525360e21b604082015260600190565b505050505b604080516001600160a01b038a1681526020810183905260018183015290517f8069ef4945469d029cc32e222031bccdc99b2eaaf4ee374cd268012f7ddee9079181900360600190a1505050505050505050565b60608151835114611d145760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610c8c565b600083516001600160401b03811115611d2f57611d2f614929565b604051908082528060200260200182016040528015611d58578160200160208202803683370190505b50905060005b8451811015611dd057611da3858281518110611d7c57611d7c615463565b6020026020010151858381518110611d9657611d96615463565b6020026020010151610c24565b828281518110611db557611db5615463565b6020908102919091010152611dc981615479565b9050611d5e565b509392505050565b6000818152600c60205260408120546001600160a01b03161515610cba565b60026008541415611e4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c8c565b60026008556009546001600160a01b0316611e63613571565b6001600160a01b031614611e895760405162461bcd60e51b8152600401610c8c906152c0565b611e966000610927613571565b611eb25760405162461bcd60e51b8152600401610c8c906152c0565b60004711611eef5760405162461bcd60e51b815260206004820152600a60248201526909c9ea8be8a9c9eaa8e960b31b6044820152606401610c8c565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611f3c576040519150601f19603f3d011682016040523d82523d6000602084013e611f41565b606091505b5050905080611f7b5760405162461bcd60e51b8152600401610c8c906020808252600490820152631190525360e21b604082015260600190565b50506001600855565b611f8c613571565b6001600160a01b0316836001600160a01b03161480611fb25750611fb283610b7d613571565b611fce5760405162461bcd60e51b8152600401610c8c90615494565b6115fc838383613c37565b82611fe2613571565b6000828152600c60205260409020546001600160a01b039081169116146115c85760405162461bcd60e51b8152600401610c8c9061529a565b6120356000805160206159a1833981519152610927613571565b6120a75760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f207061757365000000000000006064820152608401610c8c565b6117f8613dcf565b6009546001600160a01b03166120c3613571565b6001600160a01b0316146120e95760405162461bcd60e51b8152600401610c8c906152c0565b6120f66000610927613571565b6121125760405162461bcd60e51b8152600401610c8c906152c0565b6009546001600160a01b0316612126613571565b6001600160a01b03161461214c5760405162461bcd60e51b8152600401610c8c906152e4565b6121596000610927613571565b6121755760405162461bcd60e51b8152600401610c8c906152e4565b600980546001600160a01b038381166001600160a01b03198316811790935516906121a2906000906115cf565b6121ad600082612fd2565b600954604080516001600160a01b03808516825290921660208301527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f9101610fa6565b60008281526001602052604081206113b99083613e4b565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600f8054610fbf90615307565b600a546001600160a01b0316612253613571565b6001600160a01b0316146122795760405162461bcd60e51b8152600401610c8c90615273565b612293600080516020615981833981519152610927613571565b6122af5760405162461bcd60e51b8152600401610c8c90615273565b6122c9600080516020615961833981519152610927613571565b6123035760405162461bcd60e51b815260206004820152600b60248201526a2727aa2fa1a922a0aa27a960a91b6044820152606401610c8c565b6127108111156123405760405162461bcd60e51b81526020600482015260086024820152670a89e9ebe90928e960c31b6044820152606401610c8c565b604080516060810182526001600160a01b03938416815262ffffff928316602080830191825260018385019081526000978852601090915292909520905181549551925194166001600160b81b031990951694909417600160a01b91909216021760ff60b81b1916600160b81b91151591909102179055565b6000828152601160205260409020546001600160a01b0316156124045760405162461bcd60e51b8152602060048201526003602482015262455f4d60e81b6044820152606401610c8c565b80608001516003146124285760405162461bcd60e51b8152600401610c8c906154dd565b8060a0015160021461244c5760405162461bcd60e51b8152600401610c8c906154dd565b61245581613e57565b6124715760405162461bcd60e51b8152600401610c8c906154dd565b60008160a001518260c00151612487919061544c565b612492906001615352565b9050600081116124b45760405162461bcd60e51b8152600401610c8c906154dd565b601454604051636d12dce160e01b815260206004820152600c60248201526b494e49545f494d4f5f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa15801561251e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125429190615433565b905080156125895761255483826153f2565b3410156125895760405162461bcd60e51b815260206004820152600360248201526224afa360e91b6044820152606401610c8c565b612591613571565b600086815260116020908152604080832080546001600160a01b03199081166001600160a01b039687161790915560128352818420895185528352818420895181558984015160018201558983015160028201805484169188169190911790556060808b01516003830180549094169716969096179091556080808a0151600483015560a0808b0151600584015560c0808c0151600690940193909355835160e081018552868152948501869052928401859052948301849052938201839052810182905291820152600a60009054906101000a90046001600160a01b031681604001906001600160a01b031690816001600160a01b031681525050600181608001818152505060018160a001818152505060018160c00181815250506000816020018181525050600081606001906001600160a01b031690816001600160a01b03168152505060018160000181815250508060126000888152602001908152602001600020600083600001518152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080820151816004015560a0820151816005015560c0820151816006015590505060008160a00151826000015188633b9aca006127b791906153f2565b6127c19190615352565b6127cf90633b9aca006153f2565b6127d99190615352565b600a546000828152600c6020908152604080832080546001600160a01b0319166001600160a01b039095169490941790935585830151835191820190935290815291925061282b918390600190613b54565b60408281015181516001600160a01b0390911681526020810183905260018183015290517f8069ef4945469d029cc32e222031bccdc99b2eaaf4ee374cd268012f7ddee9079181900360600190a16040518781527f49669a69295acda27baba0ea29247e02f517f3450c77bd52c362870cfb7ceac49060200160405180910390a150505050505050565b61168b6128c0613571565b8383613ef9565b6000828152601160205260409020546001600160a01b03166129135760405162461bcd60e51b81526020600482015260056024820152644e5f455f4d60d81b6044820152606401610c8c565b600082815260126020908152604080832084518452909152902060060154156129645760405162461bcd60e51b815260206004820152600360248201526222afad60e91b6044820152606401610c8c565b61296c61323c565b6000838152601160205260409020546001600160a01b039081169116146129a55760405162461bcd60e51b8152600401610c8c906154fb565b6129ae81613e57565b6129e35760405162461bcd60e51b8152602060048201526006602482015265495f5a4f4e4560d01b6044820152606401610c8c565b8060800151600314612a225760405162461bcd60e51b8152602060048201526008602482015267494e565f5459504560c01b6044820152606401610c8c565b601454604051636d12dce160e01b815260206004820152600c60248201526b494e49545f494d4f5f46454560a01b60448201526001600160a01b03909116906000908290636d12dce190606401602060405180830381865afa158015612a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab09190615433565b90508015612b1f578260a001518360c00151612acc919061544c565b612ad7906001615352565b612ae190826153f2565b341015612b1f5760405162461bcd60e51b815260206004820152600c60248201526b4d4953535f494e495f46454560a01b6044820152606401610c8c565b60008481526012602090815260408083208651845282529182902085518082559186015160018201819055838701516002830180546001600160a01b038084166001600160a01b03199283161790925560608a01516003860180549382169390921692909217905560808901516004850181905560a08a01516005860181905560c08b0151600690960186905596517fb8033036b5cd4a496e1a16b0f2fd490dc18c2ce1c7c969b4c8f6f84fc3f6b97297612c20978d97939690959194919297885260208801969096526040870194909452606086019290925260808501526001600160a01b0390811660a08501521660c083015260e08201526101000190565b60405180910390a150505050565b612c3661323c565b6000848152601160205260409020546001600160a01b03908116911614612c6f5760405162461bcd60e51b8152600401610c8c906154fb565b6000838152601260209081526040808320858452909152902060060154612cbe5760405162461bcd60e51b815260206004820152600360248201526224afad60e91b6044820152606401610c8c565b6000838152601260209081526040808320858452909152902060040154600314612d105760405162461bcd60e51b815260206004820152600360248201526224afad60e91b6044820152606401610c8c565b600083815260126020908152604080832085845282529182902060010183905581518581529081018490529081018290527f95f65f2fc932b553231b4290f85999ae60ac9e82086414d2281a129723b1e76a9060600160405180910390a1505050565b6000818152600160205260408120610cba90613fda565b600a546001600160a01b0316612d9e613571565b6001600160a01b031614612dc45760405162461bcd60e51b8152600401610c8c90615273565b612dde600080516020615981833981519152610927613571565b612dfa5760405162461bcd60e51b8152600401610c8c90615273565b600b546001600160a01b0382811691161415612e485760405162461bcd60e51b815260206004820152600d60248201526c141493d61657d2539590531251609a1b6044820152606401610c8c565b600b80546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527ffc15895015d07bcb2ae0459d79c7bfb40d36feedb31f55cc34e3ef404c86c5779101610fa6565b600a546001600160a01b0316612eb6613571565b6001600160a01b031614612edc5760405162461bcd60e51b8152600401610c8c90615273565b612ef6600080516020615981833981519152610927613571565b612f125760405162461bcd60e51b8152600401610c8c90615273565b6001600160a01b038216612f5b5760405162461bcd60e51b815260206004820152601060248201526f24a72b20a624a22fa0a2222922a9a99760811b6044820152606401610c8c565b612f7360008051602061596183398151915283613a77565b612f8b6000805160206159c183398151915283613a77565b60005b81518110156115fc576000828281518110612fab57612fab615463565b60200260200101519050612fbf8482613fe4565b5080612fca81615479565b915050612f8e565b600082815260208190526040902060010154612ff0816115ed613571565b6115fc8383613a99565b600b546000906001600160a01b03161561309c57600b5460405163c455279160e01b81526001600160a01b03858116600483015291821691841690829063c455279190602401602060405180830381865afa15801561305d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130819190615518565b6001600160a01b0316141561309a576001915050610cba565b505b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff166113b9565b6130d261323c565b6000838152601160205260409020546001600160a01b0390811691161461310b5760405162461bcd60e51b8152600401610c8c906154fb565b6001600160a01b0381166131315760405162461bcd60e51b8152600401610c8c906154fb565b60008281526011602090815260409182902080546001600160a01b0319166001600160a01b0385169081179091558251858152918201527fdd9fea2fe1361d546c2bb487b53ae58d9745b2e73cf28408f5da6ad65d7ba3c19101610fa6565b613198613571565b6001600160a01b0316856001600160a01b031614806131be57506131be85610b7d613571565b6131da5760405162461bcd60e51b8152600401610c8c90615494565b6115c88585858585614055565b6131ef613571565b6001600160a01b0316836001600160a01b03161480613215575061321583610b7d613571565b6132315760405162461bcd60e51b8152600401610c8c90615494565b6115fc838383614181565b60003330141561329357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506132969050565b50335b90565b6132a38282612209565b61168b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556132da613571565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006113b9836001600160a01b038416614291565b606060006133428360026153f2565b61334d906002615352565b6001600160401b0381111561336457613364614929565b6040519080825280601f01601f19166020018201604052801561338e576020820181803683370190505b509050600360fc1b816000815181106133a9576133a9615463565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106133d8576133d8615463565b60200101906001600160f81b031916908160001a90535060006133fc8460026153f2565b613407906001615352565b90505b600181111561347f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061343b5761343b615463565b1a60f81b82828151811061345157613451615463565b60200101906001600160f81b031916908160001a90535060049490941c9361347881615535565b905061340a565b5083156113b95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c8c565b6134d88282612209565b1561168b576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916905561350d613571565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006113b9836001600160a01b0384166142e0565b6000610cba826143d3565b600061357b61323c565b905090565b805161168b90600490602084019061481c565b60006001600160a01b0386166135d75760405162461bcd60e51b815260206004820152600960248201526824a72fa9a4a3a722a960b91b6044820152606401610c8c565b60016135ea6135e587614413565b614490565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015613638573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60606004805461367090615307565b80601f016020809104026020016040519081016040528092919081815260200182805461369c90615307565b80156136e95780601f106136be576101008083540402835291602001916136e9565b820191906000526020600020905b8154815290600101906020018083116136cc57829003601f168201915b50505050509050919050565b6001600160a01b03841661371b5760405162461bcd60e51b8152600401610c8c9061554c565b815183511461373c5760405162461bcd60e51b8152600401610c8c9061558d565b6000613746613571565b9050613757816000878787876144c0565b60005b84518110156137f35783818151811061377557613775615463565b60200260200101516002600087848151811061379357613793615463565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546137db9190615352565b909155508190506137eb81615479565b91505061375a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516138449291906155d5565b60405180910390a46115c8816000878787876144ce565b815183511461387c5760405162461bcd60e51b8152600401610c8c9061558d565b6001600160a01b0384166138a25760405162461bcd60e51b8152600401610c8c906155fa565b60006138ac613571565b90506138bc8187878787876144c0565b60005b84518110156139a55760008582815181106138dc576138dc615463565b6020026020010151905060008583815181106138fa576138fa615463565b60209081029190910181015160008481526002835260408082206001600160a01b038e16835290935291909120549091508181101561394b5760405162461bcd60e51b8152600401610c8c9061563f565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061398a908490615352565b925050819055505050508061399e90615479565b90506138bf565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516139f59291906155d5565b60405180910390a4613a0b8187878787876144ce565b505050505050565b613a1d8282612209565b61168b57613a35816001600160a01b03166014613333565b613a40836020613333565b604051602001613a51929190615689565b60408051601f198184030181529082905262461bcd60e51b8252610c8c91600401614ab4565b613a818282613299565b60008281526001602052604090206115fc908261331e565b613aa382826134ce565b60008281526001602052604090206115fc9082613551565b60055460ff16613b045760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c8c565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613b37613571565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038416613b7a5760405162461bcd60e51b8152600401610c8c9061554c565b6000613b84613571565b9050613ba581600087613b968861462a565b613b9f8861462a565b876144c0565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290613bd7908490615352565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46115c881600087878787614675565b6001600160a01b038316613c5d5760405162461bcd60e51b8152600401610c8c906156fe565b8051825114613c7e5760405162461bcd60e51b8152600401610c8c9061558d565b6000613c88613571565b9050613ca8818560008686604051806020016040528060008152506144c0565b60005b8351811015613d70576000848281518110613cc857613cc8615463565b602002602001015190506000848381518110613ce657613ce6615463565b60209081029190910181015160008481526002835260408082206001600160a01b038c168352909352919091205490915081811015613d375760405162461bcd60e51b8152600401610c8c90615741565b60009283526002602090815260408085206001600160a01b038b1686529091529092209103905580613d6881615479565b915050613cab565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051613dc19291906155d5565b60405180910390a450505050565b60055460ff1615613e155760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c8c565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613b37613571565b60006113b98383614730565b60008160800151600314613e6d57506000919050565b8151633b9aca00111580613e895750633b9aca008260a0015110155b80613e9c5750633b9aca008260c0015110155b15613ea957506000919050565b60c082015115613ef1576020820151613ec457506000919050565b8160c001518260a001511180613edc575060a0820151155b15613ee957506000919050565b506001919050565b506000919050565b816001600160a01b0316836001600160a01b03161415613f6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610c8c565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000610cba825490565b80613fed613571565b6000828152600c60205260409020546001600160a01b039081169116146140265760405162461bcd60e51b8152600401610c8c9061529a565b506000908152600c6020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03841661407b5760405162461bcd60e51b8152600401610c8c906155fa565b6000614085613571565b9050614096818787613b968861462a565b60008481526002602090815260408083206001600160a01b038a168452909152902054838110156140d95760405162461bcd60e51b8152600401610c8c9061563f565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290614118908490615352565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4614178828888888888614675565b50505050505050565b6001600160a01b0383166141a75760405162461bcd60e51b8152600401610c8c906156fe565b60006141b1613571565b90506141e1818560006141c38761462a565b6141cc8761462a565b604051806020016040528060008152506144c0565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156142245760405162461bcd60e51b8152600401610c8c90615741565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60008181526001830160205260408120546142d857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cba565b506000610cba565b600081815260018301602052604081205480156143c957600061430460018361544c565b85549091506000906143189060019061544c565b905081811461437d57600086600001828154811061433857614338615463565b906000526020600020015490508087600001848154811061435b5761435b615463565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061438e5761438e615785565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cba565b6000915050610cba565b60006001600160e01b03198216636cdb3d1360e11b148061440457506001600160e01b031982166303a24d0760e21b145b80610cba5750610cba8261475a565b600060405180606001604052806025815260200161593c6025913980516020918201208351848301516040808701518051908601209051614473950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061449b60065490565b60405161190160f01b6020820152602281019190915260428101839052606201614473565b613a0b86868686868661477f565b6001600160a01b0384163b15613a0b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190614512908990899088908890889060040161579b565b6020604051808303816000875af192505050801561454d575060408051601f3d908101601f1916820190925261454a918101906157ed565b60015b6145fa5761455961580a565b806308c379a01415614593575061456e615825565b806145795750614595565b8060405162461bcd60e51b8152600401610c8c9190614ab4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610c8c565b6001600160e01b0319811663bc197c8160e01b146141785760405162461bcd60e51b8152600401610c8c906158ae565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061466457614664615463565b602090810291909101015292915050565b6001600160a01b0384163b15613a0b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906146b990899089908890889088906004016158f6565b6020604051808303816000875af19250505080156146f4575060408051601f3d908101601f191682019092526146f1918101906157ed565b60015b6147005761455961580a565b6001600160e01b0319811663f23a6e6160e01b146141785760405162461bcd60e51b8152600401610c8c906158ae565b600082600001828154811061474757614747615463565b9060005260206000200154905092915050565b60006001600160e01b03198216635a05180f60e01b1480610cba5750610cba826147e7565b60055460ff1615613a0b5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610c8c565b60006001600160e01b03198216637965db0b60e01b1480610cba57506301ffc9a760e01b6001600160e01b0319831614610cba565b82805461482890615307565b90600052602060002090601f01602090048101928261484a5760008555614890565b82601f1061486357805160ff1916838001178555614890565b82800160010185558215614890579182015b82811115614890578251825591602001919060010190614875565b5061489c9291506148a0565b5090565b5b8082111561489c57600081556001016148a1565b6001600160a01b0381168114610d9457600080fd5b600080604083850312156148dd57600080fd5b82356148e8816148b5565b946020939093013593505050565b6001600160e01b031981168114610d9457600080fd5b60006020828403121561491e57600080fd5b81356113b9816148f6565b634e487b7160e01b600052604160045260246000fd5b60e081018181106001600160401b038211171561495e5761495e614929565b60405250565b601f8201601f191681016001600160401b038111828210171561498957614989614929565b6040525050565b600082601f8301126149a157600080fd5b81356001600160401b038111156149ba576149ba614929565b6040516149d1601f8301601f191660200182614964565b8181528460208386010111156149e657600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614a1557600080fd5b81356001600160401b03811115614a2b57600080fd5b614a3784828501614990565b949350505050565b600060208284031215614a5157600080fd5b81356113b9816148b5565b60005b83811015614a77578181015183820152602001614a5f565b8381111561145e5750506000910152565b60008151808452614aa0816020860160208601614a5c565b601f01601f19169290920160200192915050565b6020815260006113b96020830184614a88565b600080600080600060a08688031215614adf57600080fd5b8535614aea816148b5565b945060208601356001600160401b03811115614b0557600080fd5b614b1188828901614990565b9450506040860135925060608601359150608086013560ff81168114614b3657600080fd5b809150509295509295909350565b600060208284031215614b5657600080fd5b5035919050565b60006001600160401b03821115614b7657614b76614929565b5060051b60200190565b600082601f830112614b9157600080fd5b81356020614b9e82614b5d565b604051614bab8282614964565b83815260059390931b8501820192828101915086841115614bcb57600080fd5b8286015b84811015614be65780358352918301918301614bcf565b509695505050505050565b60008060008060808587031215614c0757600080fd5b8435614c12816148b5565b935060208501356001600160401b0380821115614c2e57600080fd5b614c3a88838901614b80565b94506040870135915080821115614c5057600080fd5b614c5c88838901614b80565b93506060870135915080821115614c7257600080fd5b50614c7f87828801614990565b91505092959194509250565b60008060408385031215614c9e57600080fd5b50508035926020909101359150565b600080600080600060a08688031215614cc557600080fd5b8535614cd0816148b5565b94506020860135614ce0816148b5565b935060408601356001600160401b0380821115614cfc57600080fd5b614d0889838a01614b80565b94506060880135915080821115614d1e57600080fd5b614d2a89838a01614b80565b93506080880135915080821115614d4057600080fd5b50614d4d88828901614990565b9150509295509295909350565b60008060408385031215614d6d57600080fd5b823591506020830135614d7f816148b5565b809150509250929050565b60008060408385031215614d9d57600080fd5b8235915060208301356001600160401b03811115614dba57600080fd5b61151b85828601614990565b60008060008060008060c08789031215614ddf57600080fd5b863595506020870135614df1816148b5565b9450604087013593506060870135925060808701356001600160401b0380821115614e1b57600080fd5b614e278a838b01614990565b935060a0890135915080821115614e3d57600080fd5b50614e4a89828a01614990565b9150509295509295509295565b60008060408385031215614e6a57600080fd5b82356001600160401b0380821115614e8157600080fd5b818501915085601f830112614e9557600080fd5b81356020614ea282614b5d565b604051614eaf8282614964565b83815260059390931b8501820192828101915089841115614ecf57600080fd5b948201945b83861015614ef6578535614ee7816148b5565b82529482019490820190614ed4565b96505086013592505080821115614f0c57600080fd5b5061151b85828601614b80565b600081518084526020808501945080840160005b83811015614f4957815187529582019590820190600101614f2d565b509495945050505050565b6020815260006113b96020830184614f19565b600080600060608486031215614f7c57600080fd5b8335614f87816148b5565b925060208401356001600160401b0380821115614fa357600080fd5b614faf87838801614b80565b93506040860135915080821115614fc557600080fd5b50614fd286828701614b80565b9150509250925092565b60008060008060808587031215614ff257600080fd5b8435614ffd816148b5565b9350602085013592506040850135915060608501356001600160401b0381111561502657600080fd5b614c7f87828801614990565b60008060006060848603121561504757600080fd5b833592506020840135615059816148b5565b929592945050506040919091013590565b60008082840361010081121561507f57600080fd5b8335925060e0601f198201121561509557600080fd5b506040516150a28161493f565b602084013581526040840135602082015260608401356150c1816148b5565b604082015260808401356150d4816148b5565b8060608301525060a0840135608082015260c084013560a082015260e084013560c0820152809150509250929050565b6000806040838503121561511757600080fd5b8235615122816148b5565b915060208301358015158114614d7f57600080fd5b60008060006060848603121561514c57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561517657600080fd5b8235615181816148b5565b915060208301356001600160401b0381111561519c57600080fd5b61151b85828601614b80565b600080604083850312156151bb57600080fd5b82356151c6816148b5565b91506020830135614d7f816148b5565b600080600080600060a086880312156151ee57600080fd5b85356151f9816148b5565b94506020860135615209816148b5565b9350604086013592506060860135915060808601356001600160401b0381111561523257600080fd5b614d4d88828901614990565b60008060006060848603121561525357600080fd5b833561525e816148b5565b95602085013595506040909401359392505050565b6020808252600d908201526c27a7262cafa7a822a920aa27a960991b604082015260600190565b6020808252600c908201526b27a7262cafa1a922a0aa27a960a11b604082015260600190565b6020808252600a908201526927a7262cafa0a226a4a760b11b604082015260600190565b6020808252600990820152682727aa2fa0a226a4a760b91b604082015260600190565b600181811c9082168061531b57607f821691505b602082108114156113c057634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156153655761536561533c565b500190565b6001600160a01b0384811682528316602082015260606040820181905260009061539690830184614a88565b95945050505050565b600083516153b1818460208801614a5c565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516153e8818460208701614a5c565b9190910192915050565b600081600019048311821515161561540c5761540c61533c565b500290565b60008261542e57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561544557600080fd5b5051919050565b60008282101561545e5761545e61533c565b500390565b634e487b7160e01b600052603260045260246000fd5b600060001982141561548d5761548d61533c565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b602080825260049082015263495f5a3360e01b604082015260600190565b602080825260039082015262495f4160e81b604082015260600190565b60006020828403121561552a57600080fd5b81516113b9816148b5565b6000816155445761554461533c565b506000190190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006155e86040830185614f19565b82810360208401526153968185614f19565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516156c1816017850160208801614a5c565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516156f2816028840160208801614a5c565b01602801949350505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a0604082018190526000906157c790830186614f19565b82810360608401526157d98186614f19565b905082810360808401526112078185614a88565b6000602082840312156157ff57600080fd5b81516113b9816148f6565b600060033d11156132965760046000803e5060005160e01c90565b600060443d10156158335790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561586257505050505090565b828501915081518181111561587a5750505050505090565b843d87010160208285010111156158945750505050505090565b6158a360208286010187614964565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061593090830184614a88565b97965050505050505056fe4d6574615472616e73616374696f6e286e6f6e63652c66726f6d2c7369676e617475726529828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92965d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220f17f5dc421d13b6e5313ff221f18e8bf46dde4ae5618decd9bc1b76d99983ae564736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000025ba272695b064f33b843c32834f847255ff25dc000000000000000000000000f287d98a7b0823a49cfd20e250a251b97561c6ad00000000000000000000000046396fbadafd9354a13edd57e4f5173d3df0748a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000021557365722d67656e657261746564204d657461766572736573206f6e20526f7665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524d730000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : admin (address): 0x25BA272695b064f33b843C32834f847255ff25DC
Arg [1] : operator (address): 0xf287d98a7B0823a49Cfd20e250a251B97561c6Ad
Arg [2] : _parameterAdd (address): 0x46396FbADAFD9354a13EDd57E4f5173D3df0748a
Arg [3] : name (string): User-generated Metaverses on Rove
Arg [4] : symbol (string): RMs
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000025ba272695b064f33b843c32834f847255ff25dc
Arg [1] : 000000000000000000000000f287d98a7b0823a49cfd20e250a251b97561c6ad
Arg [2] : 00000000000000000000000046396fbadafd9354a13edd57e4f5173d3df0748a
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [6] : 557365722d67656e657261746564204d657461766572736573206f6e20526f76
Arg [7] : 6500000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 524d730000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.