Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 15977279 | 723 days ago | IN | 0 ETH | 0.16883717 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DropERC1155_OSRoyaltyFilter
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; // ========== External imports ========== import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; // ========== Internal imports ========== import "../openzeppelin-presets/metatx/ERC2771ContextUpgradeable.sol"; import "../lib/CurrencyTransferLib.sol"; // ========== Features ========== import "../extension/ContractMetadata.sol"; import "../extension/PlatformFee.sol"; import "../extension/Royalty.sol"; import "../extension/PrimarySale.sol"; import "../extension/Ownable.sol"; import "../extension/LazyMint.sol"; import "../extension/PermissionsEnumerable.sol"; import "../extension/Drop1155.sol"; import "../extension/DefaultOperatorFiltererUpgradeable.sol"; contract DropERC1155_OSRoyaltyFilter is Initializable, ContractMetadata, PlatformFee, Royalty, PrimarySale, Ownable, LazyMint, PermissionsEnumerable, Drop1155, ERC2771ContextUpgradeable, MulticallUpgradeable, DefaultOperatorFiltererUpgradeable, ERC1155Upgradeable { using StringsUpgradeable for uint256; /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ // Token name string public name; // Token symbol string public symbol; /// @dev Only transfers to or from TRANSFER_ROLE holders are valid, when transfers are restricted. bytes32 private transferRole; /// @dev Only MINTER_ROLE holders can sign off on `MintRequest`s and lazy mint tokens. bytes32 private minterRole; /// @dev Max bps in the thirdweb system. uint256 private constant MAX_BPS = 10_000; /*/////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ /// @dev Mapping from token ID => total circulating supply of tokens with that ID. mapping(uint256 => uint256) public totalSupply; /// @dev Mapping from token ID => maximum possible total circulating supply of tokens with that ID. mapping(uint256 => uint256) public maxTotalSupply; /// @dev Mapping from token ID => the address of the recipient of primary sales. mapping(uint256 => address) public saleRecipient; /*/////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////*/ /// @dev Emitted when the global max supply of a token is updated. event MaxTotalSupplyUpdated(uint256 tokenId, uint256 maxTotalSupply); /// @dev Emitted when the sale recipient for a particular tokenId is updated. event SaleRecipientForTokenUpdated(uint256 indexed tokenId, address saleRecipient); /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor() initializer {} /// @dev Initiliazes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _name, string memory _symbol, string memory _contractURI, address[] memory _trustedForwarders, address _saleRecipient, address _royaltyRecipient, uint128 _royaltyBps, uint128 _platformFeeBps, address _platformFeeRecipient ) external initializer { bytes32 _transferRole = keccak256("TRANSFER_ROLE"); bytes32 _minterRole = keccak256("MINTER_ROLE"); // Initialize inherited contracts, most base-like -> most derived. __ERC2771Context_init(_trustedForwarders); __ERC1155_init_unchained(""); __DefaultOperatorFilterer_init(); // Initialize this contract's state. _setupContractURI(_contractURI); _setupOwner(_defaultAdmin); _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(_minterRole, _defaultAdmin); _setupRole(_transferRole, _defaultAdmin); _setupRole(_transferRole, address(0)); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; minterRole = _minterRole; name = _name; symbol = _symbol; } /*/////////////////////////////////////////////////////////////// ERC 165 / 1155 / 2981 logic //////////////////////////////////////////////////////////////*/ /// @dev Returns the uri for a given tokenId. function uri(uint256 _tokenId) public view override returns (string memory) { string memory batchUri = _getBaseURI(_tokenId); return string(abi.encodePacked(batchUri, _tokenId.toString())); } /// @dev See ERC 165 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155Upgradeable, IERC165) returns (bool) { return super.supportsInterface(interfaceId) || type(IERC2981Upgradeable).interfaceId == interfaceId; } /*/////////////////////////////////////////////////////////////// Setter functions //////////////////////////////////////////////////////////////*/ /// @dev Lets a module admin set a max total supply for token. function setMaxTotalSupply(uint256 _tokenId, uint256 _maxTotalSupply) external onlyRole(DEFAULT_ADMIN_ROLE) { maxTotalSupply[_tokenId] = _maxTotalSupply; emit MaxTotalSupplyUpdated(_tokenId, _maxTotalSupply); } /// @dev Lets a contract admin set the recipient for all primary sales. function setSaleRecipientForToken(uint256 _tokenId, address _saleRecipient) external onlyRole(DEFAULT_ADMIN_ROLE) { saleRecipient[_tokenId] = _saleRecipient; emit SaleRecipientForTokenUpdated(_tokenId, _saleRecipient); } /*/////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address, uint256 _quantity, address, uint256, AllowlistProof calldata, bytes memory ) internal view override { require( maxTotalSupply[_tokenId] == 0 || totalSupply[_tokenId] + _quantity <= maxTotalSupply[_tokenId], "exceed max total supply" ); } /// @dev Collects and distributes the primary sale value of NFTs being claimed. function collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal override { if (_pricePerToken == 0) { return; } (address platformFeeRecipient, uint16 platformFeeBps) = getPlatformFeeInfo(); address _saleRecipient = _primarySaleRecipient == address(0) ? (saleRecipient[_tokenId] == address(0) ? primarySaleRecipient() : saleRecipient[_tokenId]) : _primarySaleRecipient; uint256 totalPrice = _quantityToClaim * _pricePerToken; uint256 platformFees = (totalPrice * platformFeeBps) / MAX_BPS; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { if (msg.value != totalPrice) { revert("!Price"); } } CurrencyTransferLib.transferCurrency(_currency, _msgSender(), platformFeeRecipient, platformFees); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), _saleRecipient, totalPrice - platformFees); } /// @dev Transfers the NFTs being claimed. function transferTokensOnClaim( address _to, uint256 _tokenId, uint256 _quantityBeingClaimed ) internal override { _mint(_to, _tokenId, _quantityBeingClaimed, ""); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether owner can be set in the given execution context. function _canSetOwner() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Returns whether lazy minting can be done in the given execution context. function _canLazyMint() internal view virtual override returns (bool) { return hasRole(minterRole, _msgSender()); } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ /// @dev The tokenId of the next NFT that will be minted / lazy minted. function nextTokenIdToMint() external view returns (uint256) { return nextTokenIdToLazyMint; } /// @dev Lets a token owner burn multiple tokens they own at once (i.e. destroy for good) 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); } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ 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); // if transfer is restricted on the contract, we still want to allow burning and minting if (!hasRole(transferRole, address(0)) && from != address(0) && to != address(0)) { require(hasRole(transferRole, from) || hasRole(transferRole, to), "restricted to TRANSFER_ROLE holders."); } if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] -= amounts[i]; } } } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public override onlyAllowedOperator(from) { super.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 override onlyAllowedOperator(from) { super.safeBatchTransferFrom(from, to, ids, amounts, data); } function _dropMsgSender() internal view virtual override returns (address) { return _msgSender(); } function _msgSender() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.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 IERC2981Upgradeable is IERC165Upgradeable { /** * @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 paid 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 (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155Upgradeable.sol"; import "./IERC1155ReceiverUpgradeable.sol"; import "./extensions/IERC1155MetadataURIUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable { using AddressUpgradeable 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}. */ function __ERC1155_init(string memory uri_) internal onlyInitializing { __ERC1155_init_unchained(uri_); } function __ERC1155_init_unchained(string memory uri_) internal onlyInitializing { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC1155Upgradeable).interfaceId || interfaceId == type(IERC1155MetadataURIUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner 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: caller is not token 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(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155ReceiverUpgradeable.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 IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155ReceiverUpgradeable.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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[47] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155ReceiverUpgradeable is IERC165Upgradeable { /** * @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 (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.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 IERC1155Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155Upgradeable.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 IERC1155MetadataURIUpgradeable is IERC1155Upgradeable { /** * @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 (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./AddressUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract MulticallUpgradeable is Initializable { function __Multicall_init() internal onlyInitializing { } function __Multicall_init_unchained() internal onlyInitializing { } /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = _functionDelegateCall(address(this), data[i]); } return results; } /** * @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) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// 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 IERC165Upgradeable { /** * @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 v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * 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 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: Apache 2.0 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: Apache-2.0 pragma solidity ^0.8.0; /** * @title Batch-mint Metadata * @notice The `BatchMintMetadata` is a contract extension for any base NFT contract. It lets the smart contract * using this extension set metadata for `n` number of NFTs all at once. This is enabled by storing a single * base URI for a batch of `n` NFTs, where the metadata for each NFT in a relevant batch is `baseURI/tokenId`. */ contract BatchMintMetadata { /// @dev Largest tokenId of each batch of tokens with the same baseURI. uint256[] private batchIds; /// @dev Mapping from id of a batch of tokens => to base URI for the respective batch of tokens. mapping(uint256 => string) private baseURI; /** * @notice Returns the count of batches of NFTs. * @dev Each batch of tokens has an in ID and an associated `baseURI`. * See {batchIds}. */ function getBaseURICount() public view returns (uint256) { return batchIds.length; } /** * @notice Returns the ID for the batch of tokens the given tokenId belongs to. * @dev See {getBaseURICount}. * @param _index ID of a token. */ function getBatchIdAtIndex(uint256 _index) public view returns (uint256) { if (_index >= getBaseURICount()) { revert("Invalid index"); } return batchIds[_index]; } /// @dev Returns the id for the batch of tokens the given tokenId belongs to. function _getBatchId(uint256 _tokenId) internal view returns (uint256 batchId, uint256 index) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { index = i; batchId = indices[i]; return (batchId, index); } } revert("Invalid tokenId"); } /// @dev Returns the baseURI for a token. The intended metadata URI for the token is baseURI + tokenId. function _getBaseURI(uint256 _tokenId) internal view returns (string memory) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { return baseURI[indices[i]]; } } revert("Invalid tokenId"); } /// @dev Sets the base URI for the batch of tokens with the given batchId. function _setBaseURI(uint256 _batchId, string memory _baseURI) internal { baseURI[_batchId] = _baseURI; } /// @dev Mints a batch of tokenIds and associates a common baseURI to all those Ids. function _batchMintMetadata( uint256 _startId, uint256 _amountToMint, string memory _baseURIForTokens ) internal returns (uint256 nextTokenIdToMint, uint256 batchId) { batchId = _startId + _amountToMint; nextTokenIdToMint = batchId; batchIds.push(batchId); baseURI[batchId] = _baseURIForTokens; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert("Not authorized"); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 // Credit; OpenSea pragma solidity ^0.8.0; import { OperatorFiltererUpgradeable } from "./OperatorFiltererUpgradeable.sol"; abstract contract DefaultOperatorFiltererUpgradeable is OperatorFiltererUpgradeable { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); function __DefaultOperatorFilterer_init() internal { OperatorFiltererUpgradeable.__OperatorFilterer_init(DEFAULT_SUBSCRIPTION, true); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IDrop1155.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop1155 is IDrop1155 { /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Mapping from token ID => the set of all claim conditions, at any given moment, for tokens of the token ID. mapping(uint256 => ClaimConditionList) public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(_tokenId); verifyClaim( activeConditionId, _dropMsgSender(), _tokenId, _quantity, _currency, _pricePerToken, _allowlistProof ); // Update contract state. claimCondition[_tokenId].conditions[activeConditionId].supplyClaimed += _quantity; claimCondition[_tokenId].supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. collectPriceOnClaim(_tokenId, address(0), _quantity, _currency, _pricePerToken); // Mint the relevant NFTs to claimer. transferTokensOnClaim(_receiver, _tokenId, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, _tokenId, _quantity); _afterClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( uint256 _tokenId, ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert("Not authorized"); } ClaimConditionList storage conditionList = claimCondition[_tokenId]; uint256 existingStartIndex = conditionList.currentStartId; uint256 existingPhaseCount = conditionList.count; /** * The mapping `supplyClaimedByWallet` uses a claim condition's UID as a key. * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`, effectively resetting the restrictions on claims expressed * by `supplyClaimedByWallet`. */ uint256 newStartIndex = existingStartIndex; if (_resetClaimEligibility) { newStartIndex = existingStartIndex + existingPhaseCount; } conditionList.count = _conditions.length; conditionList.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = conditionList.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert("max supply claimed"); } conditionList.conditions[newStartIndex + i] = _conditions[i]; conditionList.conditions[newStartIndex + i].supplyClaimed = supplyClaimedAlready; lastConditionStartTimestamp = _conditions[i].startTimestamp; } /** * Gas refunds (as much as possible) * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`. So, we delete claim conditions with UID < `newStartIndex`. * * If `_resetClaimEligibility == false`, and there are more existing claim conditions * than in `_conditions`, we delete the existing claim conditions that don't get replaced * by the conditions in `_conditions`. */ if (_resetClaimEligibility) { for (uint256 i = existingStartIndex; i < newStartIndex; i++) { delete conditionList.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete conditionList.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_tokenId, _conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition[_tokenId].conditions[_conditionId]; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert("!PriceOrCurrency"); } if (_quantity == 0 || (_quantity + supplyClaimedByWallet > claimLimit)) { revert("!Qty"); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert("!MaxSupply"); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert("cant claim yet"); } } /// @dev At any given moment, returns the uid for the active claim condition. function getActiveClaimConditionId(uint256 _tokenId) public view returns (uint256) { ClaimConditionList storage conditionList = claimCondition[_tokenId]; for (uint256 i = conditionList.currentStartId + conditionList.count; i > conditionList.currentStartId; i--) { if (block.timestamp >= conditionList.conditions[i - 1].startTimestamp) { return i - 1; } } revert("!CONDITION."); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById(uint256 _tokenId, uint256 _conditionId) external view returns (ClaimCondition memory condition) { condition = claimCondition[_tokenId].conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _tokenId, uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /*/////////////////////////////////////////////////////////////// Virtual functions: to be implemented in derived contract //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function transferTokensOnClaim( address _to, uint256 _tokenId, uint256 _quantityBeingClaimed ) internal virtual; /// @dev Determine what wallet can update claim conditions function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/ILazyMint.sol"; import "./BatchMintMetadata.sol"; /** * The `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ abstract contract LazyMint is ILazyMint, BatchMintMetadata { /// @notice The tokenId assigned to the next new NFT to be lazy minted. uint256 internal nextTokenIdToLazyMint; /** * @notice Lets an authorized address lazy mint a given amount of NFTs. * * @param _amount The number of NFTs to lazy mint. * @param _baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * @param _data Additional bytes data to be used at the discretion of the consumer of the contract. * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 _amount, string calldata _baseURIForTokens, bytes calldata _data ) public virtual override returns (uint256 batchId) { if (!_canLazyMint()) { revert("Not authorized"); } if (_amount == 0) { revert("0 amt"); } uint256 startId = nextTokenIdToLazyMint; (nextTokenIdToLazyMint, batchId) = _batchMintMetadata(startId, _amount, _baseURIForTokens); emit TokensLazyMinted(startId, startId + _amount - 1, _baseURIForTokens, _data); return batchId; } /// @dev Returns whether lazy minting can be performed in the given execution context. function _canLazyMint() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 // Credit; OpenSea pragma solidity ^0.8.0; import { IOperatorFilterRegistry } from "./interface/IOperatorFilterRegistry.sol"; abstract contract OperatorFiltererUpgradeable { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); function __OperatorFilterer_init(address subscriptionOrRegistrantToCopy, bool subscribe) internal { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isRegistered(address(this))) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !(operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from)) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IOwnable.sol"; /** * @title Ownable * @notice Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ abstract contract Ownable is IOwnable { /// @dev Owner of the contract (purpose: OpenSea compatibility) address private _owner; /// @dev Reverts if caller is not the owner. modifier onlyOwner() { if (msg.sender != _owner) { revert("Not authorized"); } _; } /** * @notice Returns the owner of the contract. */ function owner() public view override returns (address) { return _owner; } /** * @notice Lets an authorized wallet set a new owner for the contract. * @param _newOwner The address to set as the new owner of the contract. */ function setOwner(address _newOwner) external override { if (!_canSetOwner()) { revert("Not authorized"); } _setupOwner(_newOwner); } /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin. function _setupOwner(address _newOwner) internal { address _prevOwner = _owner; _owner = _newOwner; emit OwnerUpdated(_prevOwner, _newOwner); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPermissions.sol"; import "../lib/TWStrings.sol"; /** * @title Permissions * @dev This contracts provides extending-contracts with role-based access control mechanisms */ contract Permissions is IPermissions { /// @dev Map from keccak256 hash of a role => a map from address => whether address has role. mapping(bytes32 => mapping(address => bool)) private _hasRole; /// @dev Map from keccak256 hash of a role to role admin. See {getRoleAdmin}. mapping(bytes32 => bytes32) private _getRoleAdmin; /// @dev Default admin role for all roles. Only accounts with this role can grant/revoke other roles. bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @dev Modifier that checks if an account has the specified role; reverts otherwise. modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @notice Checks whether an account has a particular role. * @dev Returns `true` if `account` has been granted `role`. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _hasRole[role][account]; } /** * @notice Checks whether an account has a particular role; * role restrictions can be swtiched on and off. * * @dev Returns `true` if `account` has been granted `role`. * Role restrictions can be swtiched on and off: * - If address(0) has ROLE, then the ROLE restrictions * don't apply. * - If address(0) does not have ROLE, then the ROLE * restrictions will apply. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRoleWithSwitch(bytes32 role, address account) public view returns (bool) { if (!_hasRole[role][address(0)]) { return _hasRole[role][account]; } return true; } /** * @notice Returns the admin role that controls the specified role. * @dev See {grantRole} and {revokeRole}. * To change a role's admin, use {_setRoleAdmin}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function getRoleAdmin(bytes32 role) external view override returns (bytes32) { return _getRoleAdmin[role]; } /** * @notice Grants a role to an account, if not previously granted. * @dev Caller must have admin role for the `role`. * Emits {RoleGranted Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account to which the role is being granted. */ function grantRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); if (_hasRole[role][account]) { revert("Can only grant to non holders"); } _setupRole(role, account); } /** * @notice Revokes role from an account. * @dev Caller must have admin role for the `role`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function revokeRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); _revokeRole(role, account); } /** * @notice Revokes role from the account. * @dev Caller must have the `role`, with caller being the same as `account`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function renounceRole(bytes32 role, address account) public virtual override { if (msg.sender != account) { revert("Can only renounce for self"); } _revokeRole(role, account); } /// @dev Sets `adminRole` as `role`'s admin role. function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = _getRoleAdmin[role]; _getRoleAdmin[role] = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /// @dev Sets up `role` for `account` function _setupRole(bytes32 role, address account) internal virtual { _hasRole[role][account] = true; emit RoleGranted(role, account, msg.sender); } /// @dev Revokes `role` from `account` function _revokeRole(bytes32 role, address account) internal virtual { _checkRole(role, account); delete _hasRole[role][account]; emit RoleRevoked(role, account, msg.sender); } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRole(bytes32 role, address account) internal view virtual { if (!_hasRole[role][account]) { revert( string( abi.encodePacked( "Permissions: account ", TWStrings.toHexString(uint160(account), 20), " is missing role ", TWStrings.toHexString(uint256(role), 32) ) ) ); } } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRoleWithSwitch(bytes32 role, address account) internal view virtual { if (!hasRoleWithSwitch(role, account)) { revert( string( abi.encodePacked( "Permissions: account ", TWStrings.toHexString(uint160(account), 20), " is missing role ", TWStrings.toHexString(uint256(role), 32) ) ) ); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPermissionsEnumerable.sol"; import "./Permissions.sol"; /** * @title PermissionsEnumerable * @dev This contracts provides extending-contracts with role-based access control mechanisms. * Also provides interfaces to view all members with a given role, and total count of members. */ contract PermissionsEnumerable is IPermissionsEnumerable, Permissions { /** * @notice A data structure to store data of members for a given role. * * @param index Current index in the list of accounts that have a role. * @param members map from index => address of account that has a role * @param indexOf map from address => index which the account has. */ struct RoleMembers { uint256 index; mapping(uint256 => address) members; mapping(address => uint256) indexOf; } /// @dev map from keccak256 hash of a role to its members' data. See {RoleMembers}. mapping(bytes32 => RoleMembers) private roleMembers; /** * @notice Returns the role-member from a list of members for a role, * at a given index. * @dev Returns `member` who has `role`, at `index` of role-members list. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param index Index in list of current members for the role. * * @return member Address of account that has `role` */ function getRoleMember(bytes32 role, uint256 index) external view override returns (address member) { uint256 currentIndex = roleMembers[role].index; uint256 check; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { if (check == index) { member = roleMembers[role].members[i]; return member; } check += 1; } else if (hasRole(role, address(0)) && i == roleMembers[role].indexOf[address(0)]) { check += 1; } } } /** * @notice Returns total number of accounts that have a role. * @dev Returns `count` of accounts that have `role`. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * * @return count Total number of accounts that have `role` */ function getRoleMemberCount(bytes32 role) external view override returns (uint256 count) { uint256 currentIndex = roleMembers[role].index; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { count += 1; } } if (hasRole(role, address(0))) { count += 1; } } /// @dev Revokes `role` from `account`, and removes `account` from {roleMembers} /// See {_removeMember} function _revokeRole(bytes32 role, address account) internal override { super._revokeRole(role, account); _removeMember(role, account); } /// @dev Grants `role` to `account`, and adds `account` to {roleMembers} /// See {_addMember} function _setupRole(bytes32 role, address account) internal override { super._setupRole(role, account); _addMember(role, account); } /// @dev adds `account` to {roleMembers}, for `role` function _addMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].index; roleMembers[role].index += 1; roleMembers[role].members[idx] = account; roleMembers[role].indexOf[account] = idx; } /// @dev removes `account` from {roleMembers}, for `role` function _removeMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].indexOf[account]; delete roleMembers[role].members[idx]; delete roleMembers[role].indexOf[account]; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPlatformFee.sol"; /** * @title Platform Fee * @notice Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ abstract contract PlatformFee is IPlatformFee { /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The % of primary sales collected as platform fees. uint16 private platformFeeBps; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /** * @notice Updates the platform fee recipient and bps. * @dev Caller should be authorized to set platform fee info. * See {_canSetPlatformFeeInfo}. * Emits {PlatformFeeInfoUpdated Event}; See {_setupPlatformFeeInfo}. * * @param _platformFeeRecipient Address to be set as new platformFeeRecipient. * @param _platformFeeBps Updated platformFeeBps. */ function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external override { if (!_canSetPlatformFeeInfo()) { revert("Not authorized"); } _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); } /// @dev Lets a contract admin update the platform fee recipient and bps function _setupPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) internal { if (_platformFeeBps > 10_000) { revert("Exceeds max bps"); } platformFeeBps = uint16(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @dev Returns whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert("Not authorized"); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IRoyalty.sol"; /** * @title Royalty * @notice Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * @dev The `Royalty` contract is ERC2981 compliant. */ abstract contract Royalty is IRoyalty { /// @dev The (default) address that receives all royalty value. address private royaltyRecipient; /// @dev The (default) % of a sale to take as royalty (in basis points). uint16 private royaltyBps; /// @dev Token ID => royalty recipient and bps for token mapping(uint256 => RoyaltyInfo) private royaltyInfoForToken; /** * @notice View royalty info for a given token and sale price. * @dev Returns royalty amount and recipient for `tokenId` and `salePrice`. * @param tokenId The tokenID of the NFT for which to query royalty info. * @param salePrice Sale price of the token. * * @return receiver Address of royalty recipient account. * @return royaltyAmount Royalty amount calculated at current royaltyBps value. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view virtual override returns (address receiver, uint256 royaltyAmount) { (address recipient, uint256 bps) = getRoyaltyInfoForToken(tokenId); receiver = recipient; royaltyAmount = (salePrice * bps) / 10_000; } /** * @notice View royalty info for a given token. * @dev Returns royalty recipient and bps for `_tokenId`. * @param _tokenId The tokenID of the NFT for which to query royalty info. */ function getRoyaltyInfoForToken(uint256 _tokenId) public view override returns (address, uint16) { RoyaltyInfo memory royaltyForToken = royaltyInfoForToken[_tokenId]; return royaltyForToken.recipient == address(0) ? (royaltyRecipient, uint16(royaltyBps)) : (royaltyForToken.recipient, uint16(royaltyForToken.bps)); } /** * @notice Returns the defualt royalty recipient and BPS for this contract's NFTs. */ function getDefaultRoyaltyInfo() external view override returns (address, uint16) { return (royaltyRecipient, uint16(royaltyBps)); } /** * @notice Updates default royalty recipient and bps. * @dev Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {DefaultRoyalty Event}; See {_setupDefaultRoyaltyInfo}. * * @param _royaltyRecipient Address to be set as default royalty recipient. * @param _royaltyBps Updated royalty bps. */ function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external override { if (!_canSetRoyaltyInfo()) { revert("Not authorized"); } _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); } /// @dev Lets a contract admin update the default royalty recipient and bps. function _setupDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) internal { if (_royaltyBps > 10_000) { revert("Exceeds max bps"); } royaltyRecipient = _royaltyRecipient; royaltyBps = uint16(_royaltyBps); emit DefaultRoyalty(_royaltyRecipient, _royaltyBps); } /** * @notice Updates default royalty recipient and bps for a particular token. * @dev Sets royalty info for `_tokenId`. Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {RoyaltyForToken Event}; See {_setupRoyaltyInfoForToken}. * * @param _recipient Address to be set as royalty recipient for given token Id. * @param _bps Updated royalty bps for the token Id. */ function setRoyaltyInfoForToken( uint256 _tokenId, address _recipient, uint256 _bps ) external override { if (!_canSetRoyaltyInfo()) { revert("Not authorized"); } _setupRoyaltyInfoForToken(_tokenId, _recipient, _bps); } /// @dev Lets a contract admin set the royalty recipient and bps for a particular token Id. function _setupRoyaltyInfoForToken( uint256 _tokenId, address _recipient, uint256 _bps ) internal { if (_bps > 10_000) { revert("Exceeds max bps"); } royaltyInfoForToken[_tokenId] = RoyaltyInfo({ recipient: _recipient, bps: _bps }); emit RoyaltyForToken(_tokenId, _recipient, _bps); } /// @dev Returns whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./IClaimCondition.sol"; /** * The interface `IClaimConditionMultiPhase` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimConditionMultiPhase is IClaimCondition { /** * @notice The set of all claim conditions, at any given moment. * Claim Phase ID = [currentStartId, currentStartId + length - 1]; * * @param currentStartId The uid for the first claim condition amongst the current set of * claim conditions. The uid for each next claim condition is one * more than the previous claim condition's uid. * * @param count The total number of phases / claim conditions in the list * of claim conditions. * * @param conditions The claim conditions at a given uid. Claim conditions * are ordered in an ascending order by their `startTimestamp`. * * @param supplyClaimedByWallet Map from a claim condition uid and account to supply claimed by account. */ struct ClaimConditionList { uint256 currentStartId; uint256 count; mapping(uint256 => ClaimCondition) conditions; mapping(uint256 => mapping(address => uint256)) supplyClaimedByWallet; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop1155` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDrop1155 is IClaimConditionMultiPhase { /** * @param proof Prood of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 tokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(uint256 indexed tokenId, ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param tokenId The tokenId of the NFT to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 tokenId, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param tokenId The token ID for which to set mint conditions. * @param phases Claim conditions in ascending order by `startTimestamp`. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. * */ function setClaimConditions( uint256 tokenId, ClaimCondition[] calldata phases, bool resetClaimEligibility ) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ interface ILazyMint { /// @dev Emitted when tokens are lazy minted. event TokensLazyMinted(uint256 indexed startTokenId, uint256 endTokenId, string baseURI, bytes encryptedBaseURI); /** * @notice Lazy mints a given amount of NFTs. * * @param amount The number of NFTs to lazy mint. * * @param baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * * @param extraData Additional bytes data to be used at the discretion of the consumer of the contract. * * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 amount, string calldata baseURIForTokens, bytes calldata extraData ) external returns (uint256 batchId); }
// SPDX-License-Identifier: Apache 2.0 // Credit: OpenSea pragma solidity ^0.8.0; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ interface IOwnable { /// @dev Returns the owner of the contract. function owner() external view returns (address); /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external; /// @dev Emitted when a new Owner is set. event OwnerUpdated(address indexed prevOwner, address indexed newOwner); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IPermissions { /** * @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: Apache-2.0 pragma solidity ^0.8.0; import "./IPermissions.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IPermissionsEnumerable is IPermissions { /** * @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 * [forum post](https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296) * 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: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ interface IPlatformFee { /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address indexed platformFeeRecipient, uint256 platformFeeBps); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "../../eip/interface/IERC2981.sol"; /** * Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * The `Royalty` contract is ERC2981 compliant. */ interface IRoyalty is IERC2981 { struct RoyaltyInfo { address recipient; uint256 bps; } /// @dev Returns the royalty recipient and fee bps. function getDefaultRoyaltyInfo() external view returns (address, uint16); /// @dev Lets a module admin update the royalty bps and recipient. function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external; /// @dev Lets a module admin set the royalty recipient for a particular token Id. function setRoyaltyInfoForToken( uint256 tokenId, address recipient, uint256 bps ) external; /// @dev Returns the royalty recipient for a particular token Id. function getRoyaltyInfoForToken(uint256 tokenId) external view returns (address, uint16); /// @dev Emitted when royalty info is updated. event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps); /// @dev Emitted when royalty recipient for tokenId is set event RoyaltyForToken(uint256 indexed tokenId, address indexed royaltyRecipient, uint256 royaltyBps); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // Helper interfaces import { IWETH } from "../interfaces/IWETH.sol"; import "../openzeppelin-presets/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency( address _currency, address _from, address _to, uint256 _amount ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth require(_amount == msg.value, "msg.value != amount"); IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20( address _currency, address _from, address _to, uint256 _amount ) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); require(success, "native token transfer failed"); } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper( address to, uint256 value, address _nativeTokenWrapper ) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: MIT // Modified from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.0/contracts/utils/cryptography/MerkleProof.sol // Copied from https://github.com/ensdomains/governance/blob/master/contracts/MerkleProof.sol pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * Source: https://github.com/ensdomains/governance/blob/master/contracts/MerkleProof.sol */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library TWAddress { /** * @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. * * [EIP1884](https://eips.ethereum.org/EIPS/eip-1884) 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library TWStrings { 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.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../eip/interface/IERC20.sol"; import "../../../../lib/TWAddress.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using TWAddress for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
{ "optimizer": { "enabled": true, "runs": 1 }, "evmVersion": "london", "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition[]","name":"claimConditions","type":"tuple[]"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRoyaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRoyaltyBps","type":"uint256"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"name":"MaxTotalSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyForToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"saleRecipient","type":"address"}],"name":"SaleRecipientForTokenUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimConditionIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"bytes","name":"encryptedBaseURI","type":"bytes"}],"name":"TokensLazyMinted","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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURICount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getBatchIdAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"}],"name":"getClaimConditionById","outputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"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":"member","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyInfoForToken","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRoleWithSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_saleRecipient","type":"address"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint128","name":"_royaltyBps","type":"uint128"},{"internalType":"uint128","name":"_platformFeeBps","type":"uint128"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_baseURIForTokens","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"lazyMint","outputs":[{"internalType":"uint256","name":"batchId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleRecipient","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":"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":"uint256","name":"","type":"uint256"}],"name":"saleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition[]","name":"_conditions","type":"tuple[]"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"setRoyaltyInfoForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setSaleRecipientForToken","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600054610100900460ff1615808015620000335750600054600160ff909116105b8062000063575062000050306200013d60201b620025241760201c565b15801562000063575060005460ff166001145b620000cb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b6000805460ff191660011790558015620000ef576000805461ff0019166101001790555b801562000136576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b506200014c565b6001600160a01b03163b151590565b615c0c806200015c6000396000f3fe60806040526004361061024e5760003560e01c8062fdd58e1461025357806301ffc9a71461028657806306fdde03146102b6578063079fe40e146102d85780630e89341c146102fa57806313af40351461031a578063183718d11461033c5780631e7ac4881461035c5780632419f51b1461037c578063248a9ca31461039c57806324aaffaa146103c957806329c49b9b146103f75780632a55205a146104175780632eb2c2d6146104455780632f2ff15d1461046557806336568abe146104855780633b1475a7146104a55780634cc157df146104ba5780634e1273f4146104fc578063572b6c051461052957806357bc3d78146105495780635811ddab1461055c5780635ab063e8146105a9578063600dd5ea146105c957806363b45e2d146105e95780636b20c454146105fe5780636f4f28371461061e57806387198cf21461063e5780638da5cb5b1461065e5780639010d07c1461067c57806391d148541461069c578063938e3d7b146106bc57806395d89b41146106dc5780639bcf7a15146106f1578063a217fddf14610711578063a22cb46514610726578063a32fa5b314610746578063ac9650d814610766578063b24f2d3914610793578063bd85b039146107be578063c7337d6b146107ec578063ca15c87314610823578063d37c353b14610843578063d45573f614610863578063d45b28d714610878578063d547741f146108a5578063e1591634146108c5578063e8a3d485146108e5578063e9703d25146108fa578063e985e9c51461093c578063ea1def9c14610985578063f242432a146109a5575b600080fd5b34801561025f57600080fd5b5061027361026e3660046146ae565b6109c5565b6040519081526020015b60405180910390f35b34801561029257600080fd5b506102a66102a13660046146f0565b610a60565b604051901515815260200161027d565b3480156102c257600080fd5b506102cb610a88565b60405161027d9190614765565b3480156102e457600080fd5b506102ed610b17565b60405161027d9190614778565b34801561030657600080fd5b506102cb61031536600461478c565b610b26565b34801561032657600080fd5b5061033a6103353660046147a5565b610b67565b005b34801561034857600080fd5b5061033a61035736600461481b565b610b97565b34801561036857600080fd5b5061033a6103773660046146ae565b610ef7565b34801561038857600080fd5b5061027361039736600461478c565b610f29565b3480156103a857600080fd5b506102736103b736600461478c565b6000908152600b602052604090205490565b3480156103d557600080fd5b506102736103e436600461478c565b61010d6020526000908152604090205481565b34801561040357600080fd5b5061033a610412366004614879565b610f97565b34801561042357600080fd5b506104376104323660046148a9565b61100a565b60405161027d9291906148cb565b34801561045157600080fd5b5061033a610460366004614a2d565b611047565b34801561047157600080fd5b5061033a610480366004614879565b6111a3565b34801561049157600080fd5b5061033a6104a0366004614879565b611239565b3480156104b157600080fd5b50600954610273565b3480156104c657600080fd5b506104da6104d536600461478c565b611298565b604080516001600160a01b03909316835261ffff90911660208301520161027d565b34801561050857600080fd5b5061051c610517366004614b49565b611303565b60405161027d9190614be7565b34801561053557600080fd5b506102a66105443660046147a5565b61142c565b61033a610557366004614c0c565b61144a565b34801561056857600080fd5b50610273610577366004614cb1565b6000928352600d60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b3480156105b557600080fd5b506102736105c436600461478c565b611584565b3480156105d557600080fd5b5061033a6105e43660046146ae565b611635565b3480156105f557600080fd5b50600754610273565b34801561060a57600080fd5b5061033a610619366004614cea565b611663565b34801561062a57600080fd5b5061033a6106393660046147a5565b611700565b34801561064a57600080fd5b5061033a6106593660046148a9565b61172d565b34801561066a57600080fd5b506006546001600160a01b03166102ed565b34801561068857600080fd5b506102ed6106973660046148a9565b61178a565b3480156106a857600080fd5b506102a66106b7366004614879565b611879565b3480156106c857600080fd5b5061033a6106d7366004614d5f565b6118a4565b3480156106e857600080fd5b506102cb6118d1565b3480156106fd57600080fd5b5061033a61070c366004614d93565b6118df565b34801561071d57600080fd5b50610273600081565b34801561073257600080fd5b5061033a610741366004614dcb565b61190e565b34801561075257600080fd5b506102a6610761366004614879565b611920565b34801561077257600080fd5b50610786610781366004614df9565b611976565b60405161027d9190614e3a565b34801561079f57600080fd5b506003546001600160a01b03811690600160a01b900461ffff166104da565b3480156107ca57600080fd5b506102736107d936600461478c565b61010c6020526000908152604090205481565b3480156107f857600080fd5b506102ed61080736600461478c565b61010e602052600090815260409020546001600160a01b031681565b34801561082f57600080fd5b5061027361083e36600461478c565b611a6a565b34801561084f57600080fd5b5061027361085e366004614edd565b611af3565b34801561086f57600080fd5b506104da611bfd565b34801561088457600080fd5b506108986108933660046148a9565b611c1a565b60405161027d9190614f56565b3480156108b157600080fd5b5061033a6108c0366004614879565b611d81565b3480156108d157600080fd5b5061033a6108e0366004614fda565b611d9a565b3480156108f157600080fd5b506102cb611fc2565b34801561090657600080fd5b5061092e61091536600461478c565b600d602052600090815260409020805460019091015482565b60405161027d9291906150ec565b34801561094857600080fd5b506102a66109573660046150fa565b6001600160a01b03918216600090815260d76020908152604080832093909416825291909152205460ff1690565b34801561099157600080fd5b506102a66109a0366004615128565b611fcf565b3480156109b157600080fd5b5061033a6109c03660046151a1565b6123d5565b60006001600160a01b038316610a355760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d6602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610a6b82612533565b80610a5a5750506001600160e01b03191663152a902d60e11b1490565b6101088054610a9690615209565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac290615209565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b505050505081565b6005546001600160a01b031690565b60606000610b3383612583565b905080610b3f8461271f565b604051602001610b5092919061523e565b604051602081830303815290604052915050919050565b610b6f61281c565b610b8b5760405162461bcd60e51b8152600401610a2c9061526d565b610b948161282f565b50565b610b9f61281c565b610bbb5760405162461bcd60e51b8152600401610a2c9061526d565b6000848152600d6020526040902080546001820154818415610be457610be182846152ab565b90505b600184018690558084556000805b87811015610d9d57801580610c2a5750888882818110610c1457610c146152c3565b9050602002810190610c2691906152d9565b3582105b610c5b5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a2c565b60006002870181610c6c84876152ab565b8152602001908152602001600020600201549050898983818110610c9257610c926152c3565b9050602002810190610ca491906152d9565b60200135811115610cec5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b6044820152606401610a2c565b898983818110610cfe57610cfe6152c3565b9050602002810190610d1091906152d9565b600288016000610d2085886152ab565b81526020019081526020016000208181610d3a9190615444565b50819050600288016000610d4e85886152ab565b8152602081019190915260400160002060020155898983818110610d7457610d746152c3565b9050602002810190610d8691906152d9565b359250819050610d95816154c2565b915050610bf2565b508515610e1f57835b82811015610e19576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610e0460078301826145b6565b50508080610e11906154c2565b915050610da6565b50610eb0565b86831115610eb057865b83811015610eae57600286016000610e4183866152ab565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610e9960078301826145b6565b50508080610ea6906154c2565b915050610e29565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a898989604051610ee49392919061554b565b60405180910390a2505050505050505050565b610eff61281c565b610f1b5760405162461bcd60e51b8152600401610a2c9061526d565b610f258282612881565b5050565b6000610f3460075490565b8210610f725760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610a2c565b60078281548110610f8557610f856152c3565b90600052602060002001549050919050565b6000610fa3813361290f565b600083815261010e60205260409081902080546001600160a01b0319166001600160a01b0385161790555183907f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b01690610ffd908590614778565b60405180910390a2505050565b60008060008061101986611298565b90945084925061ffff1690506127106110328287615633565b61103c9190615668565b925050509250929050565b846daaeb6d7670e522a718067333cd4e3b1561118e576001600160a01b0381163314156110805761107b868686868661298f565b61119b565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906110b3903090339060040161567c565b602060405180830381865afa1580156110d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f49190615696565b801561116f5750604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061112e903090859060040161567c565b602060405180830381865afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f9190615696565b61118e5733604051633b79c77360e21b8152600401610a2c9190614778565b61119b868686868661298f565b505050505050565b6000828152600b60205260409020546111bc903361290f565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff161561122f5760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610a2c565b610f2582826129ed565b336001600160a01b0382161461128e5760405162461bcd60e51b815260206004820152601a60248201527921b0b71037b7363c903932b737bab731b2903337b91039b2b63360311b6044820152606401610a2c565b610f258282612a01565b6000818152600460209081526040808320815180830190925280546001600160a01b0316808352600190910154928201929092528291156112df57805160208201516112f9565b6003546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b606081518351146113685760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610a2c565b600083516001600160401b03811115611383576113836148e4565b6040519080825280602002602001820160405280156113ac578160200160208202803683370190505b50905060005b8451811015611424576113f78582815181106113d0576113d06152c3565b60200260200101518583815181106113ea576113ea6152c3565b60200260200101516109c5565b828281518110611409576114096152c3565b602090810291909101015261141d816154c2565b90506113b2565b509392505050565b6001600160a01b031660009081526040602081905290205460ff1690565b61145986888787878787612a58565b600061146487611584565b905061147c81611472612ae9565b8989898989611fcf565b506000878152600d60209081526040808320848452600290810190925282200180548892906114ac9084906152ab565b90915550506000878152600d60209081526040808320848452600301909152812087916114d7612ae9565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461150691906152ab565b9091555061151a9050876000888888612af3565b611525888888612c2f565b876001600160a01b0316611537612ae9565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a6040516115729291906150ec565b60405180910390a45050505050505050565b6000818152600d602052604081206001810154815483916115a4916152ab565b90505b81548111156115fe576002820160006115c16001846156b3565b81526020019081526020016000206000015442106115ec576115e46001826156b3565b949350505050565b806115f6816156ca565b9150506115a7565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610a2c565b61163d61281c565b6116595760405162461bcd60e51b8152600401610a2c9061526d565b610f258282612c4a565b61166b612cc7565b6001600160a01b0316836001600160a01b03161480611691575061169183610957612cc7565b6116f05760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610a2c565b6116fb838383612cd1565b505050565b61170861281c565b6117245760405162461bcd60e51b8152600401610a2c9061526d565b610b9481612edf565b6000611739813361290f565b600083815261010d602052604090819020839055517fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd9061177d90859085906150ec565b60405180910390a1505050565b6000828152600c602052604081205481805b82811015611870576000868152600c602090815260408083208484526001019091529020546001600160a01b0316156118195784821415611807576000868152600c602090815260408083209383526001909301905220546001600160a01b03169250610a5a915050565b6118126001836152ab565b915061185e565b611824866000611879565b801561184b57506000868152600c6020908152604080832083805260020190915290205481145b1561185e5761185b6001836152ab565b91505b6118696001826152ab565b905061179c565b50505092915050565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6118ac61281c565b6118c85760405162461bcd60e51b8152600401610a2c9061526d565b610b9481612f29565b6101098054610a9690615209565b6118e761281c565b6119035760405162461bcd60e51b8152600401610a2c9061526d565b6116fb83838361300b565b610f25611919612cc7565b83836130b3565b6000828152600a6020908152604080832083805290915281205460ff1661196d57506000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610a5a565b50600192915050565b6060816001600160401b03811115611990576119906148e4565b6040519080825280602002602001820160405280156119c357816020015b60608152602001906001900390816119ae5790505b50905060005b82811015611a6357611a33308585848181106119e7576119e76152c3565b90506020028101906119f991906152f9565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061318c92505050565b828281518110611a4557611a456152c3565b60200260200101819052508080611a5b906154c2565b9150506119c9565b5092915050565b6000818152600c6020526040812054815b81811015611ace576000848152600c602090815260408083208484526001019091529020546001600160a01b031615611abc57611ab96001846152ab565b92505b611ac76001826152ab565b9050611a7b565b50611ada836000611879565b15611aed57611aea6001836152ab565b91505b50919050565b6000611afd61327e565b611b195760405162461bcd60e51b8152600401610a2c9061526d565b85611b4e5760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610a2c565b60006009549050611b96818888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061328f92505050565b6009919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611bcc8a846152ab565b611bd691906156b3565b88888888604051611beb9594939291906156e1565b60405180910390a25095945050505050565b6002546001600160a01b03811691600160a01b90910461ffff1690565b611c6e60405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600d6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611cf790615209565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2390615209565b8015611d705780601f10611d4557610100808354040283529160200191611d70565b820191906000526020600020905b815481529060010190602001808311611d5357829003601f168201915b505050505081525050905092915050565b6000828152600b602052604090205461128e903361290f565b600054610100900460ff1615808015611dba5750600054600160ff909116105b80611ddb5750611dc930612524565b158015611ddb575060005460ff166001145b611e3e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610a2c565b6000805460ff191660011790558015611e61576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611eac896132fc565b611ec460405180602001604052806000815250613334565b611ecc613364565b611ed58a612f29565b611ede8d61282f565b611ee960008e6129ed565b611ef3818e6129ed565b611efd828e6129ed565b611f088260006129ed565b611f1b84866001600160801b0316612881565b611f2e87876001600160801b0316612c4a565b611f3788612edf565b61010a82905561010b8190558b51611f57906101089060208f01906145f0565b508a51611f6c906101099060208e01906145f0565b5050508015611fb5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610a9690615209565b6000858152600d602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161205a90615209565b80601f016020809104026020016040519081016040528092919081815260200182805461208690615209565b80156120d35780601f106120a8576101008083540402835291602001916120d3565b820191906000526020600020905b8154815290600101906020018083116120b657829003601f168201915b50505091909252505050606081015160a082015160c083015160808401519394509192909190156121b3576121af61210b878061571a565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c013590612160908d0160608e016147a5565b6040516001600160601b0319606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613385565b5094505b84156122385760208601356121c857826121ce565b85602001355b9250600019866040013514156121e457816121ea565b85604001355b915060001986604001351415801561221b5750600061220f60808801606089016147a5565b6001600160a01b031614155b6122255780612235565b61223560808701606088016147a5565b90505b6000600d60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b03161415806122a85750828814155b156122e85760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b6044820152606401610a2c565b8915806122fd5750836122fb828c6152ab565b115b156123335760405162461bcd60e51b8152600401610a2c906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161234891906152ab565b11156123835760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610a2c565b84514210156123c55760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610a2c565b5050505050979650505050505050565b846daaeb6d7670e522a718067333cd4e3b15612517576001600160a01b0381163314156124095761107b8686868686613453565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061243c903090339060040161567c565b602060405180830381865afa158015612459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247d9190615696565b80156124f85750604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906124b7903090859060040161567c565b602060405180830381865afa1580156124d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f89190615696565b6125175733604051633b79c77360e21b8152600401610a2c9190614778565b61119b8686868686613453565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b148061256457506001600160e01b031982166303a24d0760e21b145b80610a5a57506301ffc9a760e01b6001600160e01b0319831614610a5a565b6060600061259060075490565b9050600060078054806020026020016040519081016040528092919081815260200182805480156125e057602002820191906000526020600020905b8154815260200190600101908083116125cc575b5050505050905060005b828110156126e457818181518110612604576126046152c3565b60200260200101518510156126d25760086000838381518110612629576126296152c3565b60200260200101518152602001908152602001600020805461264a90615209565b80601f016020809104026020016040519081016040528092919081815260200182805461267690615209565b80156126c35780601f10612698576101008083540402835291602001916126c3565b820191906000526020600020905b8154815290600101906020018083116126a657829003601f168201915b50505050509350505050919050565b6126dd6001826152ab565b90506125ea565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b6044820152606401610a2c565b6060816127435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561276d5780612757816154c2565b91506127669050600a83615668565b9150612747565b6000816001600160401b03811115612787576127876148e4565b6040519080825280601f01601f1916602001820160405280156127b1576020820181803683370190505b5090505b84156115e4576127c66001836156b3565b91506127d3600a86615763565b6127de9060306152ab565b60f81b8183815181106127f3576127f36152c3565b60200101906001600160f81b031916908160001a905350612815600a86615668565b94506127b5565b600061282a816106b7612cc7565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b6127108111156128a35760405162461bcd60e51b8152600401610a2c90615777565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610f255761294d816001600160a01b031660146134aa565b6129588360206134aa565b6040516020016129699291906157a0565b60408051601f198184030181529082905262461bcd60e51b8252610a2c91600401614765565b612997612cc7565b6001600160a01b0316856001600160a01b031614806129bd57506129bd85610957612cc7565b6129d95760405162461bcd60e51b8152600401610a2c9061580d565b6129e6858585858561364c565b5050505050565b6129f782826137ea565b610f258282613845565b612a0b82826138b2565b6000828152600c602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261010d60205260409020541580612a9a5750600087815261010d602090815260408083205461010c90925290912054612a979087906152ab565b11155b612ae05760405162461bcd60e51b8152602060048201526017602482015276657863656564206d617820746f74616c20737570706c7960481b6044820152606401610a2c565b50505050505050565b600061282a612cc7565b80612afd576129e6565b600080612b08611bfd565b909250905060006001600160a01b03871615612b245786612b68565b600088815261010e60205260409020546001600160a01b031615612b6057600088815261010e60205260409020546001600160a01b0316612b68565b612b68610b17565b90506000612b768588615633565b90506000612710612b8b61ffff861684615633565b612b959190615668565b90506001600160a01b03871673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612bf457813414612bf45760405162461bcd60e51b815260206004820152600660248201526521507269636560d01b6044820152606401610a2c565b612c0787612c00612cc7565b8784613914565b612c2387612c13612cc7565b85612c1e85876156b3565b613914565b50505050505050505050565b6116fb8383836040518060200160405280600081525061395e565b612710811115612c6c5760405162461bcd60e51b8152600401610a2c90615777565b600380546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb90602001612903565b600061282a613a81565b6001600160a01b038316612d335760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610a2c565b8051825114612d545760405162461bcd60e51b8152600401610a2c9061585c565b6000612d5e612cc7565b9050612d7e81856000868660405180602001604052806000815250613aa6565b60005b8351811015612e82576000848281518110612d9e57612d9e6152c3565b602002602001015190506000848381518110612dbc57612dbc6152c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038c168352909352919091205490915081811015612e495760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610a2c565b600092835260d6602090815260408085206001600160a01b038b1686529091529092209103905580612e7a816154c2565b915050612d81565b5060006001600160a01b0316846001600160a01b0316826001600160a01b0316600080516020615b708339815191528686604051612ec19291906158a4565b60405180910390a46040805160208101909152600090525b50505050565b600580546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b600060018054612f3890615209565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6490615209565b8015612fb15780601f10612f8657610100808354040283529160200191612fb1565b820191906000526020600020905b815481529060010190602001808311612f9457829003601f168201915b50508551939450612fcd936001935060208701925090506145f0565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a168183604051612fff9291906158c9565b60405180910390a15050565b61271081111561302d5760405162461bcd60e51b8152600401610a2c90615777565b6040805180820182526001600160a01b038481168083526020808401868152600089815260048352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b031614156131275760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610a2c565b6001600160a01b03838116600081815260d76020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016130a6565b606061319783612524565b6131f25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610a2c565b600080846001600160a01b03168460405161320d91906158ee565b600060405180830381855af49150503d8060008114613248576040519150601f19603f3d011682016040523d82523d6000602084013e61324d565b606091505b50915091506132758282604051806060016040528060278152602001615bb060279139613c68565b95945050505050565b600061282a61010b546106b7612cc7565b60008061329c84866152ab565b60078054600181019091557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801819055600081815260086020908152604090912085519294508493506132f39290918601906145f0565b50935093915050565b600054610100900460ff166133235760405162461bcd60e51b8152600401610a2c90615900565b61332b613ca1565b610b9481613cc8565b600054610100900460ff1661335b5760405162461bcd60e51b8152600401610a2c90615900565b610b9481613d57565b613383733cc6cdda760b79bafa08df41ecfa224f810dceb66001613d6a565b565b6000808281805b8751811015613447576133a0600283615633565b915060008882815181106133b6576133b66152c3565b602002602001015190508084116133f8576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613434565b604080516020810183905290810185905260600160405160208183030381529060405280519060200120935060018361343191906152ab565b92505b508061343f816154c2565b91505061338c565b50941495939450505050565b61345b612cc7565b6001600160a01b0316856001600160a01b03161480613481575061348185610957612cc7565b61349d5760405162461bcd60e51b8152600401610a2c9061580d565b6129e68585858585613ed1565b606060006134b9836002615633565b6134c49060026152ab565b6001600160401b038111156134db576134db6148e4565b6040519080825280601f01601f191660200182016040528015613505576020820181803683370190505b509050600360fc1b81600081518110613520576135206152c3565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061354f5761354f6152c3565b60200101906001600160f81b031916908160001a9053506000613573846002615633565b61357e9060016152ab565b90505b60018111156135f6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106135b2576135b26152c3565b1a60f81b8282815181106135c8576135c86152c3565b60200101906001600160f81b031916908160001a90535060049490941c936135ef816156ca565b9050613581565b5083156136455760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a2c565b9392505050565b815183511461366d5760405162461bcd60e51b8152600401610a2c9061585c565b6001600160a01b0384166136935760405162461bcd60e51b8152600401610a2c9061594b565b600061369d612cc7565b90506136ad818787878787613aa6565b60005b84518110156137965760008582815181106136cd576136cd6152c3565b6020026020010151905060008583815181106136eb576136eb6152c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038e16835290935291909120549091508181101561373c5760405162461bcd60e51b8152600401610a2c90615990565b600083815260d6602090815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061377b9084906152ab565b925050819055505050508061378f906154c2565b90506136b0565b50846001600160a01b0316866001600160a01b0316826001600160a01b0316600080516020615b7083398151915287876040516137d49291906158a4565b60405180910390a461119b818787878787614012565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600c602052604081208054916001919061386483856152ab565b90915550506000928352600c6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b6138bc828261290f565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b8061391e57612ed9565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156139525761394d8282614175565b612ed9565b612ed984848484614217565b6001600160a01b0384166139be5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a2c565b60006139c8612cc7565b905060006139d585614270565b905060006139e285614270565b90506139f383600089858589613aa6565b600086815260d6602090815260408083206001600160a01b038b16845290915281208054879290613a259084906152ab565b92505081905550866001600160a01b031660006001600160a01b0316846001600160a01b0316600080516020615b908339815191528989604051613a6a9291906150ec565b60405180910390a4612ae0836000898989896142bb565b6000613a8c3361142c565b15613a9e575060131936013560601c90565b503390565b90565b613ab461010a546000611879565b158015613ac957506001600160a01b03851615155b8015613add57506001600160a01b03841615155b15613b5a57613aef61010a5486611879565b80613b025750613b0261010a5485611879565b613b5a5760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610a2c565b6001600160a01b038516613be25760005b8351811015613be057828181518110613b8657613b866152c3565b602002602001015161010c6000868481518110613ba557613ba56152c3565b602002602001015181526020019081526020016000206000828254613bca91906152ab565b90915550613bd99050816154c2565b9050613b6b565b505b6001600160a01b03841661119b5760005b8351811015612ae057828181518110613c0e57613c0e6152c3565b602002602001015161010c6000868481518110613c2d57613c2d6152c3565b602002602001015181526020019081526020016000206000828254613c5291906156b3565b90915550613c619050816154c2565b9050613bf3565b60608315613c77575081613645565b825115613c875782518084602001fd5b8160405162461bcd60e51b8152600401610a2c9190614765565b600054610100900460ff166133835760405162461bcd60e51b8152600401610a2c90615900565b600054610100900460ff16613cef5760405162461bcd60e51b8152600401610a2c90615900565b60005b8151811015610f2557600160406000848481518110613d1357613d136152c3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580613d4f816154c2565b915050613cf2565b8051610f259060d89060208401906145f0565b6daaeb6d7670e522a718067333cd4e3b15610f255760405163c3c5a54760e01b81526daaeb6d7670e522a718067333cd4e9063c3c5a54790613db0903090600401614778565b6020604051808303816000875af1158015613dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613df39190615696565b610f25578015613e5e57604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe90613e30903090869060040161567c565b600060405180830381600087803b158015613e4a57600080fd5b505af115801561119b573d6000803e3d6000fd5b6001600160a01b03821615613ea05760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af290390613e30903090869060040161567c565b604051632210724360e11b81526daaeb6d7670e522a718067333cd4e90634420e48690613e30903090600401614778565b6001600160a01b038416613ef75760405162461bcd60e51b8152600401610a2c9061594b565b6000613f01612cc7565b90506000613f0e85614270565b90506000613f1b85614270565b9050613f2b838989858589613aa6565b600086815260d6602090815260408083206001600160a01b038c16845290915290205485811015613f6e5760405162461bcd60e51b8152600401610a2c90615990565b600087815260d6602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613fad9084906152ab565b92505081905550876001600160a01b0316896001600160a01b0316856001600160a01b0316600080516020615b908339815191528a8a604051613ff19291906150ec565b60405180910390a4614007848a8a8a8a8a6142bb565b505050505050505050565b614024846001600160a01b0316612524565b1561119b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061405d90899089908890889088906004016159da565b6020604051808303816000875af1925050508015614098575060408051601f3d908101601f1916820190925261409591810190615a2c565b60015b614145576140a4615a49565b806308c379a014156140de57506140b9615a64565b806140c457506140e0565b8060405162461bcd60e51b8152600401610a2c9190614765565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610a2c565b6001600160e01b0319811663bc197c8160e01b14612ae05760405162461bcd60e51b8152600401610a2c90615aed565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146141c2576040519150601f19603f3d011682016040523d82523d6000602084013e6141c7565b606091505b50509050806116fb5760405162461bcd60e51b815260206004820152601c60248201527b1b985d1a5d99481d1bdad95b881d1c985b9cd9995c8819985a5b195960221b6044820152606401610a2c565b816001600160a01b0316836001600160a01b0316141561423657612ed9565b6001600160a01b03831630141561425b5761394d6001600160a01b038516838361437d565b612ed96001600160a01b0385168484846143d3565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106142aa576142aa6152c3565b602090810291909101015292915050565b6142cd846001600160a01b0316612524565b1561119b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906143069089908990889088908890600401615b35565b6020604051808303816000875af1925050508015614341575060408051601f3d908101601f1916820190925261433e91810190615a2c565b60015b61434d576140a4615a49565b6001600160e01b0319811663f23a6e6160e01b14612ae05760405162461bcd60e51b8152600401610a2c90615aed565b6116fb8363a9059cbb60e01b848460405160240161439c9291906148cb565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261440b565b6040516001600160a01b0380851660248301528316604482015260648101829052612ed99085906323b872dd60e01b9060840161439c565b6000614460826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144dd9092919063ffffffff16565b8051909150156116fb578080602001905181019061447e9190615696565b6116fb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a2c565b60606115e48484600085856144f185612524565b61453d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a2c565b600080866001600160a01b0316858760405161455991906158ee565b60006040518083038185875af1925050503d8060008114614596576040519150601f19603f3d011682016040523d82523d6000602084013e61459b565b606091505b50915091506145ab828286613c68565b979650505050505050565b5080546145c290615209565b6000825580601f106145d2575050565b601f016020900490600052602060002090810190610b949190614674565b8280546145fc90615209565b90600052602060002090601f01602090048101928261461e5760008555614664565b82601f1061463757805160ff1916838001178555614664565b82800160010185558215614664579182015b82811115614664578251825591602001919060010190614649565b50614670929150614674565b5090565b5b808211156146705760008155600101614675565b6001600160a01b0381168114610b9457600080fd5b80356146a981614689565b919050565b600080604083850312156146c157600080fd5b82356146cc81614689565b946020939093013593505050565b6001600160e01b031981168114610b9457600080fd5b60006020828403121561470257600080fd5b8135613645816146da565b60005b83811015614728578181015183820152602001614710565b83811115612ed95750506000910152565b6000815180845261475181602086016020860161470d565b601f01601f19169290920160200192915050565b6020815260006136456020830184614739565b6001600160a01b0391909116815260200190565b60006020828403121561479e57600080fd5b5035919050565b6000602082840312156147b757600080fd5b813561364581614689565b60008083601f8401126147d457600080fd5b5081356001600160401b038111156147eb57600080fd5b6020830191508360208260051b850101111561480657600080fd5b9250929050565b8015158114610b9457600080fd5b6000806000806060858703121561483157600080fd5b8435935060208501356001600160401b0381111561484e57600080fd5b61485a878288016147c2565b909450925050604085013561486e8161480d565b939692955090935050565b6000806040838503121561488c57600080fd5b82359150602083013561489e81614689565b809150509250929050565b600080604083850312156148bc57600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561491f5761491f6148e4565b6040525050565b60006001600160401b0382111561493f5761493f6148e4565b5060051b60200190565b600082601f83011261495a57600080fd5b8135602061496782614926565b60405161497482826148fa565b83815260059390931b850182019282810191508684111561499457600080fd5b8286015b848110156149af5780358352918301918301614998565b509695505050505050565b600082601f8301126149cb57600080fd5b81356001600160401b038111156149e4576149e46148e4565b6040516149fb601f8301601f1916602001826148fa565b818152846020838601011115614a1057600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614a4557600080fd5b8535614a5081614689565b94506020860135614a6081614689565b935060408601356001600160401b0380821115614a7c57600080fd5b614a8889838a01614949565b94506060880135915080821115614a9e57600080fd5b614aaa89838a01614949565b93506080880135915080821115614ac057600080fd5b50614acd888289016149ba565b9150509295509295909350565b600082601f830112614aeb57600080fd5b81356020614af882614926565b604051614b0582826148fa565b83815260059390931b8501820192828101915086841115614b2557600080fd5b8286015b848110156149af578035614b3c81614689565b8352918301918301614b29565b60008060408385031215614b5c57600080fd5b82356001600160401b0380821115614b7357600080fd5b614b7f86838701614ada565b93506020850135915080821115614b9557600080fd5b50614ba285828601614949565b9150509250929050565b600081518084526020808501945080840160005b83811015614bdc57815187529582019590820190600101614bc0565b509495945050505050565b6020815260006136456020830184614bac565b600060808284031215611aed57600080fd5b600080600080600080600060e0888a031215614c2757600080fd5b8735614c3281614689565b965060208801359550604088013594506060880135614c5081614689565b93506080880135925060a08801356001600160401b0380821115614c7357600080fd5b614c7f8b838c01614bfa565b935060c08a0135915080821115614c9557600080fd5b50614ca28a828b016149ba565b91505092959891949750929550565b600080600060608486031215614cc657600080fd5b83359250602084013591506040840135614cdf81614689565b809150509250925092565b600080600060608486031215614cff57600080fd5b8335614d0a81614689565b925060208401356001600160401b0380821115614d2657600080fd5b614d3287838801614949565b93506040860135915080821115614d4857600080fd5b50614d5586828701614949565b9150509250925092565b600060208284031215614d7157600080fd5b81356001600160401b03811115614d8757600080fd5b6115e4848285016149ba565b600080600060608486031215614da857600080fd5b833592506020840135614dba81614689565b929592945050506040919091013590565b60008060408385031215614dde57600080fd5b8235614de981614689565b9150602083013561489e8161480d565b60008060208385031215614e0c57600080fd5b82356001600160401b03811115614e2257600080fd5b614e2e858286016147c2565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015614e8f57603f19888603018452614e7d858351614739565b94509285019290850190600101614e61565b5092979650505050505050565b60008083601f840112614eae57600080fd5b5081356001600160401b03811115614ec557600080fd5b60208301915083602082850101111561480657600080fd5b600080600080600060608688031215614ef557600080fd5b8535945060208601356001600160401b0380821115614f1357600080fd5b614f1f89838a01614e9c565b90965094506040880135915080821115614f3857600080fd5b50614f4588828901614e9c565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260018060a01b0360c08301511660e0820152600060e08301516101008081850152506115e4610120840182614739565b80356001600160801b03811681146146a957600080fd5b6000806000806000806000806000806101408b8d031215614ffa57600080fd5b6150038b61469e565b995060208b01356001600160401b038082111561501f57600080fd5b61502b8e838f016149ba565b9a5060408d013591508082111561504157600080fd5b61504d8e838f016149ba565b995060608d013591508082111561506357600080fd5b61506f8e838f016149ba565b985060808d013591508082111561508557600080fd5b506150928d828e01614ada565b9650506150a160a08c0161469e565b94506150af60c08c0161469e565b93506150bd60e08c01614fc3565b92506150cc6101008c01614fc3565b91506150db6101208c0161469e565b90509295989b9194979a5092959850565b918252602082015260400190565b6000806040838503121561510d57600080fd5b823561511881614689565b9150602083013561489e81614689565b600080600080600080600060e0888a03121561514357600080fd5b87359650602088013561515581614689565b95506040880135945060608801359350608088013561517381614689565b925060a0880135915060c08801356001600160401b0381111561519557600080fd5b614ca28a828b01614bfa565b600080600080600060a086880312156151b957600080fd5b85356151c481614689565b945060208601356151d481614689565b9350604086013592506060860135915060808601356001600160401b038111156151fd57600080fd5b614acd888289016149ba565b600181811c9082168061521d57607f821691505b60208210811415611aed57634e487b7160e01b600052602260045260246000fd5b6000835161525081846020880161470d565b83519083019061526481836020880161470d565b01949350505050565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156152be576152be615295565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe198336030181126152ef57600080fd5b9190910192915050565b6000808335601e1984360301811261531057600080fd5b8301803591506001600160401b0382111561532a57600080fd5b60200191503681900382131561480657600080fd5b601f8211156116fb57600081815260208120601f850160051c810160208610156153665750805b601f850160051c820191505b8181101561119b57828155600101615372565b6001600160401b0383111561539c5761539c6148e4565b6153b0836153aa8354615209565b8361533f565b6000601f8411600181146153e457600085156153cc5750838201355b600019600387901b1c1916600186901b1783556129e6565b600083815260209020601f19861690835b8281101561541557868501358255602094850194600190920191016153f5565b50868210156154325760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c083013561548c81614689565b81546001600160a01b0319166001600160a01b03919091161790556154b460e08301836152f9565b612ed9818360078601615385565b60006000198214156154d6576154d6615295565b5060010190565b6000808335601e198436030181126154f457600080fd5b83016020810192503590506001600160401b0381111561551357600080fd5b80360383131561480657600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561561d57888403605f190185528235368d900360fe19018112615590578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c0808401356155d781614689565b6001600160a01b03169088015260e06155f2848201856154dd565b945083828a0152615606848a018683615522565b99830199985050509490940193505060010161556b565b505050861515602087015293506115e492505050565b600081600019048311821515161561564d5761564d615295565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261567757615677615652565b500490565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156156a857600080fd5b81516136458161480d565b6000828210156156c5576156c5615295565b500390565b6000816156d9576156d9615295565b506000190190565b8581526060602082015260006156fb606083018688615522565b828103604084015261570e818587615522565b98975050505050505050565b6000808335601e1984360301811261573157600080fd5b8301803591506001600160401b0382111561574b57600080fd5b6020019150600581901b360382131561480657600080fd5b60008261577257615772615652565b500690565b6020808252600f908201526e45786365656473206d61782062707360881b604082015260600190565b7402832b936b4b9b9b4b7b7399d1030b1b1b7bab73a1605d1b8152600083516157d081601585016020880161470d565b7001034b99036b4b9b9b4b733903937b6329607d1b601591840191820152835161580181602684016020880161470d565b01602601949350505050565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006158b76040830185614bac565b82810360208401526132758185614bac565b6040815260006158dc6040830185614739565b82810360208401526132758185614739565b600082516152ef81846020870161470d565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090615a0690830186614bac565b8281036060840152615a188186614bac565b9050828103608084015261570e8185614739565b600060208284031215615a3e57600080fd5b8151613645816146da565b600060033d1115613aa35760046000803e5060005160e01c90565b600060443d1015615a725790565b6040516003193d81016004833e81513d6001600160401b038083116024840183101715615aa157505050505090565b8285019150815181811115615ab95750505050505090565b843d8701016020828501011115615ad35750505050505090565b615ae2602082860101876148fa565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906145ab9083018461473956fe4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220152793b5b201eaa0fc5987d69ca8d4cd0b7e003cc1e851cdcd5f94027bba0a4264736f6c634300080c0033
Deployed Bytecode
0x60806040526004361061024e5760003560e01c8062fdd58e1461025357806301ffc9a71461028657806306fdde03146102b6578063079fe40e146102d85780630e89341c146102fa57806313af40351461031a578063183718d11461033c5780631e7ac4881461035c5780632419f51b1461037c578063248a9ca31461039c57806324aaffaa146103c957806329c49b9b146103f75780632a55205a146104175780632eb2c2d6146104455780632f2ff15d1461046557806336568abe146104855780633b1475a7146104a55780634cc157df146104ba5780634e1273f4146104fc578063572b6c051461052957806357bc3d78146105495780635811ddab1461055c5780635ab063e8146105a9578063600dd5ea146105c957806363b45e2d146105e95780636b20c454146105fe5780636f4f28371461061e57806387198cf21461063e5780638da5cb5b1461065e5780639010d07c1461067c57806391d148541461069c578063938e3d7b146106bc57806395d89b41146106dc5780639bcf7a15146106f1578063a217fddf14610711578063a22cb46514610726578063a32fa5b314610746578063ac9650d814610766578063b24f2d3914610793578063bd85b039146107be578063c7337d6b146107ec578063ca15c87314610823578063d37c353b14610843578063d45573f614610863578063d45b28d714610878578063d547741f146108a5578063e1591634146108c5578063e8a3d485146108e5578063e9703d25146108fa578063e985e9c51461093c578063ea1def9c14610985578063f242432a146109a5575b600080fd5b34801561025f57600080fd5b5061027361026e3660046146ae565b6109c5565b6040519081526020015b60405180910390f35b34801561029257600080fd5b506102a66102a13660046146f0565b610a60565b604051901515815260200161027d565b3480156102c257600080fd5b506102cb610a88565b60405161027d9190614765565b3480156102e457600080fd5b506102ed610b17565b60405161027d9190614778565b34801561030657600080fd5b506102cb61031536600461478c565b610b26565b34801561032657600080fd5b5061033a6103353660046147a5565b610b67565b005b34801561034857600080fd5b5061033a61035736600461481b565b610b97565b34801561036857600080fd5b5061033a6103773660046146ae565b610ef7565b34801561038857600080fd5b5061027361039736600461478c565b610f29565b3480156103a857600080fd5b506102736103b736600461478c565b6000908152600b602052604090205490565b3480156103d557600080fd5b506102736103e436600461478c565b61010d6020526000908152604090205481565b34801561040357600080fd5b5061033a610412366004614879565b610f97565b34801561042357600080fd5b506104376104323660046148a9565b61100a565b60405161027d9291906148cb565b34801561045157600080fd5b5061033a610460366004614a2d565b611047565b34801561047157600080fd5b5061033a610480366004614879565b6111a3565b34801561049157600080fd5b5061033a6104a0366004614879565b611239565b3480156104b157600080fd5b50600954610273565b3480156104c657600080fd5b506104da6104d536600461478c565b611298565b604080516001600160a01b03909316835261ffff90911660208301520161027d565b34801561050857600080fd5b5061051c610517366004614b49565b611303565b60405161027d9190614be7565b34801561053557600080fd5b506102a66105443660046147a5565b61142c565b61033a610557366004614c0c565b61144a565b34801561056857600080fd5b50610273610577366004614cb1565b6000928352600d60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b3480156105b557600080fd5b506102736105c436600461478c565b611584565b3480156105d557600080fd5b5061033a6105e43660046146ae565b611635565b3480156105f557600080fd5b50600754610273565b34801561060a57600080fd5b5061033a610619366004614cea565b611663565b34801561062a57600080fd5b5061033a6106393660046147a5565b611700565b34801561064a57600080fd5b5061033a6106593660046148a9565b61172d565b34801561066a57600080fd5b506006546001600160a01b03166102ed565b34801561068857600080fd5b506102ed6106973660046148a9565b61178a565b3480156106a857600080fd5b506102a66106b7366004614879565b611879565b3480156106c857600080fd5b5061033a6106d7366004614d5f565b6118a4565b3480156106e857600080fd5b506102cb6118d1565b3480156106fd57600080fd5b5061033a61070c366004614d93565b6118df565b34801561071d57600080fd5b50610273600081565b34801561073257600080fd5b5061033a610741366004614dcb565b61190e565b34801561075257600080fd5b506102a6610761366004614879565b611920565b34801561077257600080fd5b50610786610781366004614df9565b611976565b60405161027d9190614e3a565b34801561079f57600080fd5b506003546001600160a01b03811690600160a01b900461ffff166104da565b3480156107ca57600080fd5b506102736107d936600461478c565b61010c6020526000908152604090205481565b3480156107f857600080fd5b506102ed61080736600461478c565b61010e602052600090815260409020546001600160a01b031681565b34801561082f57600080fd5b5061027361083e36600461478c565b611a6a565b34801561084f57600080fd5b5061027361085e366004614edd565b611af3565b34801561086f57600080fd5b506104da611bfd565b34801561088457600080fd5b506108986108933660046148a9565b611c1a565b60405161027d9190614f56565b3480156108b157600080fd5b5061033a6108c0366004614879565b611d81565b3480156108d157600080fd5b5061033a6108e0366004614fda565b611d9a565b3480156108f157600080fd5b506102cb611fc2565b34801561090657600080fd5b5061092e61091536600461478c565b600d602052600090815260409020805460019091015482565b60405161027d9291906150ec565b34801561094857600080fd5b506102a66109573660046150fa565b6001600160a01b03918216600090815260d76020908152604080832093909416825291909152205460ff1690565b34801561099157600080fd5b506102a66109a0366004615128565b611fcf565b3480156109b157600080fd5b5061033a6109c03660046151a1565b6123d5565b60006001600160a01b038316610a355760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d6602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610a6b82612533565b80610a5a5750506001600160e01b03191663152a902d60e11b1490565b6101088054610a9690615209565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac290615209565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b505050505081565b6005546001600160a01b031690565b60606000610b3383612583565b905080610b3f8461271f565b604051602001610b5092919061523e565b604051602081830303815290604052915050919050565b610b6f61281c565b610b8b5760405162461bcd60e51b8152600401610a2c9061526d565b610b948161282f565b50565b610b9f61281c565b610bbb5760405162461bcd60e51b8152600401610a2c9061526d565b6000848152600d6020526040902080546001820154818415610be457610be182846152ab565b90505b600184018690558084556000805b87811015610d9d57801580610c2a5750888882818110610c1457610c146152c3565b9050602002810190610c2691906152d9565b3582105b610c5b5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a2c565b60006002870181610c6c84876152ab565b8152602001908152602001600020600201549050898983818110610c9257610c926152c3565b9050602002810190610ca491906152d9565b60200135811115610cec5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b6044820152606401610a2c565b898983818110610cfe57610cfe6152c3565b9050602002810190610d1091906152d9565b600288016000610d2085886152ab565b81526020019081526020016000208181610d3a9190615444565b50819050600288016000610d4e85886152ab565b8152602081019190915260400160002060020155898983818110610d7457610d746152c3565b9050602002810190610d8691906152d9565b359250819050610d95816154c2565b915050610bf2565b508515610e1f57835b82811015610e19576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610e0460078301826145b6565b50508080610e11906154c2565b915050610da6565b50610eb0565b86831115610eb057865b83811015610eae57600286016000610e4183866152ab565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610e9960078301826145b6565b50508080610ea6906154c2565b915050610e29565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a898989604051610ee49392919061554b565b60405180910390a2505050505050505050565b610eff61281c565b610f1b5760405162461bcd60e51b8152600401610a2c9061526d565b610f258282612881565b5050565b6000610f3460075490565b8210610f725760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610a2c565b60078281548110610f8557610f856152c3565b90600052602060002001549050919050565b6000610fa3813361290f565b600083815261010e60205260409081902080546001600160a01b0319166001600160a01b0385161790555183907f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b01690610ffd908590614778565b60405180910390a2505050565b60008060008061101986611298565b90945084925061ffff1690506127106110328287615633565b61103c9190615668565b925050509250929050565b846daaeb6d7670e522a718067333cd4e3b1561118e576001600160a01b0381163314156110805761107b868686868661298f565b61119b565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906110b3903090339060040161567c565b602060405180830381865afa1580156110d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f49190615696565b801561116f5750604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061112e903090859060040161567c565b602060405180830381865afa15801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f9190615696565b61118e5733604051633b79c77360e21b8152600401610a2c9190614778565b61119b868686868661298f565b505050505050565b6000828152600b60205260409020546111bc903361290f565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff161561122f5760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610a2c565b610f2582826129ed565b336001600160a01b0382161461128e5760405162461bcd60e51b815260206004820152601a60248201527921b0b71037b7363c903932b737bab731b2903337b91039b2b63360311b6044820152606401610a2c565b610f258282612a01565b6000818152600460209081526040808320815180830190925280546001600160a01b0316808352600190910154928201929092528291156112df57805160208201516112f9565b6003546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b606081518351146113685760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610a2c565b600083516001600160401b03811115611383576113836148e4565b6040519080825280602002602001820160405280156113ac578160200160208202803683370190505b50905060005b8451811015611424576113f78582815181106113d0576113d06152c3565b60200260200101518583815181106113ea576113ea6152c3565b60200260200101516109c5565b828281518110611409576114096152c3565b602090810291909101015261141d816154c2565b90506113b2565b509392505050565b6001600160a01b031660009081526040602081905290205460ff1690565b61145986888787878787612a58565b600061146487611584565b905061147c81611472612ae9565b8989898989611fcf565b506000878152600d60209081526040808320848452600290810190925282200180548892906114ac9084906152ab565b90915550506000878152600d60209081526040808320848452600301909152812087916114d7612ae9565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461150691906152ab565b9091555061151a9050876000888888612af3565b611525888888612c2f565b876001600160a01b0316611537612ae9565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a6040516115729291906150ec565b60405180910390a45050505050505050565b6000818152600d602052604081206001810154815483916115a4916152ab565b90505b81548111156115fe576002820160006115c16001846156b3565b81526020019081526020016000206000015442106115ec576115e46001826156b3565b949350505050565b806115f6816156ca565b9150506115a7565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610a2c565b61163d61281c565b6116595760405162461bcd60e51b8152600401610a2c9061526d565b610f258282612c4a565b61166b612cc7565b6001600160a01b0316836001600160a01b03161480611691575061169183610957612cc7565b6116f05760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610a2c565b6116fb838383612cd1565b505050565b61170861281c565b6117245760405162461bcd60e51b8152600401610a2c9061526d565b610b9481612edf565b6000611739813361290f565b600083815261010d602052604090819020839055517fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd9061177d90859085906150ec565b60405180910390a1505050565b6000828152600c602052604081205481805b82811015611870576000868152600c602090815260408083208484526001019091529020546001600160a01b0316156118195784821415611807576000868152600c602090815260408083209383526001909301905220546001600160a01b03169250610a5a915050565b6118126001836152ab565b915061185e565b611824866000611879565b801561184b57506000868152600c6020908152604080832083805260020190915290205481145b1561185e5761185b6001836152ab565b91505b6118696001826152ab565b905061179c565b50505092915050565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6118ac61281c565b6118c85760405162461bcd60e51b8152600401610a2c9061526d565b610b9481612f29565b6101098054610a9690615209565b6118e761281c565b6119035760405162461bcd60e51b8152600401610a2c9061526d565b6116fb83838361300b565b610f25611919612cc7565b83836130b3565b6000828152600a6020908152604080832083805290915281205460ff1661196d57506000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610a5a565b50600192915050565b6060816001600160401b03811115611990576119906148e4565b6040519080825280602002602001820160405280156119c357816020015b60608152602001906001900390816119ae5790505b50905060005b82811015611a6357611a33308585848181106119e7576119e76152c3565b90506020028101906119f991906152f9565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061318c92505050565b828281518110611a4557611a456152c3565b60200260200101819052508080611a5b906154c2565b9150506119c9565b5092915050565b6000818152600c6020526040812054815b81811015611ace576000848152600c602090815260408083208484526001019091529020546001600160a01b031615611abc57611ab96001846152ab565b92505b611ac76001826152ab565b9050611a7b565b50611ada836000611879565b15611aed57611aea6001836152ab565b91505b50919050565b6000611afd61327e565b611b195760405162461bcd60e51b8152600401610a2c9061526d565b85611b4e5760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610a2c565b60006009549050611b96818888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061328f92505050565b6009919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611bcc8a846152ab565b611bd691906156b3565b88888888604051611beb9594939291906156e1565b60405180910390a25095945050505050565b6002546001600160a01b03811691600160a01b90910461ffff1690565b611c6e60405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600d6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611cf790615209565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2390615209565b8015611d705780601f10611d4557610100808354040283529160200191611d70565b820191906000526020600020905b815481529060010190602001808311611d5357829003601f168201915b505050505081525050905092915050565b6000828152600b602052604090205461128e903361290f565b600054610100900460ff1615808015611dba5750600054600160ff909116105b80611ddb5750611dc930612524565b158015611ddb575060005460ff166001145b611e3e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610a2c565b6000805460ff191660011790558015611e61576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611eac896132fc565b611ec460405180602001604052806000815250613334565b611ecc613364565b611ed58a612f29565b611ede8d61282f565b611ee960008e6129ed565b611ef3818e6129ed565b611efd828e6129ed565b611f088260006129ed565b611f1b84866001600160801b0316612881565b611f2e87876001600160801b0316612c4a565b611f3788612edf565b61010a82905561010b8190558b51611f57906101089060208f01906145f0565b508a51611f6c906101099060208e01906145f0565b5050508015611fb5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610a9690615209565b6000858152600d602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161205a90615209565b80601f016020809104026020016040519081016040528092919081815260200182805461208690615209565b80156120d35780601f106120a8576101008083540402835291602001916120d3565b820191906000526020600020905b8154815290600101906020018083116120b657829003601f168201915b50505091909252505050606081015160a082015160c083015160808401519394509192909190156121b3576121af61210b878061571a565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c013590612160908d0160608e016147a5565b6040516001600160601b0319606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613385565b5094505b84156122385760208601356121c857826121ce565b85602001355b9250600019866040013514156121e457816121ea565b85604001355b915060001986604001351415801561221b5750600061220f60808801606089016147a5565b6001600160a01b031614155b6122255780612235565b61223560808701606088016147a5565b90505b6000600d60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b03161415806122a85750828814155b156122e85760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b6044820152606401610a2c565b8915806122fd5750836122fb828c6152ab565b115b156123335760405162461bcd60e51b8152600401610a2c906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161234891906152ab565b11156123835760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610a2c565b84514210156123c55760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610a2c565b5050505050979650505050505050565b846daaeb6d7670e522a718067333cd4e3b15612517576001600160a01b0381163314156124095761107b8686868686613453565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061243c903090339060040161567c565b602060405180830381865afa158015612459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247d9190615696565b80156124f85750604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906124b7903090859060040161567c565b602060405180830381865afa1580156124d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f89190615696565b6125175733604051633b79c77360e21b8152600401610a2c9190614778565b61119b8686868686613453565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b148061256457506001600160e01b031982166303a24d0760e21b145b80610a5a57506301ffc9a760e01b6001600160e01b0319831614610a5a565b6060600061259060075490565b9050600060078054806020026020016040519081016040528092919081815260200182805480156125e057602002820191906000526020600020905b8154815260200190600101908083116125cc575b5050505050905060005b828110156126e457818181518110612604576126046152c3565b60200260200101518510156126d25760086000838381518110612629576126296152c3565b60200260200101518152602001908152602001600020805461264a90615209565b80601f016020809104026020016040519081016040528092919081815260200182805461267690615209565b80156126c35780601f10612698576101008083540402835291602001916126c3565b820191906000526020600020905b8154815290600101906020018083116126a657829003601f168201915b50505050509350505050919050565b6126dd6001826152ab565b90506125ea565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b6044820152606401610a2c565b6060816127435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561276d5780612757816154c2565b91506127669050600a83615668565b9150612747565b6000816001600160401b03811115612787576127876148e4565b6040519080825280601f01601f1916602001820160405280156127b1576020820181803683370190505b5090505b84156115e4576127c66001836156b3565b91506127d3600a86615763565b6127de9060306152ab565b60f81b8183815181106127f3576127f36152c3565b60200101906001600160f81b031916908160001a905350612815600a86615668565b94506127b5565b600061282a816106b7612cc7565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b6127108111156128a35760405162461bcd60e51b8152600401610a2c90615777565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610f255761294d816001600160a01b031660146134aa565b6129588360206134aa565b6040516020016129699291906157a0565b60408051601f198184030181529082905262461bcd60e51b8252610a2c91600401614765565b612997612cc7565b6001600160a01b0316856001600160a01b031614806129bd57506129bd85610957612cc7565b6129d95760405162461bcd60e51b8152600401610a2c9061580d565b6129e6858585858561364c565b5050505050565b6129f782826137ea565b610f258282613845565b612a0b82826138b2565b6000828152600c602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261010d60205260409020541580612a9a5750600087815261010d602090815260408083205461010c90925290912054612a979087906152ab565b11155b612ae05760405162461bcd60e51b8152602060048201526017602482015276657863656564206d617820746f74616c20737570706c7960481b6044820152606401610a2c565b50505050505050565b600061282a612cc7565b80612afd576129e6565b600080612b08611bfd565b909250905060006001600160a01b03871615612b245786612b68565b600088815261010e60205260409020546001600160a01b031615612b6057600088815261010e60205260409020546001600160a01b0316612b68565b612b68610b17565b90506000612b768588615633565b90506000612710612b8b61ffff861684615633565b612b959190615668565b90506001600160a01b03871673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612bf457813414612bf45760405162461bcd60e51b815260206004820152600660248201526521507269636560d01b6044820152606401610a2c565b612c0787612c00612cc7565b8784613914565b612c2387612c13612cc7565b85612c1e85876156b3565b613914565b50505050505050505050565b6116fb8383836040518060200160405280600081525061395e565b612710811115612c6c5760405162461bcd60e51b8152600401610a2c90615777565b600380546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb90602001612903565b600061282a613a81565b6001600160a01b038316612d335760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610a2c565b8051825114612d545760405162461bcd60e51b8152600401610a2c9061585c565b6000612d5e612cc7565b9050612d7e81856000868660405180602001604052806000815250613aa6565b60005b8351811015612e82576000848281518110612d9e57612d9e6152c3565b602002602001015190506000848381518110612dbc57612dbc6152c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038c168352909352919091205490915081811015612e495760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610a2c565b600092835260d6602090815260408085206001600160a01b038b1686529091529092209103905580612e7a816154c2565b915050612d81565b5060006001600160a01b0316846001600160a01b0316826001600160a01b0316600080516020615b708339815191528686604051612ec19291906158a4565b60405180910390a46040805160208101909152600090525b50505050565b600580546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b600060018054612f3890615209565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6490615209565b8015612fb15780601f10612f8657610100808354040283529160200191612fb1565b820191906000526020600020905b815481529060010190602001808311612f9457829003601f168201915b50508551939450612fcd936001935060208701925090506145f0565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a168183604051612fff9291906158c9565b60405180910390a15050565b61271081111561302d5760405162461bcd60e51b8152600401610a2c90615777565b6040805180820182526001600160a01b038481168083526020808401868152600089815260048352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b031614156131275760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610a2c565b6001600160a01b03838116600081815260d76020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016130a6565b606061319783612524565b6131f25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610a2c565b600080846001600160a01b03168460405161320d91906158ee565b600060405180830381855af49150503d8060008114613248576040519150601f19603f3d011682016040523d82523d6000602084013e61324d565b606091505b50915091506132758282604051806060016040528060278152602001615bb060279139613c68565b95945050505050565b600061282a61010b546106b7612cc7565b60008061329c84866152ab565b60078054600181019091557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801819055600081815260086020908152604090912085519294508493506132f39290918601906145f0565b50935093915050565b600054610100900460ff166133235760405162461bcd60e51b8152600401610a2c90615900565b61332b613ca1565b610b9481613cc8565b600054610100900460ff1661335b5760405162461bcd60e51b8152600401610a2c90615900565b610b9481613d57565b613383733cc6cdda760b79bafa08df41ecfa224f810dceb66001613d6a565b565b6000808281805b8751811015613447576133a0600283615633565b915060008882815181106133b6576133b66152c3565b602002602001015190508084116133f8576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613434565b604080516020810183905290810185905260600160405160208183030381529060405280519060200120935060018361343191906152ab565b92505b508061343f816154c2565b91505061338c565b50941495939450505050565b61345b612cc7565b6001600160a01b0316856001600160a01b03161480613481575061348185610957612cc7565b61349d5760405162461bcd60e51b8152600401610a2c9061580d565b6129e68585858585613ed1565b606060006134b9836002615633565b6134c49060026152ab565b6001600160401b038111156134db576134db6148e4565b6040519080825280601f01601f191660200182016040528015613505576020820181803683370190505b509050600360fc1b81600081518110613520576135206152c3565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061354f5761354f6152c3565b60200101906001600160f81b031916908160001a9053506000613573846002615633565b61357e9060016152ab565b90505b60018111156135f6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106135b2576135b26152c3565b1a60f81b8282815181106135c8576135c86152c3565b60200101906001600160f81b031916908160001a90535060049490941c936135ef816156ca565b9050613581565b5083156136455760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a2c565b9392505050565b815183511461366d5760405162461bcd60e51b8152600401610a2c9061585c565b6001600160a01b0384166136935760405162461bcd60e51b8152600401610a2c9061594b565b600061369d612cc7565b90506136ad818787878787613aa6565b60005b84518110156137965760008582815181106136cd576136cd6152c3565b6020026020010151905060008583815181106136eb576136eb6152c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038e16835290935291909120549091508181101561373c5760405162461bcd60e51b8152600401610a2c90615990565b600083815260d6602090815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061377b9084906152ab565b925050819055505050508061378f906154c2565b90506136b0565b50846001600160a01b0316866001600160a01b0316826001600160a01b0316600080516020615b7083398151915287876040516137d49291906158a4565b60405180910390a461119b818787878787614012565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600c602052604081208054916001919061386483856152ab565b90915550506000928352600c6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b6138bc828261290f565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b8061391e57612ed9565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156139525761394d8282614175565b612ed9565b612ed984848484614217565b6001600160a01b0384166139be5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a2c565b60006139c8612cc7565b905060006139d585614270565b905060006139e285614270565b90506139f383600089858589613aa6565b600086815260d6602090815260408083206001600160a01b038b16845290915281208054879290613a259084906152ab565b92505081905550866001600160a01b031660006001600160a01b0316846001600160a01b0316600080516020615b908339815191528989604051613a6a9291906150ec565b60405180910390a4612ae0836000898989896142bb565b6000613a8c3361142c565b15613a9e575060131936013560601c90565b503390565b90565b613ab461010a546000611879565b158015613ac957506001600160a01b03851615155b8015613add57506001600160a01b03841615155b15613b5a57613aef61010a5486611879565b80613b025750613b0261010a5485611879565b613b5a5760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610a2c565b6001600160a01b038516613be25760005b8351811015613be057828181518110613b8657613b866152c3565b602002602001015161010c6000868481518110613ba557613ba56152c3565b602002602001015181526020019081526020016000206000828254613bca91906152ab565b90915550613bd99050816154c2565b9050613b6b565b505b6001600160a01b03841661119b5760005b8351811015612ae057828181518110613c0e57613c0e6152c3565b602002602001015161010c6000868481518110613c2d57613c2d6152c3565b602002602001015181526020019081526020016000206000828254613c5291906156b3565b90915550613c619050816154c2565b9050613bf3565b60608315613c77575081613645565b825115613c875782518084602001fd5b8160405162461bcd60e51b8152600401610a2c9190614765565b600054610100900460ff166133835760405162461bcd60e51b8152600401610a2c90615900565b600054610100900460ff16613cef5760405162461bcd60e51b8152600401610a2c90615900565b60005b8151811015610f2557600160406000848481518110613d1357613d136152c3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580613d4f816154c2565b915050613cf2565b8051610f259060d89060208401906145f0565b6daaeb6d7670e522a718067333cd4e3b15610f255760405163c3c5a54760e01b81526daaeb6d7670e522a718067333cd4e9063c3c5a54790613db0903090600401614778565b6020604051808303816000875af1158015613dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613df39190615696565b610f25578015613e5e57604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe90613e30903090869060040161567c565b600060405180830381600087803b158015613e4a57600080fd5b505af115801561119b573d6000803e3d6000fd5b6001600160a01b03821615613ea05760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af290390613e30903090869060040161567c565b604051632210724360e11b81526daaeb6d7670e522a718067333cd4e90634420e48690613e30903090600401614778565b6001600160a01b038416613ef75760405162461bcd60e51b8152600401610a2c9061594b565b6000613f01612cc7565b90506000613f0e85614270565b90506000613f1b85614270565b9050613f2b838989858589613aa6565b600086815260d6602090815260408083206001600160a01b038c16845290915290205485811015613f6e5760405162461bcd60e51b8152600401610a2c90615990565b600087815260d6602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613fad9084906152ab565b92505081905550876001600160a01b0316896001600160a01b0316856001600160a01b0316600080516020615b908339815191528a8a604051613ff19291906150ec565b60405180910390a4614007848a8a8a8a8a6142bb565b505050505050505050565b614024846001600160a01b0316612524565b1561119b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061405d90899089908890889088906004016159da565b6020604051808303816000875af1925050508015614098575060408051601f3d908101601f1916820190925261409591810190615a2c565b60015b614145576140a4615a49565b806308c379a014156140de57506140b9615a64565b806140c457506140e0565b8060405162461bcd60e51b8152600401610a2c9190614765565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610a2c565b6001600160e01b0319811663bc197c8160e01b14612ae05760405162461bcd60e51b8152600401610a2c90615aed565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146141c2576040519150601f19603f3d011682016040523d82523d6000602084013e6141c7565b606091505b50509050806116fb5760405162461bcd60e51b815260206004820152601c60248201527b1b985d1a5d99481d1bdad95b881d1c985b9cd9995c8819985a5b195960221b6044820152606401610a2c565b816001600160a01b0316836001600160a01b0316141561423657612ed9565b6001600160a01b03831630141561425b5761394d6001600160a01b038516838361437d565b612ed96001600160a01b0385168484846143d3565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106142aa576142aa6152c3565b602090810291909101015292915050565b6142cd846001600160a01b0316612524565b1561119b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906143069089908990889088908890600401615b35565b6020604051808303816000875af1925050508015614341575060408051601f3d908101601f1916820190925261433e91810190615a2c565b60015b61434d576140a4615a49565b6001600160e01b0319811663f23a6e6160e01b14612ae05760405162461bcd60e51b8152600401610a2c90615aed565b6116fb8363a9059cbb60e01b848460405160240161439c9291906148cb565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261440b565b6040516001600160a01b0380851660248301528316604482015260648101829052612ed99085906323b872dd60e01b9060840161439c565b6000614460826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144dd9092919063ffffffff16565b8051909150156116fb578080602001905181019061447e9190615696565b6116fb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a2c565b60606115e48484600085856144f185612524565b61453d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a2c565b600080866001600160a01b0316858760405161455991906158ee565b60006040518083038185875af1925050503d8060008114614596576040519150601f19603f3d011682016040523d82523d6000602084013e61459b565b606091505b50915091506145ab828286613c68565b979650505050505050565b5080546145c290615209565b6000825580601f106145d2575050565b601f016020900490600052602060002090810190610b949190614674565b8280546145fc90615209565b90600052602060002090601f01602090048101928261461e5760008555614664565b82601f1061463757805160ff1916838001178555614664565b82800160010185558215614664579182015b82811115614664578251825591602001919060010190614649565b50614670929150614674565b5090565b5b808211156146705760008155600101614675565b6001600160a01b0381168114610b9457600080fd5b80356146a981614689565b919050565b600080604083850312156146c157600080fd5b82356146cc81614689565b946020939093013593505050565b6001600160e01b031981168114610b9457600080fd5b60006020828403121561470257600080fd5b8135613645816146da565b60005b83811015614728578181015183820152602001614710565b83811115612ed95750506000910152565b6000815180845261475181602086016020860161470d565b601f01601f19169290920160200192915050565b6020815260006136456020830184614739565b6001600160a01b0391909116815260200190565b60006020828403121561479e57600080fd5b5035919050565b6000602082840312156147b757600080fd5b813561364581614689565b60008083601f8401126147d457600080fd5b5081356001600160401b038111156147eb57600080fd5b6020830191508360208260051b850101111561480657600080fd5b9250929050565b8015158114610b9457600080fd5b6000806000806060858703121561483157600080fd5b8435935060208501356001600160401b0381111561484e57600080fd5b61485a878288016147c2565b909450925050604085013561486e8161480d565b939692955090935050565b6000806040838503121561488c57600080fd5b82359150602083013561489e81614689565b809150509250929050565b600080604083850312156148bc57600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561491f5761491f6148e4565b6040525050565b60006001600160401b0382111561493f5761493f6148e4565b5060051b60200190565b600082601f83011261495a57600080fd5b8135602061496782614926565b60405161497482826148fa565b83815260059390931b850182019282810191508684111561499457600080fd5b8286015b848110156149af5780358352918301918301614998565b509695505050505050565b600082601f8301126149cb57600080fd5b81356001600160401b038111156149e4576149e46148e4565b6040516149fb601f8301601f1916602001826148fa565b818152846020838601011115614a1057600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614a4557600080fd5b8535614a5081614689565b94506020860135614a6081614689565b935060408601356001600160401b0380821115614a7c57600080fd5b614a8889838a01614949565b94506060880135915080821115614a9e57600080fd5b614aaa89838a01614949565b93506080880135915080821115614ac057600080fd5b50614acd888289016149ba565b9150509295509295909350565b600082601f830112614aeb57600080fd5b81356020614af882614926565b604051614b0582826148fa565b83815260059390931b8501820192828101915086841115614b2557600080fd5b8286015b848110156149af578035614b3c81614689565b8352918301918301614b29565b60008060408385031215614b5c57600080fd5b82356001600160401b0380821115614b7357600080fd5b614b7f86838701614ada565b93506020850135915080821115614b9557600080fd5b50614ba285828601614949565b9150509250929050565b600081518084526020808501945080840160005b83811015614bdc57815187529582019590820190600101614bc0565b509495945050505050565b6020815260006136456020830184614bac565b600060808284031215611aed57600080fd5b600080600080600080600060e0888a031215614c2757600080fd5b8735614c3281614689565b965060208801359550604088013594506060880135614c5081614689565b93506080880135925060a08801356001600160401b0380821115614c7357600080fd5b614c7f8b838c01614bfa565b935060c08a0135915080821115614c9557600080fd5b50614ca28a828b016149ba565b91505092959891949750929550565b600080600060608486031215614cc657600080fd5b83359250602084013591506040840135614cdf81614689565b809150509250925092565b600080600060608486031215614cff57600080fd5b8335614d0a81614689565b925060208401356001600160401b0380821115614d2657600080fd5b614d3287838801614949565b93506040860135915080821115614d4857600080fd5b50614d5586828701614949565b9150509250925092565b600060208284031215614d7157600080fd5b81356001600160401b03811115614d8757600080fd5b6115e4848285016149ba565b600080600060608486031215614da857600080fd5b833592506020840135614dba81614689565b929592945050506040919091013590565b60008060408385031215614dde57600080fd5b8235614de981614689565b9150602083013561489e8161480d565b60008060208385031215614e0c57600080fd5b82356001600160401b03811115614e2257600080fd5b614e2e858286016147c2565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015614e8f57603f19888603018452614e7d858351614739565b94509285019290850190600101614e61565b5092979650505050505050565b60008083601f840112614eae57600080fd5b5081356001600160401b03811115614ec557600080fd5b60208301915083602082850101111561480657600080fd5b600080600080600060608688031215614ef557600080fd5b8535945060208601356001600160401b0380821115614f1357600080fd5b614f1f89838a01614e9c565b90965094506040880135915080821115614f3857600080fd5b50614f4588828901614e9c565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260018060a01b0360c08301511660e0820152600060e08301516101008081850152506115e4610120840182614739565b80356001600160801b03811681146146a957600080fd5b6000806000806000806000806000806101408b8d031215614ffa57600080fd5b6150038b61469e565b995060208b01356001600160401b038082111561501f57600080fd5b61502b8e838f016149ba565b9a5060408d013591508082111561504157600080fd5b61504d8e838f016149ba565b995060608d013591508082111561506357600080fd5b61506f8e838f016149ba565b985060808d013591508082111561508557600080fd5b506150928d828e01614ada565b9650506150a160a08c0161469e565b94506150af60c08c0161469e565b93506150bd60e08c01614fc3565b92506150cc6101008c01614fc3565b91506150db6101208c0161469e565b90509295989b9194979a5092959850565b918252602082015260400190565b6000806040838503121561510d57600080fd5b823561511881614689565b9150602083013561489e81614689565b600080600080600080600060e0888a03121561514357600080fd5b87359650602088013561515581614689565b95506040880135945060608801359350608088013561517381614689565b925060a0880135915060c08801356001600160401b0381111561519557600080fd5b614ca28a828b01614bfa565b600080600080600060a086880312156151b957600080fd5b85356151c481614689565b945060208601356151d481614689565b9350604086013592506060860135915060808601356001600160401b038111156151fd57600080fd5b614acd888289016149ba565b600181811c9082168061521d57607f821691505b60208210811415611aed57634e487b7160e01b600052602260045260246000fd5b6000835161525081846020880161470d565b83519083019061526481836020880161470d565b01949350505050565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156152be576152be615295565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe198336030181126152ef57600080fd5b9190910192915050565b6000808335601e1984360301811261531057600080fd5b8301803591506001600160401b0382111561532a57600080fd5b60200191503681900382131561480657600080fd5b601f8211156116fb57600081815260208120601f850160051c810160208610156153665750805b601f850160051c820191505b8181101561119b57828155600101615372565b6001600160401b0383111561539c5761539c6148e4565b6153b0836153aa8354615209565b8361533f565b6000601f8411600181146153e457600085156153cc5750838201355b600019600387901b1c1916600186901b1783556129e6565b600083815260209020601f19861690835b8281101561541557868501358255602094850194600190920191016153f5565b50868210156154325760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c083013561548c81614689565b81546001600160a01b0319166001600160a01b03919091161790556154b460e08301836152f9565b612ed9818360078601615385565b60006000198214156154d6576154d6615295565b5060010190565b6000808335601e198436030181126154f457600080fd5b83016020810192503590506001600160401b0381111561551357600080fd5b80360383131561480657600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561561d57888403605f190185528235368d900360fe19018112615590578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c0808401356155d781614689565b6001600160a01b03169088015260e06155f2848201856154dd565b945083828a0152615606848a018683615522565b99830199985050509490940193505060010161556b565b505050861515602087015293506115e492505050565b600081600019048311821515161561564d5761564d615295565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261567757615677615652565b500490565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156156a857600080fd5b81516136458161480d565b6000828210156156c5576156c5615295565b500390565b6000816156d9576156d9615295565b506000190190565b8581526060602082015260006156fb606083018688615522565b828103604084015261570e818587615522565b98975050505050505050565b6000808335601e1984360301811261573157600080fd5b8301803591506001600160401b0382111561574b57600080fd5b6020019150600581901b360382131561480657600080fd5b60008261577257615772615652565b500690565b6020808252600f908201526e45786365656473206d61782062707360881b604082015260600190565b7402832b936b4b9b9b4b7b7399d1030b1b1b7bab73a1605d1b8152600083516157d081601585016020880161470d565b7001034b99036b4b9b9b4b733903937b6329607d1b601591840191820152835161580181602684016020880161470d565b01602601949350505050565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6040815260006158b76040830185614bac565b82810360208401526132758185614bac565b6040815260006158dc6040830185614739565b82810360208401526132758185614739565b600082516152ef81846020870161470d565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090615a0690830186614bac565b8281036060840152615a188186614bac565b9050828103608084015261570e8185614739565b600060208284031215615a3e57600080fd5b8151613645816146da565b600060033d1115613aa35760046000803e5060005160e01c90565b600060443d1015615a725790565b6040516003193d81016004833e81513d6001600160401b038083116024840183101715615aa157505050505090565b8285019150815181811115615ab95750505050505090565b843d8701016020828501011115615ad35750505050505090565b615ae2602082860101876148fa565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906145ab9083018461473956fe4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220152793b5b201eaa0fc5987d69ca8d4cd0b7e003cc1e851cdcd5f94027bba0a4264736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.