Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ERC721CreatorImplementation
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@manifoldxyz/libraries-solidity/contracts/access/AdminControlUpgradeable.sol"; import "./core/ERC721CreatorCore.sol"; /** * @dev ERC721Creator implementation */ contract ERC721CreatorImplementation is AdminControlUpgradeable, ERC721Upgradeable, ERC721CreatorCore { /** * Initializer */ function initialize(string memory _name, string memory _symbol) public initializer { __ERC721_init(_name, _symbol); __Ownable_init(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Upgradeable, ERC721CreatorCore, AdminControlUpgradeable) returns (bool) { return ERC721CreatorCore.supportsInterface(interfaceId) || ERC721Upgradeable.supportsInterface(interfaceId) || AdminControlUpgradeable.supportsInterface(interfaceId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { _approveTransfer(from, to, tokenId); } /** * @dev See {ICreatorCore-registerExtension}. */ function registerExtension(address extension, string calldata baseURI) external override adminRequired { requireNonBlacklist(extension); _registerExtension(extension, baseURI, false); } /** * @dev See {ICreatorCore-registerExtension}. */ function registerExtension(address extension, string calldata baseURI, bool baseURIIdentical) external override adminRequired { requireNonBlacklist(extension); _registerExtension(extension, baseURI, baseURIIdentical); } /** * @dev See {ICreatorCore-unregisterExtension}. */ function unregisterExtension(address extension) external override adminRequired { _unregisterExtension(extension); } /** * @dev See {ICreatorCore-blacklistExtension}. */ function blacklistExtension(address extension) external override adminRequired { _blacklistExtension(extension); } /** * @dev See {ICreatorCore-setBaseTokenURIExtension}. */ function setBaseTokenURIExtension(string calldata uri) external override { requireExtension(); _setBaseTokenURIExtension(uri, false); } /** * @dev See {ICreatorCore-setBaseTokenURIExtension}. */ function setBaseTokenURIExtension(string calldata uri, bool identical) external override { requireExtension(); _setBaseTokenURIExtension(uri, identical); } /** * @dev See {ICreatorCore-setTokenURIPrefixExtension}. */ function setTokenURIPrefixExtension(string calldata prefix) external override { requireExtension(); _setTokenURIPrefixExtension(prefix); } /** * @dev See {ICreatorCore-setTokenURIExtension}. */ function setTokenURIExtension(uint256 tokenId, string calldata uri) external override { requireExtension(); _setTokenURIExtension(tokenId, uri); } /** * @dev See {ICreatorCore-setTokenURIExtension}. */ function setTokenURIExtension(uint256[] memory tokenIds, string[] calldata uris) external override { requireExtension(); require(tokenIds.length == uris.length, "Invalid input"); for (uint i; i < tokenIds.length;) { _setTokenURIExtension(tokenIds[i], uris[i]); unchecked { ++i; } } } /** * @dev See {ICreatorCore-setBaseTokenURI}. */ function setBaseTokenURI(string calldata uri) external override adminRequired { _setBaseTokenURI(uri); } /** * @dev See {ICreatorCore-setTokenURIPrefix}. */ function setTokenURIPrefix(string calldata prefix) external override adminRequired { _setTokenURIPrefix(prefix); } /** * @dev See {ICreatorCore-setTokenURI}. */ function setTokenURI(uint256 tokenId, string calldata uri) external override adminRequired { _setTokenURI(tokenId, uri); } /** * @dev See {ICreatorCore-setTokenURI}. */ function setTokenURI(uint256[] memory tokenIds, string[] calldata uris) external override adminRequired { require(tokenIds.length == uris.length, "Invalid input"); for (uint i; i < tokenIds.length;) { _setTokenURI(tokenIds[i], uris[i]); unchecked { ++i; } } } /** * @dev See {ICreatorCore-setMintPermissions}. */ function setMintPermissions(address extension, address permissions) external override adminRequired { _setMintPermissions(extension, permissions); } /** * @dev See {IERC721CreatorCore-mintBase}. */ function mintBase(address to) public virtual override nonReentrant adminRequired returns(uint256) { return _mintBase(to, ""); } /** * @dev See {IERC721CreatorCore-mintBase}. */ function mintBase(address to, string calldata uri) public virtual override nonReentrant adminRequired returns(uint256) { return _mintBase(to, uri); } /** * @dev See {IERC721CreatorCore-mintBaseBatch}. */ function mintBaseBatch(address to, uint16 count) public virtual override nonReentrant adminRequired returns(uint256[] memory tokenIds) { tokenIds = new uint256[](count); for (uint16 i; i < count;) { tokenIds[i] = _mintBase(to, ""); unchecked { ++i; } } } /** * @dev See {IERC721CreatorCore-mintBaseBatch}. */ function mintBaseBatch(address to, string[] calldata uris) public virtual override nonReentrant adminRequired returns(uint256[] memory tokenIds) { tokenIds = new uint256[](uris.length); for (uint i; i < uris.length;) { tokenIds[i] = _mintBase(to, uris[i]); unchecked { ++i; } } } /** * @dev Mint token with no extension */ function _mintBase(address to, string memory uri) internal virtual returns(uint256 tokenId) { ++_tokenCount; tokenId = _tokenCount; _safeMint(to, tokenId); if (bytes(uri).length > 0) { _tokenURIs[tokenId] = uri; } // Call post mint _postMintBase(to, tokenId); } /** * @dev See {IERC721CreatorCore-mintExtension}. */ function mintExtension(address to) public virtual override nonReentrant returns(uint256) { requireExtension(); return _mintExtension(to, ""); } /** * @dev See {IERC721CreatorCore-mintExtension}. */ function mintExtension(address to, string calldata uri) public virtual override nonReentrant returns(uint256) { requireExtension(); return _mintExtension(to, uri); } /** * @dev See {IERC721CreatorCore-mintExtensionBatch}. */ function mintExtensionBatch(address to, uint16 count) public virtual override nonReentrant returns(uint256[] memory tokenIds) { requireExtension(); tokenIds = new uint256[](count); for (uint i = 0; i < count;) { tokenIds[i] = _mintExtension(to, ""); unchecked { ++i; } } } /** * @dev See {IERC721CreatorCore-mintExtensionBatch}. */ function mintExtensionBatch(address to, string[] calldata uris) public virtual override nonReentrant returns(uint256[] memory tokenIds) { requireExtension(); tokenIds = new uint256[](uris.length); for (uint i; i < uris.length;) { tokenIds[i] = _mintExtension(to, uris[i]); unchecked { ++i; } } } /** * @dev Mint token via extension */ function _mintExtension(address to, string memory uri) internal virtual returns(uint256 tokenId) { ++_tokenCount; tokenId = _tokenCount; _checkMintPermissions(to, tokenId); // Track the extension that minted the token _tokensExtension[tokenId] = msg.sender; _safeMint(to, tokenId); if (bytes(uri).length > 0) { _tokenURIs[tokenId] = uri; } // Call post mint _postMintExtension(to, tokenId); } /** * @dev See {IERC721CreatorCore-tokenExtension}. */ function tokenExtension(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "Nonexistent token"); return _tokenExtension(tokenId); } /** * @dev See {IERC721CreatorCore-burn}. */ function burn(uint256 tokenId) public virtual override nonReentrant { require(_isApprovedOrOwner(msg.sender, tokenId), "Caller is not owner nor approved"); address owner = ownerOf(tokenId); _burn(tokenId); _postBurn(owner, tokenId); } /** * @dev See {ICreatorCore-setRoyalties}. */ function setRoyalties(address payable[] calldata receivers, uint256[] calldata basisPoints) external override adminRequired { _setRoyaltiesExtension(address(0), receivers, basisPoints); } /** * @dev See {ICreatorCore-setRoyalties}. */ function setRoyalties(uint256 tokenId, address payable[] calldata receivers, uint256[] calldata basisPoints) external override adminRequired { require(_exists(tokenId), "Nonexistent token"); _setRoyalties(tokenId, receivers, basisPoints); } /** * @dev See {ICreatorCore-setRoyaltiesExtension}. */ function setRoyaltiesExtension(address extension, address payable[] calldata receivers, uint256[] calldata basisPoints) external override adminRequired { _setRoyaltiesExtension(extension, receivers, basisPoints); } /** * @dev See {ICreatorCore-getRoyalties}. */ function getRoyalties(uint256 tokenId) external view virtual override returns (address payable[] memory, uint256[] memory) { require(_exists(tokenId), "Nonexistent token"); return _getRoyalties(tokenId); } /** * @dev See {ICreatorCore-getFees}. */ function getFees(uint256 tokenId) external view virtual override returns (address payable[] memory, uint256[] memory) { require(_exists(tokenId), "Nonexistent token"); return _getRoyalties(tokenId); } /** * @dev See {ICreatorCore-getFeeRecipients}. */ function getFeeRecipients(uint256 tokenId) external view virtual override returns (address payable[] memory) { require(_exists(tokenId), "Nonexistent token"); return _getRoyaltyReceivers(tokenId); } /** * @dev See {ICreatorCore-getFeeBps}. */ function getFeeBps(uint256 tokenId) external view virtual override returns (uint[] memory) { require(_exists(tokenId), "Nonexistent token"); return _getRoyaltyBPS(tokenId); } /** * @dev See {ICreatorCore-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 value) external view virtual override returns (address, uint256) { require(_exists(tokenId), "Nonexistent token"); return _getRoyaltyInfo(tokenId, value); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return _tokenURI(tokenId); } /** * @dev See {ICreatorCore-setApproveTransfer}. */ function setApproveTransfer(address extension) external override adminRequired { _setApproveTransferBase(extension); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "../extensions/ICreatorExtensionTokenURI.sol"; import "../extensions/ICreatorExtensionRoyalties.sol"; import "./ICreatorCore.sol"; /** * @dev Core creator implementation */ abstract contract CreatorCore is ReentrancyGuard, ICreatorCore, ERC165 { using Strings for uint256; using EnumerableSet for EnumerableSet.AddressSet; using AddressUpgradeable for address; uint256 internal _tokenCount = 0; // Base approve transfers address location address internal _approveTransferBase; // Track registered extensions data EnumerableSet.AddressSet internal _extensions; EnumerableSet.AddressSet internal _blacklistedExtensions; mapping (address => address) internal _extensionPermissions; mapping (address => bool) internal _extensionApproveTransfers; // For tracking which extension a token was minted by mapping (uint256 => address) internal _tokensExtension; // The baseURI for a given extension mapping (address => string) private _extensionBaseURI; mapping (address => bool) private _extensionBaseURIIdentical; // The prefix for any tokens with a uri configured mapping (address => string) private _extensionURIPrefix; // Mapping for individual token URIs mapping (uint256 => string) internal _tokenURIs; // Royalty configurations struct RoyaltyConfig { address payable receiver; uint16 bps; } mapping (address => RoyaltyConfig[]) internal _extensionRoyalty; mapping (uint256 => RoyaltyConfig[]) internal _tokenRoyalty; bytes4 private constant _CREATOR_CORE_V1 = 0x28f10a21; /** * External interface identifiers for royalties */ /** * @dev CreatorCore * * bytes4(keccak256('getRoyalties(uint256)')) == 0xbb3bafd6 * * => 0xbb3bafd6 = 0xbb3bafd6 */ bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6; /** * @dev Rarible: RoyaltiesV1 * * bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb * bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f * * => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584 */ bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584; /** * @dev Foundation * * bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c * * => 0xd5a06d4c = 0xd5a06d4c */ bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c; /** * @dev EIP-2981 * * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * * => 0x2a55205a = 0x2a55205a */ bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(ICreatorCore).interfaceId || interfaceId == _CREATOR_CORE_V1 || super.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE || interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981; } /** * @dev Only allows registered extensions to call the specified function */ function requireExtension() internal view { require(_extensions.contains(msg.sender), "Must be registered extension"); } /** * @dev Only allows non-blacklisted extensions */ function requireNonBlacklist(address extension) internal view { require(!_blacklistedExtensions.contains(extension), "Extension blacklisted"); } /** * @dev See {ICreatorCore-getExtensions}. */ function getExtensions() external view override returns (address[] memory extensions) { extensions = new address[](_extensions.length()); for (uint i; i < _extensions.length();) { extensions[i] = _extensions.at(i); unchecked { ++i; } } return extensions; } /** * @dev Register an extension */ function _registerExtension(address extension, string calldata baseURI, bool baseURIIdentical) internal { require(extension != address(this) && extension.isContract(), "Invalid"); emit ExtensionRegistered(extension, msg.sender); _extensionBaseURI[extension] = baseURI; _extensionBaseURIIdentical[extension] = baseURIIdentical; _extensions.add(extension); _setApproveTransferExtension(extension, true); } /** * @dev See {ICreatorCore-setApproveTransferExtension}. */ function setApproveTransferExtension(bool enabled) external override { requireExtension(); _setApproveTransferExtension(msg.sender, enabled); } /** * @dev Set whether or not tokens minted by the extension defers transfer approvals to the extension */ function _setApproveTransferExtension(address extension, bool enabled) internal virtual; /** * @dev Unregister an extension */ function _unregisterExtension(address extension) internal { emit ExtensionUnregistered(extension, msg.sender); _extensions.remove(extension); } /** * @dev Blacklist an extension */ function _blacklistExtension(address extension) internal { require(extension != address(0) && extension != address(this), "Cannot blacklist yourself"); if (_extensions.contains(extension)) { emit ExtensionUnregistered(extension, msg.sender); _extensions.remove(extension); } if (!_blacklistedExtensions.contains(extension)) { emit ExtensionBlacklisted(extension, msg.sender); _blacklistedExtensions.add(extension); } } /** * @dev Set base token uri for an extension */ function _setBaseTokenURIExtension(string calldata uri, bool identical) internal { _extensionBaseURI[msg.sender] = uri; _extensionBaseURIIdentical[msg.sender] = identical; } /** * @dev Set token uri prefix for an extension */ function _setTokenURIPrefixExtension(string calldata prefix) internal { _extensionURIPrefix[msg.sender] = prefix; } /** * @dev Set token uri for a token of an extension */ function _setTokenURIExtension(uint256 tokenId, string calldata uri) internal { require(_tokensExtension[tokenId] == msg.sender, "Invalid token"); _tokenURIs[tokenId] = uri; } /** * @dev Set base token uri for tokens with no extension */ function _setBaseTokenURI(string memory uri) internal { _extensionBaseURI[address(0)] = uri; } /** * @dev Set token uri prefix for tokens with no extension */ function _setTokenURIPrefix(string calldata prefix) internal { _extensionURIPrefix[address(0)] = prefix; } /** * @dev Set token uri for a token with no extension */ function _setTokenURI(uint256 tokenId, string calldata uri) internal { require(tokenId > 0 && tokenId <= _tokenCount && _tokensExtension[tokenId] == address(0), "Invalid token"); _tokenURIs[tokenId] = uri; } /** * @dev Retrieve a token's URI */ function _tokenURI(uint256 tokenId) internal view returns (string memory) { require(tokenId > 0 && tokenId <= _tokenCount, "Invalid token"); address extension = _tokensExtension[tokenId]; require(!_blacklistedExtensions.contains(extension), "Extension blacklisted"); if (bytes(_tokenURIs[tokenId]).length != 0) { if (bytes(_extensionURIPrefix[extension]).length != 0) { return string(abi.encodePacked(_extensionURIPrefix[extension],_tokenURIs[tokenId])); } return _tokenURIs[tokenId]; } if (ERC165Checker.supportsInterface(extension, type(ICreatorExtensionTokenURI).interfaceId)) { return ICreatorExtensionTokenURI(extension).tokenURI(address(this), tokenId); } if (!_extensionBaseURIIdentical[extension]) { return string(abi.encodePacked(_extensionBaseURI[extension], tokenId.toString())); } else { return _extensionBaseURI[extension]; } } /** * Get token extension */ function _tokenExtension(uint256 tokenId) internal view returns (address extension) { extension = _tokensExtension[tokenId]; require(extension != address(0), "No extension for token"); require(!_blacklistedExtensions.contains(extension), "Extension blacklisted"); return extension; } /** * Helper to get royalties for a token */ function _getRoyalties(uint256 tokenId) view internal returns (address payable[] memory receivers, uint256[] memory bps) { // Get token level royalties RoyaltyConfig[] memory royalties = _tokenRoyalty[tokenId]; if (royalties.length == 0) { // Get extension specific royalties address extension = _tokensExtension[tokenId]; if (extension != address(0)) { if (ERC165Checker.supportsInterface(extension, type(ICreatorExtensionRoyalties).interfaceId)) { (receivers, bps) = ICreatorExtensionRoyalties(extension).getRoyalties(address(this), tokenId); // Extension override exists, just return that if (receivers.length > 0) return (receivers, bps); } royalties = _extensionRoyalty[extension]; } } if (royalties.length == 0) { // Get the default royalty royalties = _extensionRoyalty[address(0)]; } if (royalties.length > 0) { receivers = new address payable[](royalties.length); bps = new uint256[](royalties.length); for (uint i; i < royalties.length;) { receivers[i] = royalties[i].receiver; bps[i] = royalties[i].bps; unchecked { ++i; } } } } /** * Helper to get royalty receivers for a token */ function _getRoyaltyReceivers(uint256 tokenId) view internal returns (address payable[] memory recievers) { (recievers, ) = _getRoyalties(tokenId); } /** * Helper to get royalty basis points for a token */ function _getRoyaltyBPS(uint256 tokenId) view internal returns (uint256[] memory bps) { (, bps) = _getRoyalties(tokenId); } function _getRoyaltyInfo(uint256 tokenId, uint256 value) view internal returns (address receiver, uint256 amount){ (address payable[] memory receivers, uint256[] memory bps) = _getRoyalties(tokenId); require(receivers.length <= 1, "More than 1 royalty receiver"); if (receivers.length == 0) { return (address(this), 0); } return (receivers[0], bps[0]*value/10000); } /** * Set royalties for a token */ function _setRoyalties(uint256 tokenId, address payable[] calldata receivers, uint256[] calldata basisPoints) internal { _checkRoyalties(receivers, basisPoints); delete _tokenRoyalty[tokenId]; _setRoyalties(receivers, basisPoints, _tokenRoyalty[tokenId]); emit RoyaltiesUpdated(tokenId, receivers, basisPoints); } /** * Set royalties for all tokens of an extension */ function _setRoyaltiesExtension(address extension, address payable[] calldata receivers, uint256[] calldata basisPoints) internal { _checkRoyalties(receivers, basisPoints); delete _extensionRoyalty[extension]; _setRoyalties(receivers, basisPoints, _extensionRoyalty[extension]); if (extension == address(0)) { emit DefaultRoyaltiesUpdated(receivers, basisPoints); } else { emit ExtensionRoyaltiesUpdated(extension, receivers, basisPoints); } } /** * Helper function to check that royalties provided are valid */ function _checkRoyalties(address payable[] calldata receivers, uint256[] calldata basisPoints) private pure { require(receivers.length == basisPoints.length, "Invalid input"); uint256 totalBasisPoints; for (uint i; i < basisPoints.length;) { totalBasisPoints += basisPoints[i]; unchecked { ++i; } } require(totalBasisPoints < 10000, "Invalid total royalties"); } /** * Helper function to set royalties */ function _setRoyalties(address payable[] calldata receivers, uint256[] calldata basisPoints, RoyaltyConfig[] storage royalties) private { for (uint i; i < basisPoints.length;) { royalties.push( RoyaltyConfig( { receiver: receivers[i], bps: uint16(basisPoints[i]) } ) ); unchecked { ++i; } } } /** * @dev See {ICreatorCore-getApproveTransfer}. */ function getApproveTransfer() external view override returns (address) { return _approveTransferBase; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "../extensions/ERC721/IERC721CreatorExtensionApproveTransfer.sol"; import "../extensions/ERC721/IERC721CreatorExtensionBurnable.sol"; import "../permissions/ERC721/IERC721CreatorMintPermissions.sol"; import "./IERC721CreatorCore.sol"; import "./CreatorCore.sol"; /** * @dev Core ERC721 creator implementation */ abstract contract ERC721CreatorCore is CreatorCore, IERC721CreatorCore { uint256 constant public VERSION = 2; using EnumerableSet for EnumerableSet.AddressSet; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(CreatorCore, IERC165) returns (bool) { return interfaceId == type(IERC721CreatorCore).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {CreatorCore-_setApproveTransferExtension} */ function _setApproveTransferExtension(address extension, bool enabled) internal override { if (ERC165Checker.supportsInterface(extension, type(IERC721CreatorExtensionApproveTransfer).interfaceId)) { _extensionApproveTransfers[extension] = enabled; emit ExtensionApproveTransferUpdated(extension, enabled); } } /** * @dev Set the base contract's approve transfer contract location */ function _setApproveTransferBase(address extension) internal { _approveTransferBase = extension; emit ApproveTransferUpdated(extension); } /** * @dev Set mint permissions for an extension */ function _setMintPermissions(address extension, address permissions) internal { require(_extensions.contains(extension), "CreatorCore: Invalid extension"); require(permissions == address(0) || ERC165Checker.supportsInterface(permissions, type(IERC721CreatorMintPermissions).interfaceId), "Invalid address"); if (_extensionPermissions[extension] != permissions) { _extensionPermissions[extension] = permissions; emit MintPermissionsUpdated(extension, permissions, msg.sender); } } /** * Check if an extension can mint */ function _checkMintPermissions(address to, uint256 tokenId) internal { if (_extensionPermissions[msg.sender] != address(0)) { IERC721CreatorMintPermissions(_extensionPermissions[msg.sender]).approveMint(msg.sender, to, tokenId); } } /** * Override for post mint actions */ function _postMintBase(address, uint256) internal virtual {} /** * Override for post mint actions */ function _postMintExtension(address, uint256) internal virtual {} /** * Post-burning callback and metadata cleanup */ function _postBurn(address owner, uint256 tokenId) internal virtual { // Callback to originating extension if needed if (_tokensExtension[tokenId] != address(0)) { if (ERC165Checker.supportsInterface(_tokensExtension[tokenId], type(IERC721CreatorExtensionBurnable).interfaceId)) { IERC721CreatorExtensionBurnable(_tokensExtension[tokenId]).onBurn(owner, tokenId); } } // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } // Delete token origin extension tracking delete _tokensExtension[tokenId]; } /** * Approve a transfer */ function _approveTransfer(address from, address to, uint256 tokenId) internal { if (_extensionApproveTransfers[_tokensExtension[tokenId]]) { require(IERC721CreatorExtensionApproveTransfer(_tokensExtension[tokenId]).approveTransfer(msg.sender, from, to, tokenId), "Extension approval failure"); } else if (_approveTransferBase != address(0)) { require(IERC721CreatorExtensionApproveTransfer(_approveTransferBase).approveTransfer(msg.sender, from, to, tokenId), "Extension approval failure"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Core creator interface */ interface ICreatorCore is IERC165 { event ExtensionRegistered(address indexed extension, address indexed sender); event ExtensionUnregistered(address indexed extension, address indexed sender); event ExtensionBlacklisted(address indexed extension, address indexed sender); event MintPermissionsUpdated(address indexed extension, address indexed permissions, address indexed sender); event RoyaltiesUpdated(uint256 indexed tokenId, address payable[] receivers, uint256[] basisPoints); event DefaultRoyaltiesUpdated(address payable[] receivers, uint256[] basisPoints); event ApproveTransferUpdated(address extension); event ExtensionRoyaltiesUpdated(address indexed extension, address payable[] receivers, uint256[] basisPoints); event ExtensionApproveTransferUpdated(address indexed extension, bool enabled); /** * @dev gets address of all extensions */ function getExtensions() external view returns (address[] memory); /** * @dev add an extension. Can only be called by contract owner or admin. * extension address must point to a contract implementing ICreatorExtension. * Returns True if newly added, False if already added. */ function registerExtension(address extension, string calldata baseURI) external; /** * @dev add an extension. Can only be called by contract owner or admin. * extension address must point to a contract implementing ICreatorExtension. * Returns True if newly added, False if already added. */ function registerExtension(address extension, string calldata baseURI, bool baseURIIdentical) external; /** * @dev add an extension. Can only be called by contract owner or admin. * Returns True if removed, False if already removed. */ function unregisterExtension(address extension) external; /** * @dev blacklist an extension. Can only be called by contract owner or admin. * This function will destroy all ability to reference the metadata of any tokens created * by the specified extension. It will also unregister the extension if needed. * Returns True if removed, False if already removed. */ function blacklistExtension(address extension) external; /** * @dev set the baseTokenURI of an extension. Can only be called by extension. */ function setBaseTokenURIExtension(string calldata uri) external; /** * @dev set the baseTokenURI of an extension. Can only be called by extension. * For tokens with no uri configured, tokenURI will return "uri+tokenId" */ function setBaseTokenURIExtension(string calldata uri, bool identical) external; /** * @dev set the common prefix of an extension. Can only be called by extension. * If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI" * Useful if you want to use ipfs/arweave */ function setTokenURIPrefixExtension(string calldata prefix) external; /** * @dev set the tokenURI of a token extension. Can only be called by extension that minted token. */ function setTokenURIExtension(uint256 tokenId, string calldata uri) external; /** * @dev set the tokenURI of a token extension for multiple tokens. Can only be called by extension that minted token. */ function setTokenURIExtension(uint256[] memory tokenId, string[] calldata uri) external; /** * @dev set the baseTokenURI for tokens with no extension. Can only be called by owner/admin. * For tokens with no uri configured, tokenURI will return "uri+tokenId" */ function setBaseTokenURI(string calldata uri) external; /** * @dev set the common prefix for tokens with no extension. Can only be called by owner/admin. * If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI" * Useful if you want to use ipfs/arweave */ function setTokenURIPrefix(string calldata prefix) external; /** * @dev set the tokenURI of a token with no extension. Can only be called by owner/admin. */ function setTokenURI(uint256 tokenId, string calldata uri) external; /** * @dev set the tokenURI of multiple tokens with no extension. Can only be called by owner/admin. */ function setTokenURI(uint256[] memory tokenIds, string[] calldata uris) external; /** * @dev set a permissions contract for an extension. Used to control minting. */ function setMintPermissions(address extension, address permissions) external; /** * @dev Configure so transfers of tokens created by the caller (must be extension) gets approval * from the extension before transferring */ function setApproveTransferExtension(bool enabled) external; /** * @dev get the extension of a given token */ function tokenExtension(uint256 tokenId) external view returns (address); /** * @dev Set default royalties */ function setRoyalties(address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Set royalties of a token */ function setRoyalties(uint256 tokenId, address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Set royalties of an extension */ function setRoyaltiesExtension(address extension, address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Get royalites of a token. Returns list of receivers and basisPoints */ function getRoyalties(uint256 tokenId) external view returns (address payable[] memory, uint256[] memory); // Royalty support for various other standards function getFeeRecipients(uint256 tokenId) external view returns (address payable[] memory); function getFeeBps(uint256 tokenId) external view returns (uint[] memory); function getFees(uint256 tokenId) external view returns (address payable[] memory, uint256[] memory); function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256); /** * @dev Set the default approve transfer contract location. */ function setApproveTransfer(address extension) external; /** * @dev Get the default approve transfer contract location. */ function getApproveTransfer() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "./ICreatorCore.sol"; /** * @dev Core ERC721 creator interface */ interface IERC721CreatorCore is ICreatorCore { /** * @dev mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBase(address to) external returns (uint256); /** * @dev mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBase(address to, string calldata uri) external returns (uint256); /** * @dev batch mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBaseBatch(address to, uint16 count) external returns (uint256[] memory); /** * @dev batch mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBaseBatch(address to, string[] calldata uris) external returns (uint256[] memory); /** * @dev mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtension(address to) external returns (uint256); /** * @dev mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtension(address to, string calldata uri) external returns (uint256); /** * @dev batch mint a token. Can only be called by a registered extension. * Returns tokenIds minted */ function mintExtensionBatch(address to, uint16 count) external returns (uint256[] memory); /** * @dev batch mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtensionBatch(address to, string[] calldata uris) external returns (uint256[] memory); /** * @dev burn a token. Can only be called by token owner or approved address. * On burn, calls back to the registered extension's onBurn method */ function burn(uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * Implement this if you want your extension to approve a transfer */ interface IERC721CreatorExtensionApproveTransfer is IERC165 { /** * @dev Set whether or not the creator will check the extension for approval of token transfer */ function setApproveTransfer(address creator, bool enabled) external; /** * @dev Called by creator contract to approve a transfer */ function approveTransfer(address operator, address from, address to, uint256 tokenId) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Your extension is required to implement this interface if it wishes * to receive the onBurn callback whenever a token the extension created is * burned */ interface IERC721CreatorExtensionBurnable is IERC165 { /** * @dev callback handler for burn events */ function onBurn(address owner, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Implement this if you want your extension to have overloadable royalties */ interface ICreatorExtensionRoyalties is IERC165 { /** * Get the royalties for a given creator/tokenId */ function getRoyalties(address creator, uint256 tokenId) external view returns (address payable[] memory, uint256[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Implement this if you want your extension to have overloadable URI's */ interface ICreatorExtensionTokenURI is IERC165 { /** * Get the uri for a given creator/tokenId */ function tokenURI(address creator, uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721Creator compliant extension contracts. */ interface IERC721CreatorMintPermissions is IERC165 { /** * @dev get approval to mint */ function approveMint(address extension, address to, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "./IAdminControl.sol"; abstract contract AdminControlUpgradeable is OwnableUpgradeable, IAdminControl, ERC165 { using EnumerableSet for EnumerableSet.AddressSet; // Track registered admins EnumerableSet.AddressSet private _admins; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IAdminControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Only allows approved admins to call the specified function */ modifier adminRequired() { require(owner() == msg.sender || _admins.contains(msg.sender), "AdminControl: Must be owner or admin"); _; } /** * @dev See {IAdminControl-getAdmins}. */ function getAdmins() external view override returns (address[] memory admins) { admins = new address[](_admins.length()); for (uint i = 0; i < _admins.length(); i++) { admins[i] = _admins.at(i); } return admins; } /** * @dev See {IAdminControl-approveAdmin}. */ function approveAdmin(address admin) external override onlyOwner { if (!_admins.contains(admin)) { emit AdminApproved(admin, msg.sender); _admins.add(admin); } } /** * @dev See {IAdminControl-revokeAdmin}. */ function revokeAdmin(address admin) external override onlyOwner { if (_admins.contains(admin)) { emit AdminRevoked(admin, msg.sender); _admins.remove(admin); } } /** * @dev See {IAdminControl-isAdmin}. */ function isAdmin(address admin) public override view returns (bool) { return (owner() == admin || _admins.contains(admin)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface for admin control */ interface IAdminControl is IERC165 { event AdminApproved(address indexed account, address indexed sender); event AdminRevoked(address indexed account, address indexed sender); /** * @dev gets address of all admins */ function getAdmins() external view returns (address[] memory); /** * @dev add an admin. Can only be called by contract owner. */ function approveAdmin(address admin) external; /** * @dev remove an admin. Can only be called by contract owner. */ function revokeAdmin(address admin) external; /** * @dev checks whether or not given address is an admin * Returns True if they are */ function isAdmin(address admin) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @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[49] private __gap; }
// 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/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @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, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @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[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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 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 (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 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.2) (utils/introspection/ERC165Checker.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface, */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return _supportsERC165Interface(account, type(IERC165).interfaceId) && !_supportsERC165Interface(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && _supportsERC165Interface(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in _interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!_supportsERC165Interface(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) { // prepare call bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId); // perform static call bool success; uint256 returnSize; uint256 returnValue; assembly { success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20) returnSize := returndatasize() returnValue := mload(0x00) } return success && returnSize >= 0x20 && returnValue > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { 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 (last updated v4.7.0) (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"extension","type":"address"}],"name":"ApproveTransferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable[]","name":"receivers","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"DefaultRoyaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"ExtensionApproveTransferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"ExtensionBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"ExtensionRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":false,"internalType":"address payable[]","name":"receivers","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"ExtensionRoyaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"ExtensionUnregistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"extension","type":"address"},{"indexed":true,"internalType":"address","name":"permissions","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"MintPermissionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address payable[]","name":"receivers","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"RoyaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"}],"name":"blacklistExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getApproveTransfer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExtensions","outputs":[{"internalType":"address[]","name":"extensions","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mintBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"mintBaseBatch","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mintBaseBatch","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintExtension","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mintExtension","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"mintExtensionBatch","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mintExtensionBatch","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"},{"internalType":"string","name":"baseURI","type":"string"}],"name":"registerExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"baseURIIdentical","type":"bool"}],"name":"registerExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"}],"name":"setApproveTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setApproveTransferExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"bool","name":"identical","type":"bool"}],"name":"setBaseTokenURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"},{"internalType":"address","name":"permissions","type":"address"}],"name":"setMintPermissions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address payable[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"},{"internalType":"address payable[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"basisPoints","type":"uint256[]"}],"name":"setRoyaltiesExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"setTokenURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prefix","type":"string"}],"name":"setTokenURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prefix","type":"string"}],"name":"setTokenURIPrefixExtension","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":"tokenId","type":"uint256"}],"name":"tokenExtension","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"extension","type":"address"}],"name":"unregisterExtension","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060cc5534801561001557600080fd5b506001606555615cf5806200002b6000396000f3fe608060405234801561001057600080fd5b506004361061038e5760003560e01c80636d73e669116101de578063ad2d0ddd1161010f578063d5a06d4c116100ad578063f0cdc4991161007c578063f0cdc4991461080e578063f2fde38b14610821578063fe2e1f5814610834578063ffa1ad741461084757600080fd5b8063d5a06d4c14610765578063e00aab4b146107ac578063e92a89f6146107bf578063e985e9c5146107d257600080fd5b8063b9c4d9fb116100e9578063b9c4d9fb14610745578063bb3bafd614610765578063c87b56dd14610786578063ce8aee9d1461079957600080fd5b8063ad2d0ddd1461070c578063b0fe87c91461071f578063b88d4fde1461073257600080fd5b806383b7db631161017c57806399e0dd7c1161015657806399e0dd7c146106c0578063a22cb465146106d3578063aafb2d44146106e6578063ac0c8cfa146106f957600080fd5b806383b7db631461069f5780638da5cb5b146106a757806395d89b41146106b857600080fd5b806372ff03d3116101b857806372ff03d3146106535780637884af44146106665780637aa15f161461067957806382dcc0c81461068c57600080fd5b80636d73e6691461062557806370a0823114610638578063715018a61461064b57600080fd5b80632d345670116102c35780633f0f37f611610261578063596798ad11610230578063596798ad146105d957806361e5bc6b146105ec5780636352211e146105ff57806366d1e9d01461061257600080fd5b80633f0f37f61461058d57806342842e0e146105a057806342966c68146105b35780634cd88b76146105c657600080fd5b806331ae450b1161029d57806331ae450b1461053f578063332dd1ae1461055457806338e52e78146105675780633e6134b81461057a57600080fd5b80632d3456701461050657806330176e13146105195780633071a0f91461052c57600080fd5b806320e4afe21161033057806323b872dd1161030a57806323b872dd1461048d57806324d7806c146104a05780632928ca58146104b35780632a55205a146104d457600080fd5b806320e4afe21461045657806322f374d014610469578063239be3171461047a57600080fd5b8063081812fc1161036c578063081812fc146103e5578063095ea7b3146104105780630ebd4c7f14610423578063162094c41461044357600080fd5b806301ffc9a71461039357806302e7afb7146103bb57806306fdde03146103d0575b600080fd5b6103a66103a1366004614d05565b61084f565b60405190151581526020015b60405180910390f35b6103ce6103c9366004614d37565b61087e565b005b6103d8610903565b6040516103b29190614da4565b6103f86103f3366004614db7565b610995565b6040516001600160a01b0390911681526020016103b2565b6103ce61041e366004614dd0565b6109bc565b610436610431366004614db7565b610b0b565b6040516103b29190614e37565b6103ce610451366004614e8c565b610b6f565b6103ce610464366004614f1d565b610bee565b60cd546001600160a01b03166103f8565b6103f8610488366004614db7565b610cce565b6103ce61049b366004614f97565b610d2f565b6103a66104ae366004614d37565b610db6565b6104c66104c1366004614d37565b610def565b6040519081526020016103b2565b6104e76104e2366004614fd8565b610e74565b604080516001600160a01b0390931683526020830191909152016103b2565b6103ce610514366004614d37565b610ee4565b6103ce610527366004614ffa565b610f41565b6103ce61053a36600461503c565b610ff4565b61054761107e565b6040516103b29190615078565b6103ce6105623660046150c5565b61112d565b610436610575366004615131565b6111b5565b6103ce610588366004614ffa565b6112fa565b6103ce61059b366004615187565b61130e565b6103ce6105ae366004614f97565b611397565b6103ce6105c1366004614db7565b6113b2565b6103ce6105d43660046152bc565b611488565b6103ce6105e7366004614d37565b6115b3565b6103ce6105fa366004615344565b611630565b6103f861060d366004614db7565b6116d2565b6103ce610620366004614ffa565b611737565b6103ce610633366004614d37565b611749565b6104c6610646366004614d37565b6117a1565b6103ce61183b565b6104c6610661366004614d37565b61184f565b6104c661067436600461503c565b611935565b610436610687366004615131565b611a4f565b6103ce61069a3660046153f5565b611bf3565b610547611c06565b6033546001600160a01b03166103f8565b6103d8611ca7565b6103ce6106ce366004614ffa565b611cb6565b6103ce6106e136600461544c565b611d34565b6103ce6106f4366004615344565b611d3f565b6103ce610707366004615485565b611e4d565b61043661071a3660046154a2565b611e5f565b6103ce61072d3660046154d7565b611fd6565b6103ce610740366004615517565b612057565b610758610753366004614db7565b6120df565b6040516103b291906155d0565b610778610773366004614db7565b612143565b6040516103b29291906155e3565b6103d8610794366004614db7565b6121b9565b6103ce6107a7366004614d37565b61221d565b6104366107ba3660046154a2565b61229a565b6103ce6107cd366004614e8c565b612391565b6103a66107e0366004615611565b6001600160a01b039182166000908152609f6020908152604080832093909416825291909152205460ff1690565b6103ce61081c366004615611565b6123a4565b6103ce61082f366004614d37565b612422565b6104c661084236600461503c565b6124af565b6104c6600281565b600061085a82612550565b8061086957506108698261258e565b80610878575061087882612610565b92915050565b336108916033546001600160a01b031690565b6001600160a01b031614806108ac57506108ac60663361265e565b6108f75760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084015b60405180910390fd5b61090081612683565b50565b6060609a80546109129061563f565b80601f016020809104026020016040519081016040528092919081815260200182805461093e9061563f565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60006109a082612793565b506000908152609e60205260409020546001600160a01b031690565b60006109c7826116d2565b9050806001600160a01b0316836001600160a01b031603610a505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108ee565b336001600160a01b0382161480610a8a57506001600160a01b0381166000908152609f6020908152604080832033845290915290205460ff165b610afc5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016108ee565b610b0683836127f7565b505050565b6000818152609c60205260409020546060906001600160a01b0316610b665760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882612865565b33610b826033546001600160a01b031690565b6001600160a01b03161480610b9d5750610b9d60663361265e565b610be35760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610b06838383612870565b33610c016033546001600160a01b031690565b6001600160a01b03161480610c1c5750610c1c60663361265e565b610c625760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b6000858152609c60205260409020546001600160a01b0316610cba5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b610cc785858585856128f8565b5050505050565b6000818152609c60205260408120546001600160a01b0316610d265760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b6108788261297f565b610d393382612a41565b610dab5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016108ee565b610b06838383612ac0565b6000816001600160a01b0316610dd46033546001600160a01b031690565b6001600160a01b03161480610878575061087860668361265e565b6000600260655403610e435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555610e50612c98565b610e698260405180602001604052806000815250612cef565b600160655592915050565b6000828152609c602052604081205481906001600160a01b0316610ece5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b610ed88484612d60565b915091505b9250929050565b610eec612e37565b610ef760668261265e565b156109005760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610f3d606682612e91565b5050565b33610f546033546001600160a01b031690565b6001600160a01b03161480610f6f5750610f6f60663361265e565b610fb55760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612ea692505050565b336110076033546001600160a01b031690565b6001600160a01b03161480611022575061102260663361265e565b6110685760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61107183612eda565b610b068383836000612f32565b606061108a6066613035565b67ffffffffffffffff8111156110a2576110a26151ef565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b50905060005b6110db6066613035565b811015611129576110ed60668261303f565b8282815181106110ff576110ff615673565b6001600160a01b0390921660209283029190910190910152806111218161569f565b9150506110d1565b5090565b336111406033546001600160a01b031690565b6001600160a01b0316148061115b575061115b60663361265e565b6111a15760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b6111af60008585858561304b565b50505050565b60606002606554036112095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555611216612c98565b8167ffffffffffffffff81111561122f5761122f6151ef565b604051908082528060200260200182016040528015611258578160200160208202803683370190505b50905060005b828110156112ed576112c88585858481811061127c5761127c615673565b905060200281019061128e91906156b8565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cef92505050565b8282815181106112da576112da615673565b602090810291909101015260010161125e565b5060016065559392505050565b611302612c98565b610f3d82826000613138565b336113216033546001600160a01b031690565b6001600160a01b0316148061133c575061133c60663361265e565b6113825760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61138b84612eda565b6111af84848484612f32565b610b0683838360405180602001604052806000815250612057565b6002606554036114045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b60026065556114133382612a41565b61145f5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656460448201526064016108ee565b600061146a826116d2565b905061147582613175565b61147f818361321c565b50506001606555565b600054610100900460ff16158080156114a85750600054600160ff909116105b806114c25750303b1580156114c2575060005460ff166001145b6115345760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016108ee565b6000805460ff191660011790558015611557576000805461ff0019166101001790555b6115618383613331565b6115696133a6565b8015610b06576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b336115c66033546001600160a01b031690565b6001600160a01b031614806115e157506115e160663361265e565b6116275760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61090081613419565b611638612c98565b825181146116785760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b60005b83518110156111af576116ca84828151811061169957611699615673565b60200260200101518484848181106116b3576116b3615673565b90506020028101906116c591906156b8565b61346d565b60010161167b565b6000818152609c60205260408120546001600160a01b0316806108785760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108ee565b61173f612c98565b610f3d82826134c3565b611751612e37565b61175c60668261265e565b6109005760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610f3d6066826134dd565b60006001600160a01b03821661181f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016108ee565b506001600160a01b03166000908152609d602052604090205490565b611843612e37565b61184d60006134f2565b565b60006002606554036118a35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555336118bb6033546001600160a01b031690565b6001600160a01b031614806118d657506118d660663361265e565b61191c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610e698260405180602001604052806000815250613544565b60006002606554036119895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555336119a16033546001600160a01b031690565b6001600160a01b031614806119bc57506119bc60663361265e565b611a025760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b611a428484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354492505050565b6001606555949350505050565b6060600260655403611aa35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b600260655533611abb6033546001600160a01b031690565b6001600160a01b03161480611ad65750611ad660663361265e565b611b1c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b8167ffffffffffffffff811115611b3557611b356151ef565b604051908082528060200260200182016040528015611b5e578160200160208202803683370190505b50905060005b828110156112ed57611bce85858584818110611b8257611b82615673565b9050602002810190611b9491906156b8565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354492505050565b828281518110611be057611be0615673565b6020908102919091010152600101611b64565b611bfb612c98565b610b06838383613138565b6060611c1260ce613035565b67ffffffffffffffff811115611c2a57611c2a6151ef565b604051908082528060200260200182016040528015611c53578160200160208202803683370190505b50905060005b611c6360ce613035565b81101561112957611c7560ce8261303f565b828281518110611c8757611c87615673565b6001600160a01b0390921660209283029190910190910152600101611c59565b6060609b80546109129061563f565b33611cc96033546001600160a01b031690565b6001600160a01b03161480611ce45750611ce460663361265e565b611d2a5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d8282613567565b610f3d33838361359c565b33611d526033546001600160a01b031690565b6001600160a01b03161480611d6d5750611d6d60663361265e565b611db35760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b82518114611df35760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b60005b83518110156111af57611e45848281518110611e1457611e14615673565b6020026020010151848484818110611e2e57611e2e615673565b9050602002810190611e4091906156b8565b612870565b600101611df6565b611e55612c98565b610900338261366a565b6060600260655403611eb35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b600260655533611ecb6033546001600160a01b031690565b6001600160a01b03161480611ee65750611ee660663361265e565b611f2c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b8161ffff1667ffffffffffffffff811115611f4957611f496151ef565b604051908082528060200260200182016040528015611f72578160200160208202803683370190505b50905060005b8261ffff168161ffff161015611fca57611fa18460405180602001604052806000815250613544565b828261ffff1681518110611fb757611fb7615673565b6020908102919091010152600101611f78565b50600160655592915050565b33611fe96033546001600160a01b031690565b6001600160a01b03161480612004575061200460663361265e565b61204a5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610cc7858585858561304b565b6120613383612a41565b6120d35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016108ee565b6111af848484846136f8565b6000818152609c60205260409020546060906001600160a01b031661213a5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882613776565b606080612167836000908152609c60205260409020546001600160a01b0316151590565b6121a75760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b6121b083613788565b91509150915091565b6000818152609c60205260409020546060906001600160a01b03166122145760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882613b3a565b336122306033546001600160a01b031690565b6001600160a01b0316148061224b575061224b60663361265e565b6122915760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61090081613e31565b60606002606554036122ee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b60026065556122fb612c98565b8161ffff1667ffffffffffffffff811115612318576123186151ef565b604051908082528060200260200182016040528015612341578160200160208202803683370190505b50905060005b8261ffff16811015611fca5761236c8460405180602001604052806000815250612cef565b82828151811061237e5761237e615673565b6020908102919091010152600101612347565b612399612c98565b610b0683838361346d565b336123b76033546001600160a01b031690565b6001600160a01b031614806123d257506123d260663361265e565b6124185760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d8282613e72565b61242a612e37565b6001600160a01b0381166124a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108ee565b610900816134f2565b60006002606554036125035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555612510612c98565b611a428484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cef92505050565b60006001600160e01b031982167f9088c207000000000000000000000000000000000000000000000000000000001480610878575061087882613fb5565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806125f157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087857506301ffc9a760e01b6001600160e01b0319831614610878565b60006001600160e01b031982167f553e757e00000000000000000000000000000000000000000000000000000000148061087857506301ffc9a760e01b6001600160e01b0319831614610878565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b038116158015906126a457506001600160a01b0381163014155b6126f05760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f7420626c61636b6c69737420796f757273656c660000000000000060448201526064016108ee565b6126fb60ce8261265e565b156127435760405133906001600160a01b038316907fd19cf84cf0fec6bec9ddfa29c63adf83a55707c712f32c8285d6180a7890147990600090a361274160ce82612e91565b505b61274e60d08261265e565b6109005760405133906001600160a01b038316907f05ac7bc5a606cd92a63365f9fda244499b9add0526b22d99937b6bd88181059c90600090a3610f3d60d0826134dd565b6000818152609c60205260409020546001600160a01b03166109005760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108ee565b6000818152609e6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061282c826116d2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606061267c82613788565b600083118015612882575060cc548311155b80156128a35750600083815260d460205260409020546001600160a01b0316155b6128df5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b600083815260d8602052604090206111af828483615745565b612904848484846140fc565b600085815260da6020526040812061291b91614c54565b61293a8484848460da60008b81526020019081526020016000206141c7565b847fabb46fe0761d77584bde75697647804ffd8113abd4d8d06bc664150395eccdee858585856040516129709493929190615805565b60405180910390a25050505050565b600081815260d460205260409020546001600160a01b0316806129e45760405162461bcd60e51b815260206004820152601660248201527f4e6f20657874656e73696f6e20666f7220746f6b656e0000000000000000000060448201526064016108ee565b6129ef60d08261265e565b15612a3c5760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b919050565b600080612a4d836116d2565b9050806001600160a01b0316846001600160a01b03161480612a9457506001600160a01b038082166000908152609f602090815260408083209388168352929052205460ff165b80612ab85750836001600160a01b0316612aad84610995565b6001600160a01b0316145b949350505050565b826001600160a01b0316612ad3826116d2565b6001600160a01b031614612b4f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016108ee565b6001600160a01b038216612bca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108ee565b612bd5838383614299565b612be06000826127f7565b6001600160a01b0383166000908152609d60205260408120805460019290612c0990849061589c565b90915550506001600160a01b0382166000908152609d60205260408120805460019290612c379084906158af565b90915550506000818152609c602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612ca360ce3361265e565b61184d5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206265207265676973746572656420657874656e73696f6e0000000060448201526064016108ee565b600060cc60008154612d009061569f565b909155505060cc54612d1283826142a4565b600081815260d46020526040902080546001600160a01b03191633179055612d3a8382614338565b815115612d5b57600081815260d860205260409020612d5983826158c2565b505b610878565b600080600080612d6f86613788565b91509150600182511115612dc55760405162461bcd60e51b815260206004820152601c60248201527f4d6f7265207468616e203120726f79616c74792072656365697665720000000060448201526064016108ee565b8151600003612ddc57306000935093505050610edd565b81600081518110612def57612def615673565b60200260200101516127108683600081518110612e0e57612e0e615673565b6020026020010151612e209190615982565b612e2a91906159af565b9350935050509250929050565b6033546001600160a01b0316331461184d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ee565b600061267c836001600160a01b038416614352565b6000805260d56020527ff5cbbbf491ecca09b3146460212af7a9a122ceb752655fe793fa94eb0eeed0a6610f3d82826158c2565b612ee560d08261265e565b156109005760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b6001600160a01b0384163014801590612f5457506001600160a01b0384163b15155b612fa05760405162461bcd60e51b815260206004820152600760248201527f496e76616c69640000000000000000000000000000000000000000000000000060448201526064016108ee565b60405133906001600160a01b038616907fd8cb8ba4086944eabf43c5535b7712015e4d4c714b24bf812c040ea5b7a3e42a90600090a36001600160a01b038416600090815260d560205260409020612ff9838583615745565b506001600160a01b038416600090815260d660205260409020805460ff191682151517905561302960ce856134dd565b506111af84600161366a565b6000610878825490565b600061267c8383614445565b613057848484846140fc565b6001600160a01b038516600090815260d96020526040812061307891614c54565b6130a98484848460d960008b6001600160a01b03166001600160a01b031681526020019081526020016000206141c7565b6001600160a01b0385166130f9577f2b6849d5976d799a5b0ca4dfd6b40a3d7afe9ea72c091fa01a958594f9a2659b848484846040516130ec9493929190615805565b60405180910390a1610cc7565b846001600160a01b03167f535a93d2cb000582c0ebeaa9be4890ec6a287f98eb2df00c54c300612fd78d8f858585856040516129709493929190615805565b33600090815260d560205260409020613152838583615745565b5033600090815260d660205260409020805460ff19169115159190911790555050565b6000613180826116d2565b905061318e81600084614299565b6131996000836127f7565b6001600160a01b0381166000908152609d602052604081208054600192906131c290849061589c565b90915550506000828152609c602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600081815260d460205260409020546001600160a01b0316156132db57600081815260d46020526040902054613262906001600160a01b03166311686e4b60e21b61446f565b156132db57600081815260d46020526040908190205490516311686e4b60e21b81526001600160a01b03848116600483015260248201849052909116906345a1b92c90604401600060405180830381600087803b1580156132c257600080fd5b505af11580156132d6573d6000803e3d6000fd5b505050505b600081815260d86020526040902080546132f49061563f565b15905061331257600081815260d86020526040812061331291614c72565b600090815260d46020526040902080546001600160a01b031916905550565b600054610100900460ff1661339c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b610f3d828261448b565b600054610100900460ff166134115760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b61184d61450f565b60cd80546001600160a01b0319166001600160a01b0383169081179091556040519081527f959c0e47a2fe3cf01e237ba4892e2cc3194d77cbfb33e434e40873225d6b595f9060200160405180910390a150565b600083815260d460205260409020546001600160a01b031633146128df5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b33600090815260d760205260409020610b06828483615745565b600061267c836001600160a01b038416614583565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060cc600081546135559061569f565b909155505060cc54612d3a8382614338565b6000805260d76020527f8c93e91f2d3cdfe48d7e628f6e539bf3196799b8a9f7303c20a1106ca52f335a610b06828483615745565b816001600160a01b0316836001600160a01b0316036135fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ee565b6001600160a01b038381166000818152609f6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613694827f45ffcdad0000000000000000000000000000000000000000000000000000000061446f565b15610f3d576001600160a01b038216600081815260d36020908152604091829020805460ff191685151590811790915591519182527f072a7592283e2c2d1d56d21517ff6013325e0f55483f4828373ff4d98b0a1a36910160405180910390a25050565b613703848484612ac0565b61370f848484846145d2565b6111af5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b606061378182613788565b5092915050565b606080600060da6000858152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561380a57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff16818301528252600190920191016137c0565b505050509050805160000361395957600084815260d460205260409020546001600160a01b031680156139575761384881634e53ee3d60e11b61446f565b156138d357604051634e53ee3d60e11b8152306004820152602481018690526001600160a01b03821690639ca7dc7a90604401600060405180830381865afa158015613898573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138c09190810190615a29565b81519195509350156138d3575050915091565b6001600160a01b038116600090815260d96020908152604080832080548251818502810185019093528083529193909284015b8282101561395057600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101613906565b5050505091505b505b80516000036139fc57600080805260d960209081527f665fecb6766038646257fb3193371280b91d4ee69f1071872c4c7b974431a4888054604080518285028101850190915281815293919290919084015b828210156139f557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff16818301528252600190920191016139ab565b5050505090505b805115613b3457805167ffffffffffffffff811115613a1d57613a1d6151ef565b604051908082528060200260200182016040528015613a46578160200160208202803683370190505b509250805167ffffffffffffffff811115613a6357613a636151ef565b604051908082528060200260200182016040528015613a8c578160200160208202803683370190505b50915060005b8151811015613b3257818181518110613aad57613aad615673565b602002602001015160000151848281518110613acb57613acb615673565b60200260200101906001600160a01b031690816001600160a01b031681525050818181518110613afd57613afd615673565b60200260200101516020015161ffff16838281518110613b1f57613b1f615673565b6020908102919091010152600101613a92565b505b50915091565b6060600082118015613b4e575060cc548211155b613b8a5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b600082815260d460205260409020546001600160a01b0316613bad60d08261265e565b15613bfa5760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b600083815260d8602052604090208054613c139061563f565b159050613d2d576001600160a01b038116600090815260d7602052604090208054613c3d9061563f565b159050613c8e576001600160a01b038116600090815260d76020908152604080832086845260d88352928190209051613c77939201615b57565b604051602081830303815290604052915050919050565b600083815260d8602052604090208054613ca79061563f565b80601f0160208091040260200160405190810160405280929190818152602001828054613cd39061563f565b8015613d205780601f10613cf557610100808354040283529160200191613d20565b820191906000526020600020905b815481529060010190602001808311613d0357829003601f168201915b5050505050915050919050565b613d3e8163e9dc637560e01b61446f565b15613db65760405163e9dc637560e01b8152306004820152602481018490526001600160a01b0382169063e9dc637590604401600060405180830381865afa158015613d8e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261267c9190810190615b6c565b6001600160a01b038116600090815260d6602052604090205460ff16613e08576001600160a01b038116600090815260d560205260409020613df78461471e565b604051602001613c77929190615bda565b6001600160a01b038116600090815260d5602052604090208054613ca79061563f565b50919050565b60405133906001600160a01b038316907fd19cf84cf0fec6bec9ddfa29c63adf83a55707c712f32c8285d6180a7890147990600090a3610f3d60ce82612e91565b613e7d60ce8361265e565b613ec95760405162461bcd60e51b815260206004820152601e60248201527f43726561746f72436f72653a20496e76616c696420657874656e73696f6e000060448201526064016108ee565b6001600160a01b0381161580613eeb5750613eeb81631e05385b60e31b61446f565b613f375760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642061646472657373000000000000000000000000000000000060448201526064016108ee565b6001600160a01b03828116600090815260d26020526040902054811690821614610f3d576001600160a01b03828116600081815260d2602052604080822080546001600160a01b031916948616948517905551339392917f6a835c4fcf7e0d398db3762332fdaa1471814ad39f1e2d6d0b3fdabf8efee3e091a45050565b60006001600160e01b031982167f5365e65c00000000000000000000000000000000000000000000000000000000148061401857506001600160e01b031982167f28f10a2100000000000000000000000000000000000000000000000000000000145b8061402757506140278261258e565b8061405b57506001600160e01b031982167fbb3bafd600000000000000000000000000000000000000000000000000000000145b8061408f57506001600160e01b031982167fb779958400000000000000000000000000000000000000000000000000000000145b806140c357506001600160e01b031982167fd5a06d4c00000000000000000000000000000000000000000000000000000000145b8061087857506001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001492915050565b82811461413b5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b6000805b828110156141755783838281811061415957614159615673565b905060200201358261416b91906158af565b915060010161413f565b506127108110610cc75760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420746f74616c20726f79616c7469657300000000000000000060448201526064016108ee565b60005b82811015614291578160405180604001604052808888858181106141f0576141f0615673565b90506020020160208101906142059190614d37565b6001600160a01b0316815260200186868581811061422557614225615673565b61ffff602091820293909301358316909352508354600181810186556000958652948390208451910180549490930151909116600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b0390911617919091179055016141ca565b505050505050565b610b06838383614853565b33600090815260d260205260409020546001600160a01b031615610f3d5733600081815260d2602052604090819020549051631e05385b60e31b815260048101929092526001600160a01b03848116602484015260448301849052169063f029c2d890606401600060405180830381600087803b15801561432457600080fd5b505af1158015614291573d6000803e3d6000fd5b610f3d8282604051806020016040528060008152506149b7565b6000818152600183016020526040812054801561443b57600061437660018361589c565b855490915060009061438a9060019061589c565b90508181146143ef5760008660000182815481106143aa576143aa615673565b90600052602060002001549050808760000184815481106143cd576143cd615673565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061440057614400615bff565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610878565b6000915050610878565b600082600001828154811061445c5761445c615673565b9060005260206000200154905092915050565b600061447a83614a35565b801561267c575061267c8383614a68565b600054610100900460ff166144f65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b609a61450283826158c2565b50609b610b0682826158c2565b600054610100900460ff1661457a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b61184d336134f2565b60008181526001830160205260408120546145ca57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610878565b506000610878565b60006001600160a01b0384163b1561471357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614616903390899088908890600401615c15565b6020604051808303816000875af1925050508015614651575060408051601f3d908101601f1916820190925261464e91810190615c51565b60015b6146f9573d80801561467f576040519150601f19603f3d011682016040523d82523d6000602084013e614684565b606091505b5080516000036146f15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab8565b506001949350505050565b60608160000361476157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561478b57806147758161569f565b91506147849050600a836159af565b9150614765565b60008167ffffffffffffffff8111156147a6576147a66151ef565b6040519080825280601f01601f1916602001820160405280156147d0576020820181803683370190505b5090505b8415612ab8576147e560018361589c565b91506147f2600a86615c6e565b6147fd9060306158af565b60f81b81838151811061481257614812615673565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061484c600a866159af565b94506147d4565b600081815260d460209081526040808320546001600160a01b0316835260d390915290205460ff161561495f57600081815260d4602052604090819020549051632f3537c560e11b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635e6a6f8a906084015b6020604051808303816000875af11580156148ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149139190615c82565b610b065760405162461bcd60e51b815260206004820152601a60248201527f457874656e73696f6e20617070726f76616c206661696c75726500000000000060448201526064016108ee565b60cd546001600160a01b031615610b065760cd54604051632f3537c560e11b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635e6a6f8a906084016148d0565b6149c18383614b06565b6149ce60008484846145d2565b610b065760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b6000614a48826301ffc9a760e01b614a68565b80156108785750614a61826001600160e01b0319614a68565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015614aef575060208210155b8015614afb5750600081115b979650505050505050565b6001600160a01b038216614b5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ee565b6000818152609c60205260409020546001600160a01b031615614bc15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ee565b614bcd60008383614299565b6001600160a01b0382166000908152609d60205260408120805460019290614bf69084906158af565b90915550506000818152609c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906109009190614cac565b508054614c7e9061563f565b6000825580601f10614c8e575050565b601f0160209004906000526020600020908101906109009190614cda565b5b8082111561112957805475ffffffffffffffffffffffffffffffffffffffffffff19168155600101614cad565b5b808211156111295760008155600101614cdb565b6001600160e01b03198116811461090057600080fd5b600060208284031215614d1757600080fd5b813561267c81614cef565b6001600160a01b038116811461090057600080fd5b600060208284031215614d4957600080fd5b813561267c81614d22565b60005b83811015614d6f578181015183820152602001614d57565b50506000910152565b60008151808452614d90816020860160208601614d54565b601f01601f19169290920160200192915050565b60208152600061267c6020830184614d78565b600060208284031215614dc957600080fd5b5035919050565b60008060408385031215614de357600080fd5b8235614dee81614d22565b946020939093013593505050565b600081518084526020808501945080840160005b83811015614e2c57815187529582019590820190600101614e10565b509495945050505050565b60208152600061267c6020830184614dfc565b60008083601f840112614e5c57600080fd5b50813567ffffffffffffffff811115614e7457600080fd5b602083019150836020828501011115610edd57600080fd5b600080600060408486031215614ea157600080fd5b83359250602084013567ffffffffffffffff811115614ebf57600080fd5b614ecb86828701614e4a565b9497909650939450505050565b60008083601f840112614eea57600080fd5b50813567ffffffffffffffff811115614f0257600080fd5b6020830191508360208260051b8501011115610edd57600080fd5b600080600080600060608688031215614f3557600080fd5b85359450602086013567ffffffffffffffff80821115614f5457600080fd5b614f6089838a01614ed8565b90965094506040880135915080821115614f7957600080fd5b50614f8688828901614ed8565b969995985093965092949392505050565b600080600060608486031215614fac57600080fd5b8335614fb781614d22565b92506020840135614fc781614d22565b929592945050506040919091013590565b60008060408385031215614feb57600080fd5b50508035926020909101359150565b6000806020838503121561500d57600080fd5b823567ffffffffffffffff81111561502457600080fd5b61503085828601614e4a565b90969095509350505050565b60008060006040848603121561505157600080fd5b833561505c81614d22565b9250602084013567ffffffffffffffff811115614ebf57600080fd5b6020808252825182820181905260009190848201906040850190845b818110156150b95783516001600160a01b031683529284019291840191600101615094565b50909695505050505050565b600080600080604085870312156150db57600080fd5b843567ffffffffffffffff808211156150f357600080fd5b6150ff88838901614ed8565b9096509450602087013591508082111561511857600080fd5b5061512587828801614ed8565b95989497509550505050565b60008060006040848603121561514657600080fd5b833561515181614d22565b9250602084013567ffffffffffffffff81111561516d57600080fd5b614ecb86828701614ed8565b801515811461090057600080fd5b6000806000806060858703121561519d57600080fd5b84356151a881614d22565b9350602085013567ffffffffffffffff8111156151c457600080fd5b6151d087828801614e4a565b90945092505060408501356151e481615179565b939692955090935050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561522e5761522e6151ef565b604052919050565b600067ffffffffffffffff821115615250576152506151ef565b50601f01601f191660200190565b600061527161526c84615236565b615205565b905082815283838301111561528557600080fd5b828260208301376000602084830101529392505050565b600082601f8301126152ad57600080fd5b61267c8383356020850161525e565b600080604083850312156152cf57600080fd5b823567ffffffffffffffff808211156152e757600080fd5b6152f38683870161529c565b9350602085013591508082111561530957600080fd5b506153168582860161529c565b9150509250929050565b600067ffffffffffffffff82111561533a5761533a6151ef565b5060051b60200190565b60008060006040848603121561535957600080fd5b833567ffffffffffffffff8082111561537157600080fd5b818601915086601f83011261538557600080fd5b8135602061539561526c83615320565b82815260059290921b8401810191818101908a8411156153b457600080fd5b948201945b838610156153d2578535825294820194908201906153b9565b975050870135925050808211156153e857600080fd5b50614ecb86828701614ed8565b60008060006040848603121561540a57600080fd5b833567ffffffffffffffff81111561542157600080fd5b61542d86828701614e4a565b909450925050602084013561544181615179565b809150509250925092565b6000806040838503121561545f57600080fd5b823561546a81614d22565b9150602083013561547a81615179565b809150509250929050565b60006020828403121561549757600080fd5b813561267c81615179565b600080604083850312156154b557600080fd5b82356154c081614d22565b9150602083013561ffff8116811461547a57600080fd5b6000806000806000606086880312156154ef57600080fd5b85356154fa81614d22565b9450602086013567ffffffffffffffff80821115614f5457600080fd5b6000806000806080858703121561552d57600080fd5b843561553881614d22565b9350602085013561554881614d22565b925060408501359150606085013567ffffffffffffffff81111561556b57600080fd5b8501601f8101871361557c57600080fd5b61558b8782356020840161525e565b91505092959194509250565b600081518084526020808501945080840160005b83811015614e2c5781516001600160a01b0316875295820195908201906001016155ab565b60208152600061267c6020830184615597565b6040815260006155f66040830185615597565b82810360208401526156088185614dfc565b95945050505050565b6000806040838503121561562457600080fd5b823561562f81614d22565b9150602083013561547a81614d22565b600181811c9082168061565357607f821691505b602082108103613e2b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016156b1576156b1615689565b5060010190565b6000808335601e198436030181126156cf57600080fd5b83018035915067ffffffffffffffff8211156156ea57600080fd5b602001915036819003821315610edd57600080fd5b601f821115610b0657600081815260208120601f850160051c810160208610156157265750805b601f850160051c820191505b8181101561429157828155600101615732565b67ffffffffffffffff83111561575d5761575d6151ef565b6157718361576b835461563f565b836156ff565b6000601f8411600181146157a5576000851561578d5750838201355b600019600387901b1c1916600186901b178355610cc7565b600083815260209020601f19861690835b828110156157d657868501358255602094850194600190920191016157b6565b50868210156157f35760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6040808252810184905260008560608301825b8781101561584857823561582b81614d22565b6001600160a01b0316825260209283019290910190600101615818565b5083810360208501528481527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85111561588157600080fd5b8460051b915081866020830137016020019695505050505050565b8181038181111561087857610878615689565b8082018082111561087857610878615689565b815167ffffffffffffffff8111156158dc576158dc6151ef565b6158f0816158ea845461563f565b846156ff565b602080601f831160018114615925576000841561590d5750858301515b600019600386901b1c1916600185901b178555614291565b600085815260208120601f198616915b8281101561595457888601518255948401946001909101908401615935565b50858210156159725787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761087857610878615689565b634e487b7160e01b600052601260045260246000fd5b6000826159be576159be615999565b500490565b600082601f8301126159d457600080fd5b815160206159e461526c83615320565b82815260059290921b84018101918181019086841115615a0357600080fd5b8286015b84811015615a1e5780518352918301918301615a07565b509695505050505050565b60008060408385031215615a3c57600080fd5b825167ffffffffffffffff80821115615a5457600080fd5b818501915085601f830112615a6857600080fd5b81516020615a7861526c83615320565b82815260059290921b84018101918181019089841115615a9757600080fd5b948201945b83861015615abe578551615aaf81614d22565b82529482019490820190615a9c565b91880151919650909350505080821115615ad757600080fd5b50615316858286016159c3565b60008154615af18161563f565b60018281168015615b095760018114615b1e57615b4d565b60ff1984168752821515830287019450615b4d565b8560005260208060002060005b85811015615b445781548a820152908401908201615b2b565b50505082870194505b5050505092915050565b6000612ab8615b668386615ae4565b84615ae4565b600060208284031215615b7e57600080fd5b815167ffffffffffffffff811115615b9557600080fd5b8201601f81018413615ba657600080fd5b8051615bb461526c82615236565b818152856020838501011115615bc957600080fd5b615608826020830160208601614d54565b6000615be68285615ae4565b8351615bf6818360208801614d54565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152615c476080830184614d78565b9695505050505050565b600060208284031215615c6357600080fd5b815161267c81614cef565b600082615c7d57615c7d615999565b500690565b600060208284031215615c9457600080fd5b815161267c8161517956fe41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f722061a264697066735822122052e2526b2cc9239cc64511653469ea10b01933e26dce590f19303a6494b5570464736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061038e5760003560e01c80636d73e669116101de578063ad2d0ddd1161010f578063d5a06d4c116100ad578063f0cdc4991161007c578063f0cdc4991461080e578063f2fde38b14610821578063fe2e1f5814610834578063ffa1ad741461084757600080fd5b8063d5a06d4c14610765578063e00aab4b146107ac578063e92a89f6146107bf578063e985e9c5146107d257600080fd5b8063b9c4d9fb116100e9578063b9c4d9fb14610745578063bb3bafd614610765578063c87b56dd14610786578063ce8aee9d1461079957600080fd5b8063ad2d0ddd1461070c578063b0fe87c91461071f578063b88d4fde1461073257600080fd5b806383b7db631161017c57806399e0dd7c1161015657806399e0dd7c146106c0578063a22cb465146106d3578063aafb2d44146106e6578063ac0c8cfa146106f957600080fd5b806383b7db631461069f5780638da5cb5b146106a757806395d89b41146106b857600080fd5b806372ff03d3116101b857806372ff03d3146106535780637884af44146106665780637aa15f161461067957806382dcc0c81461068c57600080fd5b80636d73e6691461062557806370a0823114610638578063715018a61461064b57600080fd5b80632d345670116102c35780633f0f37f611610261578063596798ad11610230578063596798ad146105d957806361e5bc6b146105ec5780636352211e146105ff57806366d1e9d01461061257600080fd5b80633f0f37f61461058d57806342842e0e146105a057806342966c68146105b35780634cd88b76146105c657600080fd5b806331ae450b1161029d57806331ae450b1461053f578063332dd1ae1461055457806338e52e78146105675780633e6134b81461057a57600080fd5b80632d3456701461050657806330176e13146105195780633071a0f91461052c57600080fd5b806320e4afe21161033057806323b872dd1161030a57806323b872dd1461048d57806324d7806c146104a05780632928ca58146104b35780632a55205a146104d457600080fd5b806320e4afe21461045657806322f374d014610469578063239be3171461047a57600080fd5b8063081812fc1161036c578063081812fc146103e5578063095ea7b3146104105780630ebd4c7f14610423578063162094c41461044357600080fd5b806301ffc9a71461039357806302e7afb7146103bb57806306fdde03146103d0575b600080fd5b6103a66103a1366004614d05565b61084f565b60405190151581526020015b60405180910390f35b6103ce6103c9366004614d37565b61087e565b005b6103d8610903565b6040516103b29190614da4565b6103f86103f3366004614db7565b610995565b6040516001600160a01b0390911681526020016103b2565b6103ce61041e366004614dd0565b6109bc565b610436610431366004614db7565b610b0b565b6040516103b29190614e37565b6103ce610451366004614e8c565b610b6f565b6103ce610464366004614f1d565b610bee565b60cd546001600160a01b03166103f8565b6103f8610488366004614db7565b610cce565b6103ce61049b366004614f97565b610d2f565b6103a66104ae366004614d37565b610db6565b6104c66104c1366004614d37565b610def565b6040519081526020016103b2565b6104e76104e2366004614fd8565b610e74565b604080516001600160a01b0390931683526020830191909152016103b2565b6103ce610514366004614d37565b610ee4565b6103ce610527366004614ffa565b610f41565b6103ce61053a36600461503c565b610ff4565b61054761107e565b6040516103b29190615078565b6103ce6105623660046150c5565b61112d565b610436610575366004615131565b6111b5565b6103ce610588366004614ffa565b6112fa565b6103ce61059b366004615187565b61130e565b6103ce6105ae366004614f97565b611397565b6103ce6105c1366004614db7565b6113b2565b6103ce6105d43660046152bc565b611488565b6103ce6105e7366004614d37565b6115b3565b6103ce6105fa366004615344565b611630565b6103f861060d366004614db7565b6116d2565b6103ce610620366004614ffa565b611737565b6103ce610633366004614d37565b611749565b6104c6610646366004614d37565b6117a1565b6103ce61183b565b6104c6610661366004614d37565b61184f565b6104c661067436600461503c565b611935565b610436610687366004615131565b611a4f565b6103ce61069a3660046153f5565b611bf3565b610547611c06565b6033546001600160a01b03166103f8565b6103d8611ca7565b6103ce6106ce366004614ffa565b611cb6565b6103ce6106e136600461544c565b611d34565b6103ce6106f4366004615344565b611d3f565b6103ce610707366004615485565b611e4d565b61043661071a3660046154a2565b611e5f565b6103ce61072d3660046154d7565b611fd6565b6103ce610740366004615517565b612057565b610758610753366004614db7565b6120df565b6040516103b291906155d0565b610778610773366004614db7565b612143565b6040516103b29291906155e3565b6103d8610794366004614db7565b6121b9565b6103ce6107a7366004614d37565b61221d565b6104366107ba3660046154a2565b61229a565b6103ce6107cd366004614e8c565b612391565b6103a66107e0366004615611565b6001600160a01b039182166000908152609f6020908152604080832093909416825291909152205460ff1690565b6103ce61081c366004615611565b6123a4565b6103ce61082f366004614d37565b612422565b6104c661084236600461503c565b6124af565b6104c6600281565b600061085a82612550565b8061086957506108698261258e565b80610878575061087882612610565b92915050565b336108916033546001600160a01b031690565b6001600160a01b031614806108ac57506108ac60663361265e565b6108f75760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084015b60405180910390fd5b61090081612683565b50565b6060609a80546109129061563f565b80601f016020809104026020016040519081016040528092919081815260200182805461093e9061563f565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60006109a082612793565b506000908152609e60205260409020546001600160a01b031690565b60006109c7826116d2565b9050806001600160a01b0316836001600160a01b031603610a505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108ee565b336001600160a01b0382161480610a8a57506001600160a01b0381166000908152609f6020908152604080832033845290915290205460ff165b610afc5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016108ee565b610b0683836127f7565b505050565b6000818152609c60205260409020546060906001600160a01b0316610b665760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882612865565b33610b826033546001600160a01b031690565b6001600160a01b03161480610b9d5750610b9d60663361265e565b610be35760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610b06838383612870565b33610c016033546001600160a01b031690565b6001600160a01b03161480610c1c5750610c1c60663361265e565b610c625760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b6000858152609c60205260409020546001600160a01b0316610cba5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b610cc785858585856128f8565b5050505050565b6000818152609c60205260408120546001600160a01b0316610d265760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b6108788261297f565b610d393382612a41565b610dab5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016108ee565b610b06838383612ac0565b6000816001600160a01b0316610dd46033546001600160a01b031690565b6001600160a01b03161480610878575061087860668361265e565b6000600260655403610e435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555610e50612c98565b610e698260405180602001604052806000815250612cef565b600160655592915050565b6000828152609c602052604081205481906001600160a01b0316610ece5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b610ed88484612d60565b915091505b9250929050565b610eec612e37565b610ef760668261265e565b156109005760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610f3d606682612e91565b5050565b33610f546033546001600160a01b031690565b6001600160a01b03161480610f6f5750610f6f60663361265e565b610fb55760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612ea692505050565b336110076033546001600160a01b031690565b6001600160a01b03161480611022575061102260663361265e565b6110685760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61107183612eda565b610b068383836000612f32565b606061108a6066613035565b67ffffffffffffffff8111156110a2576110a26151ef565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b50905060005b6110db6066613035565b811015611129576110ed60668261303f565b8282815181106110ff576110ff615673565b6001600160a01b0390921660209283029190910190910152806111218161569f565b9150506110d1565b5090565b336111406033546001600160a01b031690565b6001600160a01b0316148061115b575061115b60663361265e565b6111a15760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b6111af60008585858561304b565b50505050565b60606002606554036112095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555611216612c98565b8167ffffffffffffffff81111561122f5761122f6151ef565b604051908082528060200260200182016040528015611258578160200160208202803683370190505b50905060005b828110156112ed576112c88585858481811061127c5761127c615673565b905060200281019061128e91906156b8565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cef92505050565b8282815181106112da576112da615673565b602090810291909101015260010161125e565b5060016065559392505050565b611302612c98565b610f3d82826000613138565b336113216033546001600160a01b031690565b6001600160a01b0316148061133c575061133c60663361265e565b6113825760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61138b84612eda565b6111af84848484612f32565b610b0683838360405180602001604052806000815250612057565b6002606554036114045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b60026065556114133382612a41565b61145f5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656460448201526064016108ee565b600061146a826116d2565b905061147582613175565b61147f818361321c565b50506001606555565b600054610100900460ff16158080156114a85750600054600160ff909116105b806114c25750303b1580156114c2575060005460ff166001145b6115345760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016108ee565b6000805460ff191660011790558015611557576000805461ff0019166101001790555b6115618383613331565b6115696133a6565b8015610b06576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b336115c66033546001600160a01b031690565b6001600160a01b031614806115e157506115e160663361265e565b6116275760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61090081613419565b611638612c98565b825181146116785760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b60005b83518110156111af576116ca84828151811061169957611699615673565b60200260200101518484848181106116b3576116b3615673565b90506020028101906116c591906156b8565b61346d565b60010161167b565b6000818152609c60205260408120546001600160a01b0316806108785760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108ee565b61173f612c98565b610f3d82826134c3565b611751612e37565b61175c60668261265e565b6109005760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610f3d6066826134dd565b60006001600160a01b03821661181f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016108ee565b506001600160a01b03166000908152609d602052604090205490565b611843612e37565b61184d60006134f2565b565b60006002606554036118a35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555336118bb6033546001600160a01b031690565b6001600160a01b031614806118d657506118d660663361265e565b61191c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610e698260405180602001604052806000815250613544565b60006002606554036119895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555336119a16033546001600160a01b031690565b6001600160a01b031614806119bc57506119bc60663361265e565b611a025760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b611a428484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354492505050565b6001606555949350505050565b6060600260655403611aa35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b600260655533611abb6033546001600160a01b031690565b6001600160a01b03161480611ad65750611ad660663361265e565b611b1c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b8167ffffffffffffffff811115611b3557611b356151ef565b604051908082528060200260200182016040528015611b5e578160200160208202803683370190505b50905060005b828110156112ed57611bce85858584818110611b8257611b82615673565b9050602002810190611b9491906156b8565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354492505050565b828281518110611be057611be0615673565b6020908102919091010152600101611b64565b611bfb612c98565b610b06838383613138565b6060611c1260ce613035565b67ffffffffffffffff811115611c2a57611c2a6151ef565b604051908082528060200260200182016040528015611c53578160200160208202803683370190505b50905060005b611c6360ce613035565b81101561112957611c7560ce8261303f565b828281518110611c8757611c87615673565b6001600160a01b0390921660209283029190910190910152600101611c59565b6060609b80546109129061563f565b33611cc96033546001600160a01b031690565b6001600160a01b03161480611ce45750611ce460663361265e565b611d2a5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d8282613567565b610f3d33838361359c565b33611d526033546001600160a01b031690565b6001600160a01b03161480611d6d5750611d6d60663361265e565b611db35760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b82518114611df35760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b60005b83518110156111af57611e45848281518110611e1457611e14615673565b6020026020010151848484818110611e2e57611e2e615673565b9050602002810190611e4091906156b8565b612870565b600101611df6565b611e55612c98565b610900338261366a565b6060600260655403611eb35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b600260655533611ecb6033546001600160a01b031690565b6001600160a01b03161480611ee65750611ee660663361265e565b611f2c5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b8161ffff1667ffffffffffffffff811115611f4957611f496151ef565b604051908082528060200260200182016040528015611f72578160200160208202803683370190505b50905060005b8261ffff168161ffff161015611fca57611fa18460405180602001604052806000815250613544565b828261ffff1681518110611fb757611fb7615673565b6020908102919091010152600101611f78565b50600160655592915050565b33611fe96033546001600160a01b031690565b6001600160a01b03161480612004575061200460663361265e565b61204a5760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610cc7858585858561304b565b6120613383612a41565b6120d35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016108ee565b6111af848484846136f8565b6000818152609c60205260409020546060906001600160a01b031661213a5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882613776565b606080612167836000908152609c60205260409020546001600160a01b0316151590565b6121a75760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b6121b083613788565b91509150915091565b6000818152609c60205260409020546060906001600160a01b03166122145760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108ee565b61087882613b3a565b336122306033546001600160a01b031690565b6001600160a01b0316148061224b575061224b60663361265e565b6122915760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b61090081613e31565b60606002606554036122ee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b60026065556122fb612c98565b8161ffff1667ffffffffffffffff811115612318576123186151ef565b604051908082528060200260200182016040528015612341578160200160208202803683370190505b50905060005b8261ffff16811015611fca5761236c8460405180602001604052806000815250612cef565b82828151811061237e5761237e615673565b6020908102919091010152600101612347565b612399612c98565b610b0683838361346d565b336123b76033546001600160a01b031690565b6001600160a01b031614806123d257506123d260663361265e565b6124185760405162461bcd60e51b815260206004820152602480820152600080516020615ca08339815191526044820152633236b4b760e11b60648201526084016108ee565b610f3d8282613e72565b61242a612e37565b6001600160a01b0381166124a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108ee565b610900816134f2565b60006002606554036125035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ee565b6002606555612510612c98565b611a428484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cef92505050565b60006001600160e01b031982167f9088c207000000000000000000000000000000000000000000000000000000001480610878575061087882613fb5565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806125f157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087857506301ffc9a760e01b6001600160e01b0319831614610878565b60006001600160e01b031982167f553e757e00000000000000000000000000000000000000000000000000000000148061087857506301ffc9a760e01b6001600160e01b0319831614610878565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b038116158015906126a457506001600160a01b0381163014155b6126f05760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f7420626c61636b6c69737420796f757273656c660000000000000060448201526064016108ee565b6126fb60ce8261265e565b156127435760405133906001600160a01b038316907fd19cf84cf0fec6bec9ddfa29c63adf83a55707c712f32c8285d6180a7890147990600090a361274160ce82612e91565b505b61274e60d08261265e565b6109005760405133906001600160a01b038316907f05ac7bc5a606cd92a63365f9fda244499b9add0526b22d99937b6bd88181059c90600090a3610f3d60d0826134dd565b6000818152609c60205260409020546001600160a01b03166109005760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108ee565b6000818152609e6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061282c826116d2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606061267c82613788565b600083118015612882575060cc548311155b80156128a35750600083815260d460205260409020546001600160a01b0316155b6128df5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b600083815260d8602052604090206111af828483615745565b612904848484846140fc565b600085815260da6020526040812061291b91614c54565b61293a8484848460da60008b81526020019081526020016000206141c7565b847fabb46fe0761d77584bde75697647804ffd8113abd4d8d06bc664150395eccdee858585856040516129709493929190615805565b60405180910390a25050505050565b600081815260d460205260409020546001600160a01b0316806129e45760405162461bcd60e51b815260206004820152601660248201527f4e6f20657874656e73696f6e20666f7220746f6b656e0000000000000000000060448201526064016108ee565b6129ef60d08261265e565b15612a3c5760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b919050565b600080612a4d836116d2565b9050806001600160a01b0316846001600160a01b03161480612a9457506001600160a01b038082166000908152609f602090815260408083209388168352929052205460ff165b80612ab85750836001600160a01b0316612aad84610995565b6001600160a01b0316145b949350505050565b826001600160a01b0316612ad3826116d2565b6001600160a01b031614612b4f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016108ee565b6001600160a01b038216612bca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108ee565b612bd5838383614299565b612be06000826127f7565b6001600160a01b0383166000908152609d60205260408120805460019290612c0990849061589c565b90915550506001600160a01b0382166000908152609d60205260408120805460019290612c379084906158af565b90915550506000818152609c602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612ca360ce3361265e565b61184d5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206265207265676973746572656420657874656e73696f6e0000000060448201526064016108ee565b600060cc60008154612d009061569f565b909155505060cc54612d1283826142a4565b600081815260d46020526040902080546001600160a01b03191633179055612d3a8382614338565b815115612d5b57600081815260d860205260409020612d5983826158c2565b505b610878565b600080600080612d6f86613788565b91509150600182511115612dc55760405162461bcd60e51b815260206004820152601c60248201527f4d6f7265207468616e203120726f79616c74792072656365697665720000000060448201526064016108ee565b8151600003612ddc57306000935093505050610edd565b81600081518110612def57612def615673565b60200260200101516127108683600081518110612e0e57612e0e615673565b6020026020010151612e209190615982565b612e2a91906159af565b9350935050509250929050565b6033546001600160a01b0316331461184d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ee565b600061267c836001600160a01b038416614352565b6000805260d56020527ff5cbbbf491ecca09b3146460212af7a9a122ceb752655fe793fa94eb0eeed0a6610f3d82826158c2565b612ee560d08261265e565b156109005760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b6001600160a01b0384163014801590612f5457506001600160a01b0384163b15155b612fa05760405162461bcd60e51b815260206004820152600760248201527f496e76616c69640000000000000000000000000000000000000000000000000060448201526064016108ee565b60405133906001600160a01b038616907fd8cb8ba4086944eabf43c5535b7712015e4d4c714b24bf812c040ea5b7a3e42a90600090a36001600160a01b038416600090815260d560205260409020612ff9838583615745565b506001600160a01b038416600090815260d660205260409020805460ff191682151517905561302960ce856134dd565b506111af84600161366a565b6000610878825490565b600061267c8383614445565b613057848484846140fc565b6001600160a01b038516600090815260d96020526040812061307891614c54565b6130a98484848460d960008b6001600160a01b03166001600160a01b031681526020019081526020016000206141c7565b6001600160a01b0385166130f9577f2b6849d5976d799a5b0ca4dfd6b40a3d7afe9ea72c091fa01a958594f9a2659b848484846040516130ec9493929190615805565b60405180910390a1610cc7565b846001600160a01b03167f535a93d2cb000582c0ebeaa9be4890ec6a287f98eb2df00c54c300612fd78d8f858585856040516129709493929190615805565b33600090815260d560205260409020613152838583615745565b5033600090815260d660205260409020805460ff19169115159190911790555050565b6000613180826116d2565b905061318e81600084614299565b6131996000836127f7565b6001600160a01b0381166000908152609d602052604081208054600192906131c290849061589c565b90915550506000828152609c602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600081815260d460205260409020546001600160a01b0316156132db57600081815260d46020526040902054613262906001600160a01b03166311686e4b60e21b61446f565b156132db57600081815260d46020526040908190205490516311686e4b60e21b81526001600160a01b03848116600483015260248201849052909116906345a1b92c90604401600060405180830381600087803b1580156132c257600080fd5b505af11580156132d6573d6000803e3d6000fd5b505050505b600081815260d86020526040902080546132f49061563f565b15905061331257600081815260d86020526040812061331291614c72565b600090815260d46020526040902080546001600160a01b031916905550565b600054610100900460ff1661339c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b610f3d828261448b565b600054610100900460ff166134115760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b61184d61450f565b60cd80546001600160a01b0319166001600160a01b0383169081179091556040519081527f959c0e47a2fe3cf01e237ba4892e2cc3194d77cbfb33e434e40873225d6b595f9060200160405180910390a150565b600083815260d460205260409020546001600160a01b031633146128df5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b33600090815260d760205260409020610b06828483615745565b600061267c836001600160a01b038416614583565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060cc600081546135559061569f565b909155505060cc54612d3a8382614338565b6000805260d76020527f8c93e91f2d3cdfe48d7e628f6e539bf3196799b8a9f7303c20a1106ca52f335a610b06828483615745565b816001600160a01b0316836001600160a01b0316036135fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ee565b6001600160a01b038381166000818152609f6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613694827f45ffcdad0000000000000000000000000000000000000000000000000000000061446f565b15610f3d576001600160a01b038216600081815260d36020908152604091829020805460ff191685151590811790915591519182527f072a7592283e2c2d1d56d21517ff6013325e0f55483f4828373ff4d98b0a1a36910160405180910390a25050565b613703848484612ac0565b61370f848484846145d2565b6111af5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b606061378182613788565b5092915050565b606080600060da6000858152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561380a57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff16818301528252600190920191016137c0565b505050509050805160000361395957600084815260d460205260409020546001600160a01b031680156139575761384881634e53ee3d60e11b61446f565b156138d357604051634e53ee3d60e11b8152306004820152602481018690526001600160a01b03821690639ca7dc7a90604401600060405180830381865afa158015613898573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138c09190810190615a29565b81519195509350156138d3575050915091565b6001600160a01b038116600090815260d96020908152604080832080548251818502810185019093528083529193909284015b8282101561395057600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101613906565b5050505091505b505b80516000036139fc57600080805260d960209081527f665fecb6766038646257fb3193371280b91d4ee69f1071872c4c7b974431a4888054604080518285028101850190915281815293919290919084015b828210156139f557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff16818301528252600190920191016139ab565b5050505090505b805115613b3457805167ffffffffffffffff811115613a1d57613a1d6151ef565b604051908082528060200260200182016040528015613a46578160200160208202803683370190505b509250805167ffffffffffffffff811115613a6357613a636151ef565b604051908082528060200260200182016040528015613a8c578160200160208202803683370190505b50915060005b8151811015613b3257818181518110613aad57613aad615673565b602002602001015160000151848281518110613acb57613acb615673565b60200260200101906001600160a01b031690816001600160a01b031681525050818181518110613afd57613afd615673565b60200260200101516020015161ffff16838281518110613b1f57613b1f615673565b6020908102919091010152600101613a92565b505b50915091565b6060600082118015613b4e575060cc548211155b613b8a5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016108ee565b600082815260d460205260409020546001600160a01b0316613bad60d08261265e565b15613bfa5760405162461bcd60e51b815260206004820152601560248201527f457874656e73696f6e20626c61636b6c6973746564000000000000000000000060448201526064016108ee565b600083815260d8602052604090208054613c139061563f565b159050613d2d576001600160a01b038116600090815260d7602052604090208054613c3d9061563f565b159050613c8e576001600160a01b038116600090815260d76020908152604080832086845260d88352928190209051613c77939201615b57565b604051602081830303815290604052915050919050565b600083815260d8602052604090208054613ca79061563f565b80601f0160208091040260200160405190810160405280929190818152602001828054613cd39061563f565b8015613d205780601f10613cf557610100808354040283529160200191613d20565b820191906000526020600020905b815481529060010190602001808311613d0357829003601f168201915b5050505050915050919050565b613d3e8163e9dc637560e01b61446f565b15613db65760405163e9dc637560e01b8152306004820152602481018490526001600160a01b0382169063e9dc637590604401600060405180830381865afa158015613d8e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261267c9190810190615b6c565b6001600160a01b038116600090815260d6602052604090205460ff16613e08576001600160a01b038116600090815260d560205260409020613df78461471e565b604051602001613c77929190615bda565b6001600160a01b038116600090815260d5602052604090208054613ca79061563f565b50919050565b60405133906001600160a01b038316907fd19cf84cf0fec6bec9ddfa29c63adf83a55707c712f32c8285d6180a7890147990600090a3610f3d60ce82612e91565b613e7d60ce8361265e565b613ec95760405162461bcd60e51b815260206004820152601e60248201527f43726561746f72436f72653a20496e76616c696420657874656e73696f6e000060448201526064016108ee565b6001600160a01b0381161580613eeb5750613eeb81631e05385b60e31b61446f565b613f375760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642061646472657373000000000000000000000000000000000060448201526064016108ee565b6001600160a01b03828116600090815260d26020526040902054811690821614610f3d576001600160a01b03828116600081815260d2602052604080822080546001600160a01b031916948616948517905551339392917f6a835c4fcf7e0d398db3762332fdaa1471814ad39f1e2d6d0b3fdabf8efee3e091a45050565b60006001600160e01b031982167f5365e65c00000000000000000000000000000000000000000000000000000000148061401857506001600160e01b031982167f28f10a2100000000000000000000000000000000000000000000000000000000145b8061402757506140278261258e565b8061405b57506001600160e01b031982167fbb3bafd600000000000000000000000000000000000000000000000000000000145b8061408f57506001600160e01b031982167fb779958400000000000000000000000000000000000000000000000000000000145b806140c357506001600160e01b031982167fd5a06d4c00000000000000000000000000000000000000000000000000000000145b8061087857506001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001492915050565b82811461413b5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064016108ee565b6000805b828110156141755783838281811061415957614159615673565b905060200201358261416b91906158af565b915060010161413f565b506127108110610cc75760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420746f74616c20726f79616c7469657300000000000000000060448201526064016108ee565b60005b82811015614291578160405180604001604052808888858181106141f0576141f0615673565b90506020020160208101906142059190614d37565b6001600160a01b0316815260200186868581811061422557614225615673565b61ffff602091820293909301358316909352508354600181810186556000958652948390208451910180549490930151909116600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b0390911617919091179055016141ca565b505050505050565b610b06838383614853565b33600090815260d260205260409020546001600160a01b031615610f3d5733600081815260d2602052604090819020549051631e05385b60e31b815260048101929092526001600160a01b03848116602484015260448301849052169063f029c2d890606401600060405180830381600087803b15801561432457600080fd5b505af1158015614291573d6000803e3d6000fd5b610f3d8282604051806020016040528060008152506149b7565b6000818152600183016020526040812054801561443b57600061437660018361589c565b855490915060009061438a9060019061589c565b90508181146143ef5760008660000182815481106143aa576143aa615673565b90600052602060002001549050808760000184815481106143cd576143cd615673565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061440057614400615bff565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610878565b6000915050610878565b600082600001828154811061445c5761445c615673565b9060005260206000200154905092915050565b600061447a83614a35565b801561267c575061267c8383614a68565b600054610100900460ff166144f65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b609a61450283826158c2565b50609b610b0682826158c2565b600054610100900460ff1661457a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016108ee565b61184d336134f2565b60008181526001830160205260408120546145ca57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610878565b506000610878565b60006001600160a01b0384163b1561471357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614616903390899088908890600401615c15565b6020604051808303816000875af1925050508015614651575060408051601f3d908101601f1916820190925261464e91810190615c51565b60015b6146f9573d80801561467f576040519150601f19603f3d011682016040523d82523d6000602084013e614684565b606091505b5080516000036146f15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab8565b506001949350505050565b60608160000361476157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561478b57806147758161569f565b91506147849050600a836159af565b9150614765565b60008167ffffffffffffffff8111156147a6576147a66151ef565b6040519080825280601f01601f1916602001820160405280156147d0576020820181803683370190505b5090505b8415612ab8576147e560018361589c565b91506147f2600a86615c6e565b6147fd9060306158af565b60f81b81838151811061481257614812615673565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061484c600a866159af565b94506147d4565b600081815260d460209081526040808320546001600160a01b0316835260d390915290205460ff161561495f57600081815260d4602052604090819020549051632f3537c560e11b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635e6a6f8a906084015b6020604051808303816000875af11580156148ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149139190615c82565b610b065760405162461bcd60e51b815260206004820152601a60248201527f457874656e73696f6e20617070726f76616c206661696c75726500000000000060448201526064016108ee565b60cd546001600160a01b031615610b065760cd54604051632f3537c560e11b81523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690635e6a6f8a906084016148d0565b6149c18383614b06565b6149ce60008484846145d2565b610b065760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108ee565b6000614a48826301ffc9a760e01b614a68565b80156108785750614a61826001600160e01b0319614a68565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015614aef575060208210155b8015614afb5750600081115b979650505050505050565b6001600160a01b038216614b5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ee565b6000818152609c60205260409020546001600160a01b031615614bc15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ee565b614bcd60008383614299565b6001600160a01b0382166000908152609d60205260408120805460019290614bf69084906158af565b90915550506000818152609c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906109009190614cac565b508054614c7e9061563f565b6000825580601f10614c8e575050565b601f0160209004906000526020600020908101906109009190614cda565b5b8082111561112957805475ffffffffffffffffffffffffffffffffffffffffffff19168155600101614cad565b5b808211156111295760008155600101614cdb565b6001600160e01b03198116811461090057600080fd5b600060208284031215614d1757600080fd5b813561267c81614cef565b6001600160a01b038116811461090057600080fd5b600060208284031215614d4957600080fd5b813561267c81614d22565b60005b83811015614d6f578181015183820152602001614d57565b50506000910152565b60008151808452614d90816020860160208601614d54565b601f01601f19169290920160200192915050565b60208152600061267c6020830184614d78565b600060208284031215614dc957600080fd5b5035919050565b60008060408385031215614de357600080fd5b8235614dee81614d22565b946020939093013593505050565b600081518084526020808501945080840160005b83811015614e2c57815187529582019590820190600101614e10565b509495945050505050565b60208152600061267c6020830184614dfc565b60008083601f840112614e5c57600080fd5b50813567ffffffffffffffff811115614e7457600080fd5b602083019150836020828501011115610edd57600080fd5b600080600060408486031215614ea157600080fd5b83359250602084013567ffffffffffffffff811115614ebf57600080fd5b614ecb86828701614e4a565b9497909650939450505050565b60008083601f840112614eea57600080fd5b50813567ffffffffffffffff811115614f0257600080fd5b6020830191508360208260051b8501011115610edd57600080fd5b600080600080600060608688031215614f3557600080fd5b85359450602086013567ffffffffffffffff80821115614f5457600080fd5b614f6089838a01614ed8565b90965094506040880135915080821115614f7957600080fd5b50614f8688828901614ed8565b969995985093965092949392505050565b600080600060608486031215614fac57600080fd5b8335614fb781614d22565b92506020840135614fc781614d22565b929592945050506040919091013590565b60008060408385031215614feb57600080fd5b50508035926020909101359150565b6000806020838503121561500d57600080fd5b823567ffffffffffffffff81111561502457600080fd5b61503085828601614e4a565b90969095509350505050565b60008060006040848603121561505157600080fd5b833561505c81614d22565b9250602084013567ffffffffffffffff811115614ebf57600080fd5b6020808252825182820181905260009190848201906040850190845b818110156150b95783516001600160a01b031683529284019291840191600101615094565b50909695505050505050565b600080600080604085870312156150db57600080fd5b843567ffffffffffffffff808211156150f357600080fd5b6150ff88838901614ed8565b9096509450602087013591508082111561511857600080fd5b5061512587828801614ed8565b95989497509550505050565b60008060006040848603121561514657600080fd5b833561515181614d22565b9250602084013567ffffffffffffffff81111561516d57600080fd5b614ecb86828701614ed8565b801515811461090057600080fd5b6000806000806060858703121561519d57600080fd5b84356151a881614d22565b9350602085013567ffffffffffffffff8111156151c457600080fd5b6151d087828801614e4a565b90945092505060408501356151e481615179565b939692955090935050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561522e5761522e6151ef565b604052919050565b600067ffffffffffffffff821115615250576152506151ef565b50601f01601f191660200190565b600061527161526c84615236565b615205565b905082815283838301111561528557600080fd5b828260208301376000602084830101529392505050565b600082601f8301126152ad57600080fd5b61267c8383356020850161525e565b600080604083850312156152cf57600080fd5b823567ffffffffffffffff808211156152e757600080fd5b6152f38683870161529c565b9350602085013591508082111561530957600080fd5b506153168582860161529c565b9150509250929050565b600067ffffffffffffffff82111561533a5761533a6151ef565b5060051b60200190565b60008060006040848603121561535957600080fd5b833567ffffffffffffffff8082111561537157600080fd5b818601915086601f83011261538557600080fd5b8135602061539561526c83615320565b82815260059290921b8401810191818101908a8411156153b457600080fd5b948201945b838610156153d2578535825294820194908201906153b9565b975050870135925050808211156153e857600080fd5b50614ecb86828701614ed8565b60008060006040848603121561540a57600080fd5b833567ffffffffffffffff81111561542157600080fd5b61542d86828701614e4a565b909450925050602084013561544181615179565b809150509250925092565b6000806040838503121561545f57600080fd5b823561546a81614d22565b9150602083013561547a81615179565b809150509250929050565b60006020828403121561549757600080fd5b813561267c81615179565b600080604083850312156154b557600080fd5b82356154c081614d22565b9150602083013561ffff8116811461547a57600080fd5b6000806000806000606086880312156154ef57600080fd5b85356154fa81614d22565b9450602086013567ffffffffffffffff80821115614f5457600080fd5b6000806000806080858703121561552d57600080fd5b843561553881614d22565b9350602085013561554881614d22565b925060408501359150606085013567ffffffffffffffff81111561556b57600080fd5b8501601f8101871361557c57600080fd5b61558b8782356020840161525e565b91505092959194509250565b600081518084526020808501945080840160005b83811015614e2c5781516001600160a01b0316875295820195908201906001016155ab565b60208152600061267c6020830184615597565b6040815260006155f66040830185615597565b82810360208401526156088185614dfc565b95945050505050565b6000806040838503121561562457600080fd5b823561562f81614d22565b9150602083013561547a81614d22565b600181811c9082168061565357607f821691505b602082108103613e2b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016156b1576156b1615689565b5060010190565b6000808335601e198436030181126156cf57600080fd5b83018035915067ffffffffffffffff8211156156ea57600080fd5b602001915036819003821315610edd57600080fd5b601f821115610b0657600081815260208120601f850160051c810160208610156157265750805b601f850160051c820191505b8181101561429157828155600101615732565b67ffffffffffffffff83111561575d5761575d6151ef565b6157718361576b835461563f565b836156ff565b6000601f8411600181146157a5576000851561578d5750838201355b600019600387901b1c1916600186901b178355610cc7565b600083815260209020601f19861690835b828110156157d657868501358255602094850194600190920191016157b6565b50868210156157f35760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6040808252810184905260008560608301825b8781101561584857823561582b81614d22565b6001600160a01b0316825260209283019290910190600101615818565b5083810360208501528481527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85111561588157600080fd5b8460051b915081866020830137016020019695505050505050565b8181038181111561087857610878615689565b8082018082111561087857610878615689565b815167ffffffffffffffff8111156158dc576158dc6151ef565b6158f0816158ea845461563f565b846156ff565b602080601f831160018114615925576000841561590d5750858301515b600019600386901b1c1916600185901b178555614291565b600085815260208120601f198616915b8281101561595457888601518255948401946001909101908401615935565b50858210156159725787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761087857610878615689565b634e487b7160e01b600052601260045260246000fd5b6000826159be576159be615999565b500490565b600082601f8301126159d457600080fd5b815160206159e461526c83615320565b82815260059290921b84018101918181019086841115615a0357600080fd5b8286015b84811015615a1e5780518352918301918301615a07565b509695505050505050565b60008060408385031215615a3c57600080fd5b825167ffffffffffffffff80821115615a5457600080fd5b818501915085601f830112615a6857600080fd5b81516020615a7861526c83615320565b82815260059290921b84018101918181019089841115615a9757600080fd5b948201945b83861015615abe578551615aaf81614d22565b82529482019490820190615a9c565b91880151919650909350505080821115615ad757600080fd5b50615316858286016159c3565b60008154615af18161563f565b60018281168015615b095760018114615b1e57615b4d565b60ff1984168752821515830287019450615b4d565b8560005260208060002060005b85811015615b445781548a820152908401908201615b2b565b50505082870194505b5050505092915050565b6000612ab8615b668386615ae4565b84615ae4565b600060208284031215615b7e57600080fd5b815167ffffffffffffffff811115615b9557600080fd5b8201601f81018413615ba657600080fd5b8051615bb461526c82615236565b818152856020838501011115615bc957600080fd5b615608826020830160208601614d54565b6000615be68285615ae4565b8351615bf6818360208801614d54565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152615c476080830184614d78565b9695505050505050565b600060208284031215615c6357600080fd5b815161267c81614cef565b600082615c7d57615c7d615999565b500690565b600060208284031215615c9457600080fd5b815161267c8161517956fe41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f722061a264697066735822122052e2526b2cc9239cc64511653469ea10b01933e26dce590f19303a6494b5570464736f6c63430008110033
Deployed Bytecode Sourcemap
339:11329:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705:336;;;;;;:::i;:::-;;:::i;:::-;;;611:14:29;;604:22;586:41;;574:2;559:18;705:336:19;;;;;;;;2066:126;;;;;;:::i;:::-;;:::i;:::-;;2931:98:4;;;:::i;:::-;;;;;;;:::i;4407:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2154:55:29;;;2136:74;;2124:2;2109:18;4407:167:4;1990:226:29;3928:418:4;;;;;;:::i;:::-;;:::i;10724:194:19:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4028:134::-;;;;;;:::i;:::-;;:::i;9235:260::-;;;;;;:::i;:::-;;:::i;13648:115:20:-;13736:20;;-1:-1:-1;;;;;13736:20:20;13648:115;;8375:192:19;;;;;;:::i;:::-;;:::i;5084:327:4:-;;;;;;:::i;:::-;;:::i;2025:137:0:-;;;;;;:::i;:::-;;:::i;6469:163:19:-;;;;;;:::i;:::-;;:::i;:::-;;;5941:25:29;;;5929:2;5914:18;6469:163:19;5795:177:29;10988:222:19;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6422:55:29;;;6404:74;;6509:2;6494:18;;6487:34;;;;6377:18;10988:222:19;6230:297:29;1757:205:0;;;;;;:::i;:::-;;:::i;3648:116:19:-;;;;;;:::i;:::-;;:::i;1274:205::-;;;;;;:::i;:::-;;:::i;1156:261:0:-;;;:::i;:::-;;;;;;;:::i;8969:199:19:-;;;;;;:::i;:::-;;:::i;7381:355::-;;;;;;:::i;:::-;;:::i;2271:155::-;;;;;;:::i;:::-;;:::i;1551:239::-;;;;;;:::i;:::-;;:::i;5477:179:4:-;;;;;;:::i;:::-;;:::i;8632:270:19:-;;;;;;:::i;:::-;;:::i;483:155::-;;;;;;:::i;:::-;;:::i;11536:130::-;;;;;;:::i;:::-;;:::i;3235:343::-;;;;;;:::i;:::-;;:::i;2651:218:4:-;;;;;;:::i;:::-;;:::i;2761:158:19:-;;;;;;:::i;:::-;;:::i;1485:205:0:-;;;;;;:::i;:::-;;:::i;2390:204:4:-;;;;;;:::i;:::-;;:::i;2071:101:2:-;;;:::i;4841:139:19:-;;;;;;:::i;:::-;;:::i;5049:161::-;;;;;;:::i;:::-;;:::i;5664:331::-;;;;;;:::i;:::-;;:::i;2505:175::-;;;;;;:::i;:::-;;:::i;4253:316:20:-;;;:::i;1441:85:2:-;1513:6;;-1:-1:-1;;;;;1513:6:2;1441:85;;3093:102:4;;;:::i;3836:126:19:-;;;;;;:::i;:::-;;:::i;4641:153:4:-;;;;;;:::i;:::-;;:::i;4228:311:19:-;;;;;;:::i;:::-;;:::i;5162:163:20:-;;;;;;:::i;:::-;;:::i;5284:306:19:-;;;;;;:::i;:::-;;:::i;9571:226::-;;;;;;:::i;:::-;;:::i;5722:315:4:-;;;;;;:::i;:::-;;:::i;10442:218:19:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9864:225::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;11277:186::-;;;;;;:::i;:::-;;:::i;1865:128::-;;;;;;:::i;:::-;;:::i;6970:332::-;;;;;;:::i;:::-;;:::i;2994:166::-;;;;;;:::i;:::-;;:::i;4860:162:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4980:25:4;;;4957:4;4980:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4860:162;4612:160:19;;;;;;:::i;:::-;;:::i;2321:198:2:-;;;;;;:::i;:::-;;:::i;6706:185:19:-;;;;;;:::i;:::-;;:::i;552:35:21:-;;586:1;552:35;;705:336:19;853:4;876:48;912:11;876:35;:48::i;:::-;:100;;;;928:48;964:11;928:35;:48::i;:::-;876:158;;;;980:54;1022:11;980:41;:54::i;:::-;869:165;705:336;-1:-1:-1;;705:336:19:o;2066:126::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;;;;;;;;;2155:30:19::1;2175:9;2155:19;:30::i;:::-;2066:126:::0;:::o;2931:98:4:-;2985:13;3017:5;3010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2931:98;:::o;4407:167::-;4483:7;4502:23;4517:7;4502:14;:23::i;:::-;-1:-1:-1;4543:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4543:24:4;;4407:167::o;3928:418::-;4008:13;4024:34;4050:7;4024:25;:34::i;:::-;4008:50;;4082:5;-1:-1:-1;;;;;4076:11:4;:2;-1:-1:-1;;;;;4076:11:4;;4068:57;;;;-1:-1:-1;;;4068:57:4;;19672:2:29;4068:57:4;;;19654:21:29;19711:2;19691:18;;;19684:30;19750:34;19730:18;;;19723:62;19821:3;19801:18;;;19794:31;19842:19;;4068:57:4;19470:397:29;4068:57:4;929:10:9;-1:-1:-1;;;;;4157:21:4;;;;:62;;-1:-1:-1;;;;;;4980:25:4;;4957:4;4980:25;;;:18;:25;;;;;;;;929:10:9;4980:35:4;;;;;;;;;;4182:37;4136:171;;;;-1:-1:-1;;;4136:171:4;;20074:2:29;4136:171:4;;;20056:21:29;20113:2;20093:18;;;20086:30;20152:34;20132:18;;;20125:62;20223:32;20203:18;;;20196:60;20273:19;;4136:171:4;19872:426:29;4136:171:4;4318:21;4327:2;4331:7;4318:8;:21::i;:::-;3998:348;3928:418;;:::o;10724:194:19:-;7571:4:4;7594:16;;;:7;:16;;;;;;10800:13:19;;-1:-1:-1;;;;;7594:16:4;10825:46:19;;;;-1:-1:-1;;;10825:46:19;;20505:2:29;10825:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;10825:46:19;20303:341:29;10825:46:19;10888:23;10903:7;10888:14;:23::i;4028:134::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;4129:26:19::1;4142:7;4151:3;;4129:12;:26::i;9235:260::-:0;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;7571:4:4;7594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7594:16:4;9386:46:19::1;;;::::0;-1:-1:-1;;;9386:46:19;;20505:2:29;9386:46:19::1;::::0;::::1;20487:21:29::0;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;9386:46:19::1;20303:341:29::0;9386:46:19::1;9442;9456:7;9465:9;;9476:11;;9442:13;:46::i;:::-;9235:260:::0;;;;;:::o;8375:192::-;8454:7;7594:16:4;;;:7;:16;;;;;;-1:-1:-1;;;;;7594:16:4;8473:46:19;;;;-1:-1:-1;;;8473:46:19;;20505:2:29;8473:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;8473:46:19;20303:341:29;8473:46:19;8536:24;8552:7;8536:15;:24::i;5084:327:4:-;5273:41;929:10:9;5306:7:4;5273:18;:41::i;:::-;5265:100;;;;-1:-1:-1;;;5265:100:4;;20851:2:29;5265:100:4;;;20833:21:29;20890:2;20870:18;;;20863:30;20929:34;20909:18;;;20902:62;21000:16;20980:18;;;20973:44;21034:19;;5265:100:4;20649:410:29;5265:100:4;5376:28;5386:4;5392:2;5396:7;5376:9;:28::i;2025:137:0:-;2087:4;2122:5;-1:-1:-1;;;;;2111:16:0;:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;2111:7:0;-1:-1:-1;;;;;2111:16:0;;:43;;;-1:-1:-1;2131:23:0;:7;2148:5;2131:16;:23::i;6469:163:19:-;6549:7;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;6568::19::1;:16;:18::i;:::-;6603:22;6618:2;6603:22;;;;;;;;;;;::::0;:14:::1;:22::i;:::-;1701:1:13::0;2628:7;:22;6596:29:19;6469:163;-1:-1:-1;;6469:163:19:o;10988:222::-;11081:7;7594:16:4;;;:7;:16;;;;;;11081:7:19;;-1:-1:-1;;;;;7594:16:4;11109:46:19;;;;-1:-1:-1;;;11109:46:19;;20505:2:29;11109:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;11109:46:19;20303:341:29;11109:46:19;11172:31;11188:7;11197:5;11172:15;:31::i;:::-;11165:38;;;;10988:222;;;;;;:::o;1757:205:0:-;1334:13:2;:11;:13::i;:::-;1835:23:0::1;:7;1852:5:::0;1835:16:::1;:23::i;:::-;1831:125;;;1879:31;::::0;1899:10:::1;::::0;-1:-1:-1;;;;;1879:31:0;::::1;::::0;::::1;::::0;;;::::1;1924:21;:7;1939:5:::0;1924:14:::1;:21::i;:::-;;1757:205:::0;:::o;3648:116:19:-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;3736:21:19::1;3753:3;;3736:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;3736:16:19::1;::::0;-1:-1:-1;;;3736:21:19:i:1;1274:205::-:0;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;1387:30:19::1;1407:9;1387:19;:30::i;:::-;1427:45;1446:9;1457:7;;1466:5;1427:18;:45::i;1156:261:0:-:0;1209:23;1267:16;:7;:14;:16::i;:::-;1253:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1253:31:0;;1244:40;;1299:6;1294:94;1315:16;:7;:14;:16::i;:::-;1311:1;:20;1294:94;;;1364:13;:7;1375:1;1364:10;:13::i;:::-;1352:6;1359:1;1352:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1352:25:0;;;:9;;;;;;;;;;;:25;1333:3;;;;:::i;:::-;;;;1294:94;;;;1156:261;:::o;8969:199:19:-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;9103:58:19::1;9134:1;9138:9;;9149:11;;9103:22;:58::i;:::-;8969:199:::0;;;;:::o;7381:355::-;7490:25;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;7527::19::1;:16;:18::i;:::-;7580:4:::0;7566:26:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;7566:26:19::1;;7555:37;;7607:6;7602:128;7615:15:::0;;::::1;7602:128;;;7661:27;7676:2;7680:4;;7685:1;7680:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;7661:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;7661:14:19::1;::::0;-1:-1:-1;;;7661:27:19:i:1;:::-;7647:8;7656:1;7647:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:41;7714:3:::1;;7602:128;;;-1:-1:-1::0;1701:1:13;2628:7;:22;7381:355:19;;-1:-1:-1;;;7381:355:19:o;2271:155::-;2354:18;:16;:18::i;:::-;2382:37;2408:3;;2413:5;2382:25;:37::i;1551:239::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;1687:30:19::1;1707:9;1687:19;:30::i;:::-;1727:56;1746:9;1757:7;;1766:16;1727:18;:56::i;5477:179:4:-:0;5610:39;5627:4;5633:2;5637:7;5610:39;;;;;;;;;;;;:16;:39::i;8632:270:19:-;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;8718:39:19::1;8737:10;8749:7:::0;8718:18:::1;:39::i;:::-;8710:84;;;::::0;-1:-1:-1;;;8710:84:19;;22671:2:29;8710:84:19::1;::::0;::::1;22653:21:29::0;;;22690:18;;;22683:30;22749:34;22729:18;;;22722:62;22801:18;;8710:84:19::1;22469:356:29::0;8710:84:19::1;8804:13;8820:16;8828:7;8820;:16::i;:::-;8804:32;;8846:14;8852:7;8846:5;:14::i;:::-;8870:25;8880:5;8887:7;8870:9;:25::i;:::-;-1:-1:-1::0;;1701:1:13;2628:7;:22;8632:270:19:o;483:155::-;3111:19:3;3134:13;;;;;;3133:14;;3179:34;;;;-1:-1:-1;3197:12:3;;3212:1;3197:12;;;;:16;3179:34;3178:108;;;-1:-1:-1;3258:4:3;1476:19:8;:23;;;3219:66:3;;-1:-1:-1;3268:12:3;;;;;:17;3219:66;3157:201;;;;-1:-1:-1;;;3157:201:3;;23032:2:29;3157:201:3;;;23014:21:29;23071:2;23051:18;;;23044:30;23110:34;23090:18;;;23083:62;23181:16;23161:18;;;23154:44;23215:19;;3157:201:3;22830:410:29;3157:201:3;3368:12;:16;;-1:-1:-1;;3368:16:3;3383:1;3368:16;;;3394:65;;;;3428:13;:20;;-1:-1:-1;;3428:20:3;;;;;3394:65;576:29:19::1;590:5;597:7;576:13;:29::i;:::-;615:16;:14;:16::i;:::-;3483:14:3::0;3479:99;;;3529:5;3513:21;;-1:-1:-1;;3513:21:3;;;3553:14;;-1:-1:-1;23397:36:29;;3553:14:3;;23385:2:29;23370:18;3553:14:3;;;;;;;3101:483;483:155:19;;:::o;11536:130::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;11625:34:19::1;11649:9;11625:23;:34::i;3235:343::-:0;3344:18;:16;:18::i;:::-;3380:15;;:30;;3372:56;;;;-1:-1:-1;;;3372:56:19;;23646:2:29;3372:56:19;;;23628:21:29;23685:2;23665:18;;;23658:30;-1:-1:-1;;;23704:18:29;;;23697:43;23757:18;;3372:56:19;23444:337:29;3372:56:19;3443:6;3438:134;3455:8;:15;3451:1;:19;3438:134;;;3487:43;3509:8;3518:1;3509:11;;;;;;;;:::i;:::-;;;;;;;3522:4;;3527:1;3522:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;3487:21;:43::i;:::-;3556:3;;3438:134;;2651:218:4;2723:7;2758:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2758:16:4;;2784:56;;;;-1:-1:-1;;;2784:56:4;;23988:2:29;2784:56:4;;;23970:21:29;24027:2;24007:18;;;24000:30;24066:26;24046:18;;;24039:54;24110:18;;2784:56:4;23786:348:29;2761:158:19;2849:18;:16;:18::i;:::-;2877:35;2905:6;;2877:27;:35::i;1485:205:0:-;1334:13:2;:11;:13::i;:::-;1565:23:0::1;:7;1582:5:::0;1565:16:::1;:23::i;:::-;1560:124;;1609:32;::::0;1630:10:::1;::::0;-1:-1:-1;;;;;1609:32:0;::::1;::::0;::::1;::::0;;;::::1;1655:18;:7;1667:5:::0;1655:11:::1;:18::i;2390:204:4:-:0;2462:7;-1:-1:-1;;;;;2489:19:4;;2481:73;;;;-1:-1:-1;;;2481:73:4;;24341:2:29;2481:73:4;;;24323:21:29;24380:2;24360:18;;;24353:30;24419:34;24399:18;;;24392:62;24490:11;24470:18;;;24463:39;24519:19;;2481:73:4;24139:405:29;2481:73:4;-1:-1:-1;;;;;;2571:16:4;;;;;:9;:16;;;;;;;2390:204::o;2071:101:2:-;1334:13;:11;:13::i;:::-;2135:30:::1;2162:1;2135:18;:30::i;:::-;2071:101::o:0;4841:139:19:-;4930:7;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;987:10:0::1;976:7;1513:6:2::0;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0::1;-1:-1:-1::0;;;;;976:21:0::1;;:53;;;-1:-1:-1::0;1001:28:0::1;:7;1018:10;1001:16;:28::i;:::-;968:102;;;::::0;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0::1;::::0;::::1;18807:21:29::0;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0::1;18623:400:29::0;968:102:0::1;4956:17:19::2;4966:2;4956:17;;;;;;;;;;;::::0;:9:::2;:17::i;5049:161::-:0;5159:7;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;987:10:0::1;976:7;1513:6:2::0;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0::1;-1:-1:-1::0;;;;;976:21:0::1;;:53;;;-1:-1:-1::0;1001:28:0::1;:7;1018:10;1001:16;:28::i;:::-;968:102;;;::::0;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0::1;::::0;::::1;18807:21:29::0;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0::1;18623:400:29::0;968:102:0::1;5185:18:19::2;5195:2;5199:3;;5185:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;5185:9:19::2;::::0;-1:-1:-1;;;5185:18:19:i:2;:::-;1701:1:13::0;2628:7;:22;5178:25:19;5049:161;-1:-1:-1;;;;5049:161:19:o;5664:331::-;5782:25;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;987:10:0::1;976:7;1513:6:2::0;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0::1;-1:-1:-1::0;;;;;976:21:0::1;;:53;;;-1:-1:-1::0;1001:28:0::1;:7;1018:10;1001:16;:28::i;:::-;968:102;;;::::0;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0::1;::::0;::::1;18807:21:29::0;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0::1;18623:400:29::0;968:102:0::1;5844:4:19::0;5830:26:::2;::::0;::::2;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;5830:26:19::2;;5819:37;;5871:6;5866:123;5879:15:::0;;::::2;5866:123;;;5925:22;5935:2;5939:4;;5944:1;5939:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;5925:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;5925:9:19::2;::::0;-1:-1:-1;;;5925:22:19:i:2;:::-;5911:8;5920:1;5911:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;:36;5973:3:::2;;5866:123;;2505:175:::0;2604:18;:16;:18::i;:::-;2632:41;2658:3;;2663:9;2632:25;:41::i;4253:316:20:-;4310:27;4376:20;:11;:18;:20::i;:::-;4362:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4362:35:20;;4349:48;;4412:6;4407:129;4424:20;:11;:18;:20::i;:::-;4420:1;:24;4407:129;;;4477:17;:11;4492:1;4477:14;:17::i;:::-;4461:10;4472:1;4461:13;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4461:33:20;;;:13;;;;;;;;;;;:33;4520:3;;4407:129;;3093:102:4;3149:13;3181:7;3174:14;;;;;:::i;3836:126:19:-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;3929:26:19::1;3948:6;;3929:18;:26::i;4641:153:4:-:0;4735:52;929:10:9;4768:8:4;4778;4735:18;:52::i;4228:311:19:-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;4350:15:19;;:30;::::1;4342:56;;;::::0;-1:-1:-1;;;4342:56:19;;23646:2:29;4342:56:19::1;::::0;::::1;23628:21:29::0;23685:2;23665:18;;;23658:30;-1:-1:-1;;;23704:18:29;;;23697:43;23757:18;;4342:56:19::1;23444:337:29::0;4342:56:19::1;4413:6;4408:125;4425:8;:15;4421:1;:19;4408:125;;;4457:34;4470:8;4479:1;4470:11;;;;;;;;:::i;:::-;;;;;;;4483:4;;4488:1;4483:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;4457:12;:34::i;:::-;4517:3;;4408:125;;5162:163:20::0;5241:18;:16;:18::i;:::-;5269:49;5298:10;5310:7;5269:28;:49::i;5284:306:19:-;5392:25;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;987:10:0::1;976:7;1513:6:2::0;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0::1;-1:-1:-1::0;;;;;976:21:0::1;;:53;;;-1:-1:-1::0;1001:28:0::1;:7;1018:10;1001:16;:28::i;:::-;968:102;;;::::0;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0::1;::::0;::::1;18807:21:29::0;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0::1;18623:400:29::0;968:102:0::1;5454:5:19::2;5440:20;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;5440:20:19::2;;5429:31;;5475:8;5470:114;5489:5;5485:9;;:1;:9;;;5470:114;;;5525:17;5535:2;5525:17;;;;;;;;;;;::::0;:9:::2;:17::i;:::-;5511:8;5520:1;5511:11;;;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;:31;5568:3:::2;;5470:114;;;-1:-1:-1::0;1701:1:13;2628:7;:22;5284:306:19;;-1:-1:-1;;5284:306:19:o;9571:226::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;9733:57:19::1;9756:9;9767;;9778:11;;9733:22;:57::i;5722:315:4:-:0;5890:41;929:10:9;5923:7:4;5890:18;:41::i;:::-;5882:100;;;;-1:-1:-1;;;5882:100:4;;20851:2:29;5882:100:4;;;20833:21:29;20890:2;20870:18;;;20863:30;20929:34;20909:18;;;20902:62;21000:16;20980:18;;;20973:44;21034:19;;5882:100:4;20649:410:29;5882:100:4;5992:38;6006:4;6012:2;6016:7;6025:4;5992:13;:38::i;10442:218:19:-;7571:4:4;7594:16;;;:7;:16;;;;;;10525:24:19;;-1:-1:-1;;;;;7594:16:4;10561:46:19;;;;-1:-1:-1;;;10561:46:19;;20505:2:29;10561:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;10561:46:19;20303:341:29;10561:46:19;10624:29;10645:7;10624:20;:29::i;9864:225::-;9943:24;9969:16;10005;10013:7;7571:4:4;7594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7594:16:4;:30;;;7506:125;10005:16:19;9997:46;;;;-1:-1:-1;;;9997:46:19;;20505:2:29;9997:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;9997:46:19;20303:341:29;9997:46:19;10060:22;10074:7;10060:13;:22::i;:::-;10053:29;;;;9864:225;;;:::o;11277:186::-;7571:4:4;7594:16;;;:7;:16;;;;;;11350:13:19;;-1:-1:-1;;;;;7594:16:4;11375:46:19;;;;-1:-1:-1;;;11375:46:19;;20505:2:29;11375:46:19;;;20487:21:29;20544:2;20524:18;;;20517:30;-1:-1:-1;;;20563:18:29;;;20556:47;20620:18;;11375:46:19;20303:341:29;11375:46:19;11438:18;11448:7;11438:9;:18::i;1865:128::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;1955:31:19::1;1976:9;1955:20;:31::i;6970:332::-:0;7069:25;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;7106::19::1;:16;:18::i;:::-;7159:5;7145:20;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;7145:20:19::1;;7134:31;;7180:6;7175:121;7196:5;7192:9;;:1;:9;7175:121;;;7232:22;7247:2;7232:22;;;;;;;;;;;::::0;:14:::1;:22::i;:::-;7218:8;7227:1;7218:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:36;7280:3:::1;;7175:121;;2994:166:::0;3090:18;:16;:18::i;:::-;3118:35;3140:7;3149:3;;3118:21;:35::i;4612:160::-;987:10:0;976:7;1513:6:2;;-1:-1:-1;;;;;1513:6:2;;1441:85;976:7:0;-1:-1:-1;;;;;976:21:0;;:53;;;-1:-1:-1;1001:28:0;:7;1018:10;1001:16;:28::i;:::-;968:102;;;;-1:-1:-1;;;968:102:0;;18825:2:29;968:102:0;;;18807:21:29;18864:2;18844:18;;;18837:30;-1:-1:-1;;;;;;;;;;;18883:18:29;;;18876:62;-1:-1:-1;;;18954:18:29;;;18947:34;18998:19;;968:102:0;18623:400:29;968:102:0;4722:43:19::1;4742:9;4753:11;4722:19;:43::i;2321:198:2:-:0;1334:13;:11;:13::i;:::-;-1:-1:-1;;;;;2409:22:2;::::1;2401:73;;;::::0;-1:-1:-1;;;2401:73:2;;24751:2:29;2401:73:2::1;::::0;::::1;24733:21:29::0;24790:2;24770:18;;;24763:30;24829:34;24809:18;;;24802:62;24900:8;24880:18;;;24873:36;24926:19;;2401:73:2::1;24549:402:29::0;2401:73:2::1;2484:28;2503:8;2484:18;:28::i;6706:185:19:-:0;6807:7;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;21266:2:29;2317:63:13;;;21248:21:29;21305:2;21285:18;;;21278:30;21344:33;21324:18;;;21317:61;21395:18;;2317:63:13;21064:355:29;2317:63:13;1744:1;2455:7;:18;6826::19::1;:16;:18::i;:::-;6861:23;6876:2;6880:3;;6861:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;6861:14:19::1;::::0;-1:-1:-1;;;6861:23:19:i:1;710:228:21:-:0;817:4;-1:-1:-1;;;;;;840:51:21;;855:36;840:51;;:91;;;895:36;919:11;895:23;:36::i;1987:344:4:-;2111:4;-1:-1:-1;;;;;;2146:51:4;;2161:36;2146:51;;:126;;-1:-1:-1;;;;;;;2213:59:4;;2228:44;2213:59;2146:126;:178;;;-1:-1:-1;;;;;;;;;;1168:51:11;;;2288:36:4;1060:166:11;610:230:0;712:4;-1:-1:-1;;;;;;735:46:0;;750:31;735:46;;:98;;-1:-1:-1;;;;;;;;;;1168:51:11;;;797:36:0;1060:166:11;8583:165:18;-1:-1:-1;;;;;8716:23:18;;8663:4;4250:19;;;:12;;;:19;;;;;;:24;;8686:55;8679:62;8583:165;-1:-1:-1;;;8583:165:18:o;5818:501:20:-;-1:-1:-1;;;;;5892:23:20;;;;;;:53;;-1:-1:-1;;;;;;5919:26:20;;5940:4;5919:26;;5892:53;5884:91;;;;-1:-1:-1;;;5884:91:20;;25158:2:29;5884:91:20;;;25140:21:29;25197:2;25177:18;;;25170:30;25236:27;25216:18;;;25209:55;25281:18;;5884:91:20;24956:349:29;5884:91:20;5988:31;:11;6009:9;5988:20;:31::i;:::-;5984:151;;;6039:44;;6072:10;;-1:-1:-1;;;;;6039:44:20;;;;;;;;6096:29;:11;6115:9;6096:18;:29::i;:::-;;5984:151;6148:42;:22;6180:9;6148:31;:42::i;:::-;6143:170;;6210:43;;6242:10;;-1:-1:-1;;;;;6210:43:20;;;;;;;;6266:37;:22;6293:9;6266:26;:37::i;12173:133:4:-;7571:4;7594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7594:16:4;12246:53;;;;-1:-1:-1;;;12246:53:4;;23988:2:29;12246:53:4;;;23970:21:29;24027:2;24007:18;;;24000:30;24066:26;24046:18;;;24039:54;24110:18;;12246:53:4;23786:348:29;11464:182:4;11538:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11538:29:4;-1:-1:-1;;;;;11538:29:4;;;;;;;;:24;;11591:34;11538:24;11591:25;:34::i;:::-;-1:-1:-1;;;;;11582:57:4;;;;;;;;;;;11464:182;;:::o;10959:135:20:-;11023:20;11065:22;11079:7;11065:13;:22::i;7521:227::-;7618:1;7608:7;:11;:37;;;;;7634:11;;7623:7;:22;;7608:37;:80;;;;-1:-1:-1;7686:1:20;7649:25;;;:16;:25;;;;;;-1:-1:-1;;;;;7649:25:20;:39;7608:80;7600:106;;;;-1:-1:-1;;;7600:106:20;;25512:2:29;7600:106:20;;;25494:21:29;25551:2;25531:18;;;25524:30;-1:-1:-1;;;25570:18:29;;;25563:43;25623:18;;7600:106:20;25310:337:29;7600:106:20;7716:19;;;;:10;:19;;;;;:25;7738:3;;7716:19;:25;:::i;11586:348::-;11714:39;11730:9;;11741:11;;11714:15;:39::i;:::-;11770:22;;;;:13;:22;;;;;11763:29;;;:::i;:::-;11802:61;11816:9;;11827:11;;11840:13;:22;11854:7;11840:22;;;;;;;;;;;11802:13;:61::i;:::-;11895:7;11878:49;11904:9;;11915:11;;11878:49;;;;;;;;;:::i;:::-;;;;;;;;11586:348;;;;;:::o;8870:321::-;8935:17;8976:25;;;:16;:25;;;;;;-1:-1:-1;;;;;8976:25:20;;9012:58;;;;-1:-1:-1;;;9012:58:20;;29062:2:29;9012:58:20;;;29044:21:29;29101:2;29081:18;;;29074:30;29140:24;29120:18;;;29113:52;29182:18;;9012:58:20;28860:346:29;9012:58:20;9089:42;:22;9121:9;9089:31;:42::i;:::-;9088:43;9080:77;;;;-1:-1:-1;;;9080:77:20;;29413:2:29;9080:77:20;;;29395:21:29;29452:2;29432:18;;;29425:30;29491:23;29471:18;;;29464:51;29532:18;;9080:77:20;29211:345:29;9080:77:20;8870:321;;;:::o;7789:272:4:-;7882:4;7898:13;7914:34;7940:7;7914:25;:34::i;:::-;7898:50;;7977:5;-1:-1:-1;;;;;7966:16:4;:7;-1:-1:-1;;;;;7966:16:4;;:52;;;-1:-1:-1;;;;;;4980:25:4;;;4957:4;4980:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7986:32;7966:87;;;;8046:7;-1:-1:-1;;;;;8022:31:4;:20;8034:7;8022:11;:20::i;:::-;-1:-1:-1;;;;;8022:31:4;;7966:87;7958:96;7789:272;-1:-1:-1;;;;7789:272:4:o;10736:616::-;10901:4;-1:-1:-1;;;;;10863:42:4;:34;10889:7;10863:25;:34::i;:::-;-1:-1:-1;;;;;10863:42:4;;10855:92;;;;-1:-1:-1;;;10855:92:4;;29763:2:29;10855:92:4;;;29745:21:29;29802:2;29782:18;;;29775:30;29841:34;29821:18;;;29814:62;29912:7;29892:18;;;29885:35;29937:19;;10855:92:4;29561:401:29;10855:92:4;-1:-1:-1;;;;;10965:16:4;;10957:65;;;;-1:-1:-1;;;10957:65:4;;30169:2:29;10957:65:4;;;30151:21:29;30208:2;30188:18;;;30181:30;30247:34;30227:18;;;30220:62;30318:6;30298:18;;;30291:34;30342:19;;10957:65:4;29967:400:29;10957:65:4;11033:39;11054:4;11060:2;11064:7;11033:20;:39::i;:::-;11134:29;11151:1;11155:7;11134:8;:29::i;:::-;-1:-1:-1;;;;;11174:15:4;;;;;;:9;:15;;;;;:20;;11193:1;;11174:15;:20;;11193:1;;11174:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11204:13:4;;;;;;:9;:13;;;;;:18;;11221:1;;11204:13;:18;;11221:1;;11204:18;:::i;:::-;;;;-1:-1:-1;;11232:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11232:21:4;-1:-1:-1;;;;;11232:21:4;;;;;;;;;11269:27;;11232:16;;11269:27;;;;;;;3998:348;3928:418;;:::o;3821:132:20:-;3881:32;:11;3902:10;3881:20;:32::i;:::-;3873:73;;;;-1:-1:-1;;;3873:73:20;;30837:2:29;3873:73:20;;;30819:21:29;30876:2;30856:18;;;30849:30;30915;30895:18;;;30888:58;30963:18;;3873:73:20;30635:352:29;7799:501:19;7879:15;7908:11;;7906:13;;;;;:::i;:::-;;;;-1:-1:-1;;7939:11:19;;7961:34;7983:2;7939:11;7961:21;:34::i;:::-;8059:25;;;;:16;:25;;;;;:38;;-1:-1:-1;;;;;;8059:38:19;8087:10;8059:38;;;8108:22;8118:2;8076:7;8108:9;:22::i;:::-;8145:17;;:21;8141:77;;8182:19;;;;:10;:19;;;;;:25;8204:3;8182:19;:25;:::i;:::-;;8141:77;8262:31;1757:205:0;11100:431:20;11180:16;11198:14;11224:34;11260:20;11284:22;11298:7;11284:13;:22::i;:::-;11223:83;;;;11344:1;11324:9;:16;:21;;11316:62;;;;-1:-1:-1;;;11316:62:20;;32551:2:29;11316:62:20;;;32533:21:29;32590:2;32570:18;;;32563:30;32629;32609:18;;;32602:58;32677:18;;11316:62:20;32349:352:29;11316:62:20;11401:9;:16;11421:1;11401:21;11397:77;;11454:4;11461:1;11438:25;;;;;;;;11397:77;11491:9;11501:1;11491:12;;;;;;;;:::i;:::-;;;;;;;11518:5;11512;11505:3;11509:1;11505:6;;;;;;;;:::i;:::-;;;;;;;:12;;;;:::i;:::-;:18;;;;:::i;:::-;11483:41;;;;;;11100:431;;;;;:::o;1599:130:2:-;1513:6;;-1:-1:-1;;;;;1513:6:2;929:10:9;1662:23:2;1654:68;;;;-1:-1:-1;;;1654:68:2;;33395:2:29;1654:68:2;;;33377:21:29;;;33414:18;;;33407:30;33473:34;33453:18;;;33446:62;33525:18;;1654:68:2;33193:356:29;8346:156:18;8419:4;8442:53;8450:3;-1:-1:-1;;;;;8470:23:18;;8442:7;:53::i;7134:106:20:-;7198:29;;;:17;:29;;;:35;7230:3;7198:29;:35;:::i;4026:156::-;4107:42;:22;4139:9;4107:31;:42::i;:::-;4106:43;4098:77;;;;-1:-1:-1;;;4098:77:20;;29413:2:29;4098:77:20;;;29395:21:29;29452:2;29432:18;;;29425:30;29491:23;29471:18;;;29464:51;29532:18;;4098:77:20;29211:345:29;4625:455:20;-1:-1:-1;;;;;4747:26:20;;4768:4;4747:26;;;;:52;;-1:-1:-1;;;;;;4777:20:20;;1476:19:8;:23;;4777:22:20;4739:72;;;;-1:-1:-1;;;4739:72:20;;33756:2:29;4739:72:20;;;33738:21:29;33795:1;33775:18;;;33768:29;33833:9;33813:18;;;33806:37;33860:18;;4739:72:20;33554:330:29;4739:72:20;4826:42;;4857:10;;-1:-1:-1;;;;;4826:42:20;;;;;;;;-1:-1:-1;;;;;4878:28:20;;;;;;:17;:28;;;;;:38;4909:7;;4878:28;:38;:::i;:::-;-1:-1:-1;;;;;;4926:37:20;;;;;;:26;:37;;;;;:56;;-1:-1:-1;;4926:56:20;;;;;;;4992:26;:11;4926:37;4992:15;:26::i;:::-;;5028:45;5057:9;5068:4;5028:28;:45::i;8829:115:18:-;8892:7;8918:19;8926:3;4444:18;;4362:107;9286:156;9360:7;9410:22;9414:3;9426:5;9410:3;:22::i;12008:519:20:-;12148:39;12164:9;;12175:11;;12148:15;:39::i;:::-;-1:-1:-1;;;;;12204:28:20;;;;;;:17;:28;;;;;12197:35;;;:::i;:::-;12242:67;12256:9;;12267:11;;12280:17;:28;12298:9;-1:-1:-1;;;;;12280:28:20;-1:-1:-1;;;;;12280:28:20;;;;;;;;;;;;12242:13;:67::i;:::-;-1:-1:-1;;;;;12323:23:20;;12319:202;;12367:47;12391:9;;12402:11;;12367:47;;;;;;;;;:::i;:::-;;;;;;;;12319:202;;;12476:9;-1:-1:-1;;;;;12450:60:20;;12487:9;;12498:11;;12450:60;;;;;;;;;:::i;6389:193::-;6498:10;6480:29;;;;:17;:29;;;;;:35;6512:3;;6480:29;:35;:::i;:::-;-1:-1:-1;6552:10:20;6525:38;;;;:26;:38;;;;;:50;;-1:-1:-1;;6525:50:20;;;;;;;;;;-1:-1:-1;;6389:193:20:o;9995:417:4:-;10054:13;10070:34;10096:7;10070:25;:34::i;:::-;10054:50;;10115:48;10136:5;10151:1;10155:7;10115:20;:48::i;:::-;10201:29;10218:1;10222:7;10201:8;:29::i;:::-;-1:-1:-1;;;;;10241:16:4;;;;;;:9;:16;;;;;:21;;10261:1;;10241:16;:21;;10261:1;;10241:21;:::i;:::-;;;;-1:-1:-1;;10279:16:4;;;;:7;:16;;;;;;10272:23;;-1:-1:-1;;;;;;10272:23:4;;;10311:36;10287:7;;10279:16;-1:-1:-1;;;;;10311:36:4;;;;;10279:16;;10311:36;1924:21:0::1;1757:205:::0;:::o;2880:673:21:-;3054:1;3017:25;;;:16;:25;;;;;;-1:-1:-1;;;;;3017:25:21;:39;3013:295;;3107:25;;;;:16;:25;;;;;;3075:109;;-1:-1:-1;;;;;3107:25:21;-1:-1:-1;;;3075:31:21;:109::i;:::-;3071:227;;;3235:25;;;;:16;:25;;;;;;;;3203:81;;-1:-1:-1;;;3203:81:21;;-1:-1:-1;;;;;6422:55:29;;;3203:81:21;;;6404:74:29;6494:18;;;6487:34;;;3235:25:21;;;;3203:65;;6377:18:29;;3203:81:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3071:227;3362:19;;;;:10;:19;;;;;3356:33;;;;;:::i;:::-;:38;;-1:-1:-1;3352:95:21;;3417:19;;;;:10;:19;;;;;3410:26;;;:::i;:::-;3517:25;;;;:16;:25;;;;;3510:32;;-1:-1:-1;;;;;;3510:32:21;;;-1:-1:-1;2880:673:21:o;1605:149:4:-;4910:13:3;;;;;;;4902:69;;;;-1:-1:-1;;;4902:69:3;;34091:2:29;4902:69:3;;;34073:21:29;34130:2;34110:18;;;34103:30;34169:34;34149:18;;;34142:62;-1:-1:-1;;;34220:18:29;;;34213:41;34271:19;;4902:69:3;33889:407:29;4902:69:3;1708:39:4::1;1732:5;1739:7;1708:23;:39::i;1003:95:2:-:0;4910:13:3;;;;;;;4902:69;;;;-1:-1:-1;;;4902:69:3;;34091:2:29;4902:69:3;;;34073:21:29;34130:2;34110:18;;;34103:30;34169:34;34149:18;;;34142:62;-1:-1:-1;;;34220:18:29;;;34213:41;34271:19;;4902:69:3;33889:407:29;4902:69:3;1065:26:2::1;:24;:26::i;1465:158:21:-:0;1536:20;:32;;-1:-1:-1;;;;;;1536:32:21;-1:-1:-1;;;;;1536:32:21;;;;;;;;1583:33;;2136:74:29;;;1583:33:21;;2124:2:29;2109:18;1583:33:21;;;;;;;1465:158;:::o;6857:195:20:-;6953:25;;;;:16;:25;;;;;;-1:-1:-1;;;;;6953:25:20;6982:10;6953:39;6945:65;;;;-1:-1:-1;;;6945:65:20;;25512:2:29;6945:65:20;;;25494:21:29;25551:2;25531:18;;;25524:30;-1:-1:-1;;;25570:18:29;;;25563:43;25623:18;;6945:65:20;25310:337:29;6654:127:20;6754:10;6734:31;;;;:19;:31;;;;;:40;6768:6;;6734:31;:40;:::i;8028:150:18:-;8098:4;8121:50;8126:3;-1:-1:-1;;;;;8146:23:18;;8121:4;:50::i;2673:187:2:-;2765:6;;;-1:-1:-1;;;;;2781:17:2;;;-1:-1:-1;;;;;;2781:17:2;;;;;;;2813:40;;2765:6;;;2781:17;2765:6;;2813:40;;2746:16;;2813:40;2736:124;2673:187;:::o;6058:336:19:-;6133:15;6162:11;;6160:13;;;;;:::i;:::-;;;;-1:-1:-1;;6193:11:19;;6215:22;6225:2;6193:11;6215:9;:22::i;7324:118:20:-;7395:31;;;:19;:31;;;:40;7429:6;;7395:31;:40;:::i;11782:307:4:-;11932:8;-1:-1:-1;;;;;11923:17:4;:5;-1:-1:-1;;;;;11923:17:4;;11915:55;;;;-1:-1:-1;;;11915:55:4;;34503:2:29;11915:55:4;;;34485:21:29;34542:2;34522:18;;;34515:30;34581:27;34561:18;;;34554:55;34626:18;;11915:55:4;34301:349:29;11915:55:4;-1:-1:-1;;;;;11980:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11980:46:4;;;;;;;;;;12041:41;;586::29;;;12041::4;;559:18:29;12041:41:4;;;;;;;11782:307;;;:::o;1019:353:21:-;1122:100;1154:9;1165:56;1122:31;:100::i;:::-;1118:248;;;-1:-1:-1;;;;;1238:37:21;;;;;;:26;:37;;;;;;;;;:47;;-1:-1:-1;;1238:47:21;;;;;;;;;;1304:51;;586:41:29;;;1304:51:21;;559:18:29;1304:51:21;;;;;;;1019:353;;:::o;6898:305:4:-;7048:28;7058:4;7064:2;7068:7;7048:9;:28::i;:::-;7094:47;7117:4;7123:2;7127:7;7136:4;7094:22;:47::i;:::-;7086:110;;;;-1:-1:-1;;;7086:110:4;;34857:2:29;7086:110:4;;;34839:21:29;34896:2;34876:18;;;34869:30;34935:34;34915:18;;;34908:62;-1:-1:-1;;;34986:18:29;;;34979:48;35044:19;;7086:110:4;34655:414:29;10722:161:20;10792:34;10854:22;10868:7;10854:13;:22::i;:::-;-1:-1:-1;10838:38:20;10722:161;-1:-1:-1;;10722:161:20:o;9256:1393::-;9319:34;9355:20;9425:32;9460:13;:22;9474:7;9460:22;;;;;;;;;;;9425:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9425:57:20;;;;-1:-1:-1;;;9425:57:20;;;;;;;;;;;;;;;;;;;;;;;;;9496:9;:16;9516:1;9496:21;9492:643;;9581:17;9601:25;;;:16;:25;;;;;;-1:-1:-1;;;;;9601:25:20;9644:23;;9640:485;;9691:88;9723:9;-1:-1:-1;;;9691:31:20;:88::i;:::-;9687:366;;;9822:74;;-1:-1:-1;;;9822:74:20;;9881:4;9822:74;;;6404::29;6494:18;;;6487:34;;;-1:-1:-1;;;;;9822:50:20;;;;;6377:18:29;;9822:74:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9822:74:20;;;;;;;;;;;;:::i;:::-;9989:16;;9803:93;;-1:-1:-1;9803:93:20;-1:-1:-1;9989:20:20;9985:49;;10011:23;;9256:1393;;;:::o;9985:49::-;-1:-1:-1;;;;;10082:28:20;;;;;;:17;:28;;;;;;;;10070:40;;;;;;;;;;;;;;;;;;;10082:28;;10070:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10070:40:20;;;;-1:-1:-1;;;10070:40:20;;;;;;;;;;;;;;;;;;;;;;;;;9640:485;9519:616;9492:643;10148:9;:16;10168:1;10148:21;10144:132;;10236:29;;;;:17;:29;;;;;10224:41;;10236:29;10224:41;;;;;;;;;;;;;;;;10236:29;;10224:41;;10236:29;10224:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10224:41:20;;;;-1:-1:-1;;;10224:41:20;;;;;;;;;;;;;;;;;;;;;;;;;10144:132;10298:16;;:20;10294:349;;10368:9;:16;10346:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10346:39:20;;10334:51;;10419:9;:16;10405:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10405:31:20;;10399:37;;10455:6;10450:183;10467:9;:16;10463:1;:20;10450:183;;;10519:9;10529:1;10519:12;;;;;;;;:::i;:::-;;;;;;;:21;;;10504:9;10514:1;10504:12;;;;;;;;:::i;:::-;;;;;;:36;-1:-1:-1;;;;;10504:36:20;;;-1:-1:-1;;;;;10504:36:20;;;;;10567:9;10577:1;10567:12;;;;;;;;:::i;:::-;;;;;;;:16;;;10558:25;;:3;10562:1;10558:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;10613:3;;10450:183;;;;10294:349;9377:1272;9256:1393;;;:::o;7805:1016::-;7864:13;7907:1;7897:7;:11;:37;;;;;7923:11;;7912:7;:22;;7897:37;7889:63;;;;-1:-1:-1;;;7889:63:20;;25512:2:29;7889:63:20;;;25494:21:29;25551:2;25531:18;;;25524:30;-1:-1:-1;;;25570:18:29;;;25563:43;25623:18;;7889:63:20;25310:337:29;7889:63:20;7963:17;7983:25;;;:16;:25;;;;;;-1:-1:-1;;;;;7983:25:20;8027:42;:22;7983:25;8027:31;:42::i;:::-;8026:43;8018:77;;;;-1:-1:-1;;;8018:77:20;;29413:2:29;8018:77:20;;;29395:21:29;29452:2;29432:18;;;29425:30;29491:23;29471:18;;;29464:51;29532:18;;8018:77:20;29211:345:29;8018:77:20;8116:19;;;;:10;:19;;;;;8110:33;;;;;:::i;:::-;:38;;-1:-1:-1;8106:279:20;;-1:-1:-1;;;;;8174:30:20;;;;;;:19;:30;;;;;8168:44;;;;;:::i;:::-;:49;;-1:-1:-1;8164:171:20;;-1:-1:-1;;;;;8268:30:20;;;;;;:19;:30;;;;;;;;8299:19;;;:10;:19;;;;;;8251:68;;;;8268:30;8251:68;;:::i;:::-;;;;;;;;;;;;;8237:83;;;7805:1016;;;:::o;8164:171::-;8355:19;;;;:10;:19;;;;;8348:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7805:1016;;;:::o;8106:279::-;8399:87;8431:9;-1:-1:-1;;;8399:31:20;:87::i;:::-;8395:194;;;8509:69;;-1:-1:-1;;;8509:69:20;;8563:4;8509:69;;;6404:74:29;6494:18;;;6487:34;;;-1:-1:-1;;;;;8509:45:20;;;;;6377:18:29;;8509:69:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8509:69:20;;;;;;;;;;;;:::i;8395:194::-;-1:-1:-1;;;;;8604:37:20;;;;;;:26;:37;;;;;;;;8599:216;;-1:-1:-1;;;;;8688:28:20;;;;;;:17;:28;;;;;8718:18;:7;:16;:18::i;:::-;8671:66;;;;;;;;;:::i;8599:216::-;-1:-1:-1;;;;;8776:28:20;;;;;;:17;:28;;;;;8769:35;;;;;:::i;8599:216::-;7879:942;7805:1016;;;:::o;5598:163::-;5671:44;;5704:10;;-1:-1:-1;;;;;5671:44:20;;;;;;;;5725:29;:11;5744:9;5725:18;:29::i;1695:539:21:-;1791:31;:11;1812:9;1791:20;:31::i;:::-;1783:74;;;;-1:-1:-1;;;1783:74:21;;39219:2:29;1783:74:21;;;39201:21:29;39258:2;39238:18;;;39231:30;39297:32;39277:18;;;39270:60;39347:18;;1783:74:21;39017:354:29;1783:74:21;-1:-1:-1;;;;;1875:25:21;;;;:122;;;1904:93;1936:11;-1:-1:-1;;;1904:31:21;:93::i;:::-;1867:150;;;;-1:-1:-1;;;1867:150:21;;39578:2:29;1867:150:21;;;39560:21:29;39617:2;39597:18;;;39590:30;39656:17;39636:18;;;39629:45;39691:18;;1867:150:21;39376:339:29;1867:150:21;-1:-1:-1;;;;;2031:32:21;;;;;;;:21;:32;;;;;;;;:47;;;;2027:201;;-1:-1:-1;;;;;2094:32:21;;;;;;;:21;:32;;;;;;:46;;-1:-1:-1;;;;;;2094:46:21;;;;;;;;;2159:58;2206:10;;2094:46;:32;2159:58;;;1695:539;;:::o;3239:483:20:-;3341:4;-1:-1:-1;;;;;;3364:45:20;;3379:30;3364:45;;:80;;-1:-1:-1;;;;;;;3413:31:20;;3428:16;3413:31;3364:80;:120;;;;3448:36;3472:11;3448:23;:36::i;:::-;3364:186;;;-1:-1:-1;;;;;;;3500:50:20;;3515:35;3500:50;3364:186;:236;;;-1:-1:-1;;;;;;;3554:46:20;;3569:31;3554:46;3364:236;:301;;;-1:-1:-1;;;;;;;3616:49:20;;3631:34;3616:49;3364:301;:351;;;-1:-1:-1;;;;;;;3669:46:20;;3684:31;3669:46;3357:358;3239:483;-1:-1:-1;;3239:483:20:o;12615:430::-;12741:38;;;12733:64;;;;-1:-1:-1;;;12733:64:20;;23646:2:29;12733:64:20;;;23628:21:29;23685:2;23665:18;;;23658:30;-1:-1:-1;;;23704:18:29;;;23697:43;23757:18;;12733:64:20;23444:337:29;12733:64:20;12807:24;12846:6;12841:128;12854:22;;;12841:128;;;12913:11;;12925:1;12913:14;;;;;;;:::i;:::-;;;;;;;12893:34;;;;;:::i;:::-;;-1:-1:-1;12953:3:20;;12841:128;;;;13005:5;12986:16;:24;12978:60;;;;-1:-1:-1;;;12978:60:20;;39922:2:29;12978:60:20;;;39904:21:29;39961:2;39941:18;;;39934:30;40000:25;39980:18;;;39973:53;40043:18;;12978:60:20;39720:347:29;13107:468:20;13258:6;13253:316;13266:22;;;13253:316;;;13305:9;13337:176;;;;;;;;13408:9;;13418:1;13408:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;13337:176:20;;;;;13458:11;;13470:1;13458:14;;;;;;;:::i;:::-;13337:176;13458:14;;;;;;;;;13337:176;;;;;-1:-1:-1;13305:222:20;;;;;;;;-1:-1:-1;13305:222:20;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13305:222:20;-1:-1:-1;;13305:222:20;;;-1:-1:-1;;;;;13305:222:20;;;;;;;;;;13553:3;13253:316;;;;13107:468;;;;;:::o;1047:155:19:-;1156:35;1173:4;1179:2;1183:7;1156:16;:35::i;2294:264:21:-;2399:10;2422:1;2377:33;;;:21;:33;;;;;;-1:-1:-1;;;;;2377:33:21;:47;2373:179;;2492:10;2470:33;;;;:21;:33;;;;;;;;2440:101;;-1:-1:-1;;;2440:101:21;;;;;40595:34:29;;;;-1:-1:-1;;;;;40665:15:29;;;40645:18;;;40638:43;40697:18;;;40690:34;;;2470:33:21;;2440:76;;40507:18:29;;2440:101:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8391:108:4;8466:26;8476:2;8480:7;8466:26;;;;;;;;;;;;:9;:26::i;2685:1388:18:-;2751:4;2888:19;;;:12;;;:19;;;;;;2922:15;;2918:1149;;3291:21;3315:14;3328:1;3315:10;:14;:::i;:::-;3363:18;;3291:38;;-1:-1:-1;3343:17:18;;3363:22;;3384:1;;3363:22;:::i;:::-;3343:42;;3417:13;3404:9;:26;3400:398;;3450:17;3470:3;:11;;3482:9;3470:22;;;;;;;;:::i;:::-;;;;;;;;;3450:42;;3621:9;3592:3;:11;;3604:13;3592:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3704:23;;;:12;;;:23;;;;;:36;;;3400:398;3876:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3968:3;:12;;:19;3981:5;3968:19;;;;;;;;;;;3961:26;;;4009:4;4002:11;;;;;;;2918:1149;4051:5;4044:12;;;;;4811:118;4878:7;4904:3;:11;;4916:5;4904:18;;;;;;;;:::i;:::-;;;;;;;;;4897:25;;4811:118;;;;:::o;1333:274:16:-;1420:4;1527:23;1542:7;1527:14;:23::i;:::-;:73;;;;;1554:46;1579:7;1588:11;1554:24;:46::i;1760:160:4:-;4910:13:3;;;;;;;4902:69;;;;-1:-1:-1;;;4902:69:3;;34091:2:29;4902:69:3;;;34073:21:29;34130:2;34110:18;;;34103:30;34169:34;34149:18;;;34142:62;-1:-1:-1;;;34220:18:29;;;34213:41;34271:19;;4902:69:3;33889:407:29;4902:69:3;1873:5:4::1;:13;1881:5:::0;1873;:13:::1;:::i;:::-;-1:-1:-1::0;1896:7:4::1;:17;1906:7:::0;1896;:17:::1;:::i;1104:111:2:-:0;4910:13:3;;;;;;;4902:69;;;;-1:-1:-1;;;4902:69:3;;34091:2:29;4902:69:3;;;34073:21:29;34130:2;34110:18;;;34103:30;34169:34;34149:18;;;34142:62;-1:-1:-1;;;34220:18:29;;;34213:41;34271:19;;4902:69:3;33889:407:29;4902:69:3;1176:32:2::1;929:10:9::0;1176:18:2::1;:32::i;2113:404:18:-:0;2176:4;4250:19;;;:12;;;:19;;;;;;2192:319;;-1:-1:-1;2234:23:18;;;;;;;;:11;:23;;;;;;;;;;;;;2414:18;;2392:19;;;:12;;;:19;;;;;;:40;;;;2446:11;;2192:319;-1:-1:-1;2495:5:18;2488:12;;12858:853:4;13007:4;-1:-1:-1;;;;;13027:13:4;;1476:19:8;:23;13023:682:4;;13062:82;;-1:-1:-1;;;13062:82:4;;-1:-1:-1;;;;;13062:47:4;;;;;:82;;929:10:9;;13124:4:4;;13130:7;;13139:4;;13062:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13062:82:4;;;;;;;;-1:-1:-1;;13062:82:4;;;;;;;;;;;;:::i;:::-;;;13058:595;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13322:6;:13;13339:1;13322:18;13318:321;;13364:60;;-1:-1:-1;;;13364:60:4;;34857:2:29;13364:60:4;;;34839:21:29;34896:2;34876:18;;;34869:30;34935:34;34915:18;;;34908:62;-1:-1:-1;;;34986:18:29;;;34979:48;35044:19;;13364:60:4;34655:414:29;13318:321:4;13591:6;13585:13;13576:6;13572:2;13568:15;13561:38;13058:595;-1:-1:-1;;;;;;13194:62:4;-1:-1:-1;;;13194:62:4;;-1:-1:-1;13187:69:4;;13023:682;-1:-1:-1;13690:4:4;12858:853;;;;;;:::o;392:703:14:-;448:13;665:5;674:1;665:10;661:51;;-1:-1:-1;;691:10:14;;;;;;;;;;;;;;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:14;;-1:-1:-1;837:2:14;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:14;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:14;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1036:11:14;1045:2;1036:11;;:::i;:::-;;;908:150;;3601:540:21;3692:53;3719:25;;;:16;:25;;;;;;;;;-1:-1:-1;;;;;3719:25:21;3692:53;;:26;:53;;;;;;;;3688:447;;;3807:25;;;;:16;:25;;;;;;;;3768:112;;-1:-1:-1;;;3768:112:21;;3850:10;3768:112;;;42104:34:29;-1:-1:-1;;;;;42174:15:29;;;42154:18;;;42147:43;42226:15;;;42206:18;;;42199:43;42258:18;;;42251:34;;;3807:25:21;;;;3768:81;;42015:19:29;;3768:112:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3760:151;;;;-1:-1:-1;;;3760:151:21;;42748:2:29;3760:151:21;;;42730:21:29;42787:2;42767:18;;;42760:30;42826:28;42806:18;;;42799:56;42872:18;;3760:151:21;42546:350:29;3688:447:21;3931:20;;-1:-1:-1;;;;;3931:20:21;:34;3927:208;;4026:20;;3987:107;;-1:-1:-1;;;3987:107:21;;4064:10;3987:107;;;42104:34:29;-1:-1:-1;;;;;42174:15:29;;;42154:18;;;42147:43;42226:15;;;42206:18;;;42199:43;42258:18;;;42251:34;;;4026:20:21;;;;3987:76;;42015:19:29;;3987:107:21;41812:479:29;8720:309:4;8844:18;8850:2;8854:7;8844:5;:18::i;:::-;8893:53;8924:1;8928:2;8932:7;8941:4;8893:22;:53::i;:::-;8872:150;;;;-1:-1:-1;;;8872:150:4;;34857:2:29;8872:150:4;;;34839:21:29;34896:2;34876:18;;;34869:30;34935:34;34915:18;;;34908:62;-1:-1:-1;;;34986:18:29;;;34979:48;35044:19;;8872:150:4;34655:414:29;704:411:16;768:4;975:60;1000:7;-1:-1:-1;;;975:24:16;:60::i;:::-;:133;;;;-1:-1:-1;1052:56:16;1077:7;-1:-1:-1;;;;;;1052:24:16;:56::i;:::-;1051:57;956:152;704:411;-1:-1:-1;;704:411:16:o;4223:638::-;4385:71;;;-1:-1:-1;;;;;;43063:79:29;;4385:71:16;;;;43045:98:29;;;;4385:71:16;;;;;;;;;;43018:18:29;;;;4385:71:16;;;;;;;;;;;-1:-1:-1;;;4385:71:16;;;4664:20;;4316:4;;4385:71;4316:4;;;;;;4385:71;4316:4;;4664:20;4629:7;4622:5;4611:86;4600:97;;4724:16;4710:30;;4774:4;4768:11;4753:26;;4806:7;:29;;;;;4831:4;4817:10;:18;;4806:29;:48;;;;;4853:1;4839:11;:15;4806:48;4799:55;4223:638;-1:-1:-1;;;;;;;4223:638:16:o;9351:427:4:-;-1:-1:-1;;;;;9430:16:4;;9422:61;;;;-1:-1:-1;;;9422:61:4;;43356:2:29;9422:61:4;;;43338:21:29;;;43375:18;;;43368:30;43434:34;43414:18;;;43407:62;43486:18;;9422:61:4;43154:356:29;9422:61:4;7571:4;7594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7594:16:4;:30;9493:58;;;;-1:-1:-1;;;9493:58:4;;43717:2:29;9493:58:4;;;43699:21:29;43756:2;43736:18;;;43729:30;43795;43775:18;;;43768:58;43843:18;;9493:58:4;43515:352:29;9493:58:4;9562:45;9591:1;9595:2;9599:7;9562:20;:45::i;:::-;-1:-1:-1;;;;;9618:13:4;;;;;;:9;:13;;;;;:18;;9635:1;;9618:13;:18;;9635:1;;9618:18;:::i;:::-;;;;-1:-1:-1;;9646:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9646:21:4;-1:-1:-1;;;;;9646:21:4;;;;;;;;9683:33;;9646:16;;;9683:33;;9646:16;;9683:33;1924:21:0::1;1757:205:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:29;-1:-1:-1;;;;;;92:5:29;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:154::-;-1:-1:-1;;;;;717:5:29;713:54;706:5;703:65;693:93;;782:1;779;772:12;797:247;856:6;909:2;897:9;888:7;884:23;880:32;877:52;;;925:1;922;915:12;877:52;964:9;951:23;983:31;1008:5;983:31;:::i;1049:250::-;1134:1;1144:113;1158:6;1155:1;1152:13;1144:113;;;1234:11;;;1228:18;1215:11;;;1208:39;1180:2;1173:10;1144:113;;;-1:-1:-1;;1291:1:29;1273:16;;1266:27;1049:250::o;1304:271::-;1346:3;1384:5;1378:12;1411:6;1406:3;1399:19;1427:76;1496:6;1489:4;1484:3;1480:14;1473:4;1466:5;1462:16;1427:76;:::i;:::-;1557:2;1536:15;-1:-1:-1;;1532:29:29;1523:39;;;;1564:4;1519:50;;1304:271;-1:-1:-1;;1304:271:29:o;1580:220::-;1729:2;1718:9;1711:21;1692:4;1749:45;1790:2;1779:9;1775:18;1767:6;1749:45;:::i;1805:180::-;1864:6;1917:2;1905:9;1896:7;1892:23;1888:32;1885:52;;;1933:1;1930;1923:12;1885:52;-1:-1:-1;1956:23:29;;1805:180;-1:-1:-1;1805:180:29:o;2221:315::-;2289:6;2297;2350:2;2338:9;2329:7;2325:23;2321:32;2318:52;;;2366:1;2363;2356:12;2318:52;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;2526:2;2511:18;;;;2498:32;;-1:-1:-1;;;2221:315:29:o;2541:435::-;2594:3;2632:5;2626:12;2659:6;2654:3;2647:19;2685:4;2714:2;2709:3;2705:12;2698:19;;2751:2;2744:5;2740:14;2772:1;2782:169;2796:6;2793:1;2790:13;2782:169;;;2857:13;;2845:26;;2891:12;;;;2926:15;;;;2818:1;2811:9;2782:169;;;-1:-1:-1;2967:3:29;;2541:435;-1:-1:-1;;;;;2541:435:29:o;2981:261::-;3160:2;3149:9;3142:21;3123:4;3180:56;3232:2;3221:9;3217:18;3209:6;3180:56;:::i;3247:348::-;3299:8;3309:6;3363:3;3356:4;3348:6;3344:17;3340:27;3330:55;;3381:1;3378;3371:12;3330:55;-1:-1:-1;3404:20:29;;3447:18;3436:30;;3433:50;;;3479:1;3476;3469:12;3433:50;3516:4;3508:6;3504:17;3492:29;;3568:3;3561:4;3552:6;3544;3540:19;3536:30;3533:39;3530:59;;;3585:1;3582;3575:12;3600:479;3680:6;3688;3696;3749:2;3737:9;3728:7;3724:23;3720:32;3717:52;;;3765:1;3762;3755:12;3717:52;3801:9;3788:23;3778:33;;3862:2;3851:9;3847:18;3834:32;3889:18;3881:6;3878:30;3875:50;;;3921:1;3918;3911:12;3875:50;3960:59;4011:7;4002:6;3991:9;3987:22;3960:59;:::i;:::-;3600:479;;4038:8;;-1:-1:-1;3934:85:29;;-1:-1:-1;;;;3600:479:29:o;4084:375::-;4155:8;4165:6;4219:3;4212:4;4204:6;4200:17;4196:27;4186:55;;4237:1;4234;4227:12;4186:55;-1:-1:-1;4260:20:29;;4303:18;4292:30;;4289:50;;;4335:1;4332;4325:12;4289:50;4372:4;4364:6;4360:17;4348:29;;4432:3;4425:4;4415:6;4412:1;4408:14;4400:6;4396:27;4392:38;4389:47;4386:67;;;4449:1;4446;4439:12;4464:865;4603:6;4611;4619;4627;4635;4688:2;4676:9;4667:7;4663:23;4659:32;4656:52;;;4704:1;4701;4694:12;4656:52;4740:9;4727:23;4717:33;;4801:2;4790:9;4786:18;4773:32;4824:18;4865:2;4857:6;4854:14;4851:34;;;4881:1;4878;4871:12;4851:34;4920:78;4990:7;4981:6;4970:9;4966:22;4920:78;:::i;:::-;5017:8;;-1:-1:-1;4894:104:29;-1:-1:-1;5105:2:29;5090:18;;5077:32;;-1:-1:-1;5121:16:29;;;5118:36;;;5150:1;5147;5140:12;5118:36;;5189:80;5261:7;5250:8;5239:9;5235:24;5189:80;:::i;:::-;4464:865;;;;-1:-1:-1;4464:865:29;;-1:-1:-1;5288:8:29;;5163:106;4464:865;-1:-1:-1;;;4464:865:29:o;5334:456::-;5411:6;5419;5427;5480:2;5468:9;5459:7;5455:23;5451:32;5448:52;;;5496:1;5493;5486:12;5448:52;5535:9;5522:23;5554:31;5579:5;5554:31;:::i;:::-;5604:5;-1:-1:-1;5661:2:29;5646:18;;5633:32;5674:33;5633:32;5674:33;:::i;:::-;5334:456;;5726:7;;-1:-1:-1;;;5780:2:29;5765:18;;;;5752:32;;5334:456::o;5977:248::-;6045:6;6053;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;-1:-1:-1;;6145:23:29;;;6215:2;6200:18;;;6187:32;;-1:-1:-1;5977:248:29:o;6532:411::-;6603:6;6611;6664:2;6652:9;6643:7;6639:23;6635:32;6632:52;;;6680:1;6677;6670:12;6632:52;6720:9;6707:23;6753:18;6745:6;6742:30;6739:50;;;6785:1;6782;6775:12;6739:50;6824:59;6875:7;6866:6;6855:9;6851:22;6824:59;:::i;:::-;6902:8;;6798:85;;-1:-1:-1;6532:411:29;-1:-1:-1;;;;6532:411:29:o;6948:546::-;7028:6;7036;7044;7097:2;7085:9;7076:7;7072:23;7068:32;7065:52;;;7113:1;7110;7103:12;7065:52;7152:9;7139:23;7171:31;7196:5;7171:31;:::i;:::-;7221:5;-1:-1:-1;7277:2:29;7262:18;;7249:32;7304:18;7293:30;;7290:50;;;7336:1;7333;7326:12;7499:681;7670:2;7722:21;;;7792:13;;7695:18;;;7814:22;;;7641:4;;7670:2;7893:15;;;;7867:2;7852:18;;;7641:4;7936:218;7950:6;7947:1;7944:13;7936:218;;;8015:13;;-1:-1:-1;;;;;8011:62:29;7999:75;;8129:15;;;;8094:12;;;;7972:1;7965:9;7936:218;;;-1:-1:-1;8171:3:29;;7499:681;-1:-1:-1;;;;;;7499:681:29:o;8185:797::-;8315:6;8323;8331;8339;8392:2;8380:9;8371:7;8367:23;8363:32;8360:52;;;8408:1;8405;8398:12;8360:52;8448:9;8435:23;8477:18;8518:2;8510:6;8507:14;8504:34;;;8534:1;8531;8524:12;8504:34;8573:78;8643:7;8634:6;8623:9;8619:22;8573:78;:::i;:::-;8670:8;;-1:-1:-1;8547:104:29;-1:-1:-1;8758:2:29;8743:18;;8730:32;;-1:-1:-1;8774:16:29;;;8771:36;;;8803:1;8800;8793:12;8771:36;;8842:80;8914:7;8903:8;8892:9;8888:24;8842:80;:::i;:::-;8185:797;;;;-1:-1:-1;8941:8:29;-1:-1:-1;;;;8185:797:29:o;8987:592::-;9094:6;9102;9110;9163:2;9151:9;9142:7;9138:23;9134:32;9131:52;;;9179:1;9176;9169:12;9131:52;9218:9;9205:23;9237:31;9262:5;9237:31;:::i;:::-;9287:5;-1:-1:-1;9343:2:29;9328:18;;9315:32;9370:18;9359:30;;9356:50;;;9402:1;9399;9392:12;9356:50;9441:78;9511:7;9502:6;9491:9;9487:22;9441:78;:::i;9584:118::-;9670:5;9663:13;9656:21;9649:5;9646:32;9636:60;;9692:1;9689;9682:12;9707:681;9793:6;9801;9809;9817;9870:2;9858:9;9849:7;9845:23;9841:32;9838:52;;;9886:1;9883;9876:12;9838:52;9925:9;9912:23;9944:31;9969:5;9944:31;:::i;:::-;9994:5;-1:-1:-1;10050:2:29;10035:18;;10022:32;10077:18;10066:30;;10063:50;;;10109:1;10106;10099:12;10063:50;10148:59;10199:7;10190:6;10179:9;10175:22;10148:59;:::i;:::-;10226:8;;-1:-1:-1;10122:85:29;-1:-1:-1;;10313:2:29;10298:18;;10285:32;10326:30;10285:32;10326:30;:::i;:::-;9707:681;;;;-1:-1:-1;9707:681:29;;-1:-1:-1;;9707:681:29:o;10393:184::-;-1:-1:-1;;;10442:1:29;10435:88;10542:4;10539:1;10532:15;10566:4;10563:1;10556:15;10582:275;10653:2;10647:9;10718:2;10699:13;;-1:-1:-1;;10695:27:29;10683:40;;10753:18;10738:34;;10774:22;;;10735:62;10732:88;;;10800:18;;:::i;:::-;10836:2;10829:22;10582:275;;-1:-1:-1;10582:275:29:o;10862:187::-;10911:4;10944:18;10936:6;10933:30;10930:56;;;10966:18;;:::i;:::-;-1:-1:-1;11032:2:29;11011:15;-1:-1:-1;;11007:29:29;11038:4;11003:40;;10862:187::o;11054:338::-;11119:5;11148:53;11164:36;11193:6;11164:36;:::i;:::-;11148:53;:::i;:::-;11139:62;;11224:6;11217:5;11210:21;11264:3;11255:6;11250:3;11246:16;11243:25;11240:45;;;11281:1;11278;11271:12;11240:45;11330:6;11325:3;11318:4;11311:5;11307:16;11294:43;11384:1;11377:4;11368:6;11361:5;11357:18;11353:29;11346:40;11054:338;;;;;:::o;11397:222::-;11440:5;11493:3;11486:4;11478:6;11474:17;11470:27;11460:55;;11511:1;11508;11501:12;11460:55;11533:80;11609:3;11600:6;11587:20;11580:4;11572:6;11568:17;11533:80;:::i;11624:543::-;11712:6;11720;11773:2;11761:9;11752:7;11748:23;11744:32;11741:52;;;11789:1;11786;11779:12;11741:52;11829:9;11816:23;11858:18;11899:2;11891:6;11888:14;11885:34;;;11915:1;11912;11905:12;11885:34;11938:50;11980:7;11971:6;11960:9;11956:22;11938:50;:::i;:::-;11928:60;;12041:2;12030:9;12026:18;12013:32;11997:48;;12070:2;12060:8;12057:16;12054:36;;;12086:1;12083;12076:12;12054:36;;12109:52;12153:7;12142:8;12131:9;12127:24;12109:52;:::i;:::-;12099:62;;;11624:543;;;;;:::o;12172:183::-;12232:4;12265:18;12257:6;12254:30;12251:56;;;12287:18;;:::i;:::-;-1:-1:-1;12332:1:29;12328:14;12344:4;12324:25;;12172:183::o;12360:1249::-;12492:6;12500;12508;12561:2;12549:9;12540:7;12536:23;12532:32;12529:52;;;12577:1;12574;12567:12;12529:52;12617:9;12604:23;12646:18;12687:2;12679:6;12676:14;12673:34;;;12703:1;12700;12693:12;12673:34;12741:6;12730:9;12726:22;12716:32;;12786:7;12779:4;12775:2;12771:13;12767:27;12757:55;;12808:1;12805;12798:12;12757:55;12844:2;12831:16;12866:4;12890:60;12906:43;12946:2;12906:43;:::i;12890:60::-;12984:15;;;13066:1;13062:10;;;;13054:19;;13050:28;;;13015:12;;;;13090:19;;;13087:39;;;13122:1;13119;13112:12;13087:39;13146:11;;;;13166:142;13182:6;13177:3;13174:15;13166:142;;;13248:17;;13236:30;;13199:12;;;;13286;;;;13166:142;;;13327:5;-1:-1:-1;;13370:18:29;;13357:32;;-1:-1:-1;;13401:16:29;;;13398:36;;;13430:1;13427;13420:12;13398:36;;13469:80;13541:7;13530:8;13519:9;13515:24;13469:80;:::i;13614:540::-;13691:6;13699;13707;13760:2;13748:9;13739:7;13735:23;13731:32;13728:52;;;13776:1;13773;13766:12;13728:52;13816:9;13803:23;13849:18;13841:6;13838:30;13835:50;;;13881:1;13878;13871:12;13835:50;13920:59;13971:7;13962:6;13951:9;13947:22;13920:59;:::i;:::-;13998:8;;-1:-1:-1;13894:85:29;-1:-1:-1;;14083:2:29;14068:18;;14055:32;14096:28;14055:32;14096:28;:::i;:::-;14143:5;14133:15;;;13614:540;;;;;:::o;14159:382::-;14224:6;14232;14285:2;14273:9;14264:7;14260:23;14256:32;14253:52;;;14301:1;14298;14291:12;14253:52;14340:9;14327:23;14359:31;14384:5;14359:31;:::i;:::-;14409:5;-1:-1:-1;14466:2:29;14451:18;;14438:32;14479:30;14438:32;14479:30;:::i;:::-;14528:7;14518:17;;;14159:382;;;;;:::o;14546:241::-;14602:6;14655:2;14643:9;14634:7;14630:23;14626:32;14623:52;;;14671:1;14668;14661:12;14623:52;14710:9;14697:23;14729:28;14751:5;14729:28;:::i;14792:415::-;14859:6;14867;14920:2;14908:9;14899:7;14895:23;14891:32;14888:52;;;14936:1;14933;14926:12;14888:52;14975:9;14962:23;14994:31;15019:5;14994:31;:::i;:::-;15044:5;-1:-1:-1;15101:2:29;15086:18;;15073:32;15149:6;15136:20;;15124:33;;15114:61;;15171:1;15168;15161:12;15212:932;15351:6;15359;15367;15375;15383;15436:2;15424:9;15415:7;15411:23;15407:32;15404:52;;;15452:1;15449;15442:12;15404:52;15491:9;15478:23;15510:31;15535:5;15510:31;:::i;:::-;15560:5;-1:-1:-1;15616:2:29;15601:18;;15588:32;15639:18;15669:14;;;15666:34;;;15696:1;15693;15686:12;16149:795;16244:6;16252;16260;16268;16321:3;16309:9;16300:7;16296:23;16292:33;16289:53;;;16338:1;16335;16328:12;16289:53;16377:9;16364:23;16396:31;16421:5;16396:31;:::i;:::-;16446:5;-1:-1:-1;16503:2:29;16488:18;;16475:32;16516:33;16475:32;16516:33;:::i;:::-;16568:7;-1:-1:-1;16622:2:29;16607:18;;16594:32;;-1:-1:-1;16677:2:29;16662:18;;16649:32;16704:18;16693:30;;16690:50;;;16736:1;16733;16726:12;16690:50;16759:22;;16812:4;16804:13;;16800:27;-1:-1:-1;16790:55:29;;16841:1;16838;16831:12;16790:55;16864:74;16930:7;16925:2;16912:16;16907:2;16903;16899:11;16864:74;:::i;:::-;16854:84;;;16149:795;;;;;;;:::o;16949:492::-;17010:3;17048:5;17042:12;17075:6;17070:3;17063:19;17101:4;17130:2;17125:3;17121:12;17114:19;;17167:2;17160:5;17156:14;17188:1;17198:218;17212:6;17209:1;17206:13;17198:218;;;17277:13;;-1:-1:-1;;;;;17273:62:29;17261:75;;17356:12;;;;17391:15;;;;17234:1;17227:9;17198:218;;17446:285;17641:2;17630:9;17623:21;17604:4;17661:64;17721:2;17710:9;17706:18;17698:6;17661:64;:::i;17736:489::-;18009:2;17998:9;17991:21;17972:4;18035:64;18095:2;18084:9;18080:18;18072:6;18035:64;:::i;:::-;18147:9;18139:6;18135:22;18130:2;18119:9;18115:18;18108:50;18175:44;18212:6;18204;18175:44;:::i;:::-;18167:52;17736:489;-1:-1:-1;;;;;17736:489:29:o;18230:388::-;18298:6;18306;18359:2;18347:9;18338:7;18334:23;18330:32;18327:52;;;18375:1;18372;18365:12;18327:52;18414:9;18401:23;18433:31;18458:5;18433:31;:::i;:::-;18483:5;-1:-1:-1;18540:2:29;18525:18;;18512:32;18553:33;18512:32;18553:33;:::i;19028:437::-;19107:1;19103:12;;;;19150;;;19171:61;;19225:4;19217:6;19213:17;19203:27;;19171:61;19278:2;19270:6;19267:14;19247:18;19244:38;19241:218;;-1:-1:-1;;;19312:1:29;19305:88;19416:4;19413:1;19406:15;19444:4;19441:1;19434:15;21424:184;-1:-1:-1;;;21473:1:29;21466:88;21573:4;21570:1;21563:15;21597:4;21594:1;21587:15;21613:184;-1:-1:-1;;;21662:1:29;21655:88;21762:4;21759:1;21752:15;21786:4;21783:1;21776:15;21802:135;21841:3;21862:17;;;21859:43;;21882:18;;:::i;:::-;-1:-1:-1;21929:1:29;21918:13;;21802:135::o;21942:522::-;22020:4;22026:6;22086:11;22073:25;22180:2;22176:7;22165:8;22149:14;22145:29;22141:43;22121:18;22117:68;22107:96;;22199:1;22196;22189:12;22107:96;22226:33;;22278:20;;;-1:-1:-1;22321:18:29;22310:30;;22307:50;;;22353:1;22350;22343:12;22307:50;22386:4;22374:17;;-1:-1:-1;22417:14:29;22413:27;;;22403:38;;22400:58;;;22454:1;22451;22444:12;25778:545;25880:2;25875:3;25872:11;25869:448;;;25916:1;25941:5;25937:2;25930:17;25986:4;25982:2;25972:19;26056:2;26044:10;26040:19;26037:1;26033:27;26027:4;26023:38;26092:4;26080:10;26077:20;26074:47;;;-1:-1:-1;26115:4:29;26074:47;26170:2;26165:3;26161:12;26158:1;26154:20;26148:4;26144:31;26134:41;;26225:82;26243:2;26236:5;26233:13;26225:82;;;26288:17;;;26269:1;26258:13;26225:82;;26499:1206;26623:18;26618:3;26615:27;26612:53;;;26645:18;;:::i;:::-;26674:94;26764:3;26724:38;26756:4;26750:11;26724:38;:::i;:::-;26718:4;26674:94;:::i;:::-;26794:1;26819:2;26814:3;26811:11;26836:1;26831:616;;;;27491:1;27508:3;27505:93;;;-1:-1:-1;27564:19:29;;;27551:33;27505:93;-1:-1:-1;;26456:1:29;26452:11;;;26448:24;26444:29;26434:40;26480:1;26476:11;;;26431:57;27611:78;;26804:895;;26831:616;25725:1;25718:14;;;25762:4;25749:18;;-1:-1:-1;;26867:17:29;;;26968:9;26990:229;27004:7;27001:1;26998:14;26990:229;;;27093:19;;;27080:33;27065:49;;27200:4;27185:20;;;;27153:1;27141:14;;;;27020:12;26990:229;;;26994:3;27247;27238:7;27235:16;27232:159;;;27371:1;27367:6;27361:3;27355;27352:1;27348:11;27344:21;27340:34;27336:39;27323:9;27318:3;27314:19;27301:33;27297:79;27289:6;27282:95;27232:159;;;27434:1;27428:3;27425:1;27421:11;27417:19;27411:4;27404:33;26804:895;;26499:1206;;;:::o;27710:1145::-;28014:2;28026:21;;;27999:18;;28082:22;;;27966:4;28161:6;28135:2;28120:18;;27966:4;28195:327;28209:6;28206:1;28203:13;28195:327;;;28284:6;28271:20;28304:31;28329:5;28304:31;:::i;:::-;-1:-1:-1;;;;;28360:54:29;28348:67;;28438:4;28497:15;;;;28462:12;;;;28231:1;28224:9;28195:327;;;28199:3;28569:9;28564:3;28560:19;28553:4;28542:9;28538:20;28531:49;28601:6;28596:3;28589:19;28631:66;28623:6;28620:78;28617:98;;;28711:1;28708;28701:12;28617:98;28745:6;28742:1;28738:14;28724:28;;28798:6;28790;28783:4;28778:3;28774:14;28761:44;28826:16;28844:4;28822:27;;27710:1145;-1:-1:-1;;;;;;27710:1145:29:o;30372:128::-;30439:9;;;30460:11;;;30457:37;;;30474:18;;:::i;30505:125::-;30570:9;;;30591:10;;;30588:36;;;30604:18;;:::i;30992:1352::-;31118:3;31112:10;31145:18;31137:6;31134:30;31131:56;;;31167:18;;:::i;:::-;31196:97;31286:6;31246:38;31278:4;31272:11;31246:38;:::i;:::-;31240:4;31196:97;:::i;:::-;31348:4;;31412:2;31401:14;;31429:1;31424:663;;;;32131:1;32148:6;32145:89;;;-1:-1:-1;32200:19:29;;;32194:26;32145:89;-1:-1:-1;;26456:1:29;26452:11;;;26448:24;26444:29;26434:40;26480:1;26476:11;;;26431:57;32247:81;;31394:944;;31424:663;25725:1;25718:14;;;25762:4;25749:18;;-1:-1:-1;;31460:20:29;;;31578:236;31592:7;31589:1;31586:14;31578:236;;;31681:19;;;31675:26;31660:42;;31773:27;;;;31741:1;31729:14;;;;31608:19;;31578:236;;;31582:3;31842:6;31833:7;31830:19;31827:201;;;31903:19;;;31897:26;-1:-1:-1;;31986:1:29;31982:14;;;31998:3;31978:24;31974:37;31970:42;31955:58;31940:74;;31827:201;-1:-1:-1;;;;;32074:1:29;32058:14;;;32054:22;32041:36;;-1:-1:-1;30992:1352:29:o;32706:168::-;32779:9;;;32810;;32827:15;;;32821:22;;32807:37;32797:71;;32848:18;;:::i;32879:184::-;-1:-1:-1;;;32928:1:29;32921:88;33028:4;33025:1;33018:15;33052:4;33049:1;33042:15;33068:120;33108:1;33134;33124:35;;33139:18;;:::i;:::-;-1:-1:-1;33173:9:29;;33068:120::o;35074:659::-;35139:5;35192:3;35185:4;35177:6;35173:17;35169:27;35159:55;;35210:1;35207;35200:12;35159:55;35239:6;35233:13;35265:4;35289:60;35305:43;35345:2;35305:43;:::i;35289:60::-;35383:15;;;35469:1;35465:10;;;;35453:23;;35449:32;;;35414:12;;;;35493:15;;;35490:35;;;35521:1;35518;35511:12;35490:35;35557:2;35549:6;35545:15;35569:135;35585:6;35580:3;35577:15;35569:135;;;35651:10;;35639:23;;35682:12;;;;35602;;35569:135;;;-1:-1:-1;35722:5:29;35074:659;-1:-1:-1;;;;;;35074:659:29:o;35738:1217::-;35875:6;35883;35936:2;35924:9;35915:7;35911:23;35907:32;35904:52;;;35952:1;35949;35942:12;35904:52;35985:9;35979:16;36014:18;36055:2;36047:6;36044:14;36041:34;;;36071:1;36068;36061:12;36041:34;36109:6;36098:9;36094:22;36084:32;;36154:7;36147:4;36143:2;36139:13;36135:27;36125:55;;36176:1;36173;36166:12;36125:55;36205:2;36199:9;36227:4;36251:60;36267:43;36307:2;36267:43;:::i;36251:60::-;36345:15;;;36427:1;36423:10;;;;36415:19;;36411:28;;;36376:12;;;;36451:19;;;36448:39;;;36483:1;36480;36473:12;36448:39;36507:11;;;;36527:210;36543:6;36538:3;36535:15;36527:210;;;36616:3;36610:10;36633:31;36658:5;36633:31;:::i;:::-;36677:18;;36560:12;;;;36715;;;;36527:210;;;36792:18;;;36786:25;36756:5;;-1:-1:-1;36786:25:29;;-1:-1:-1;;;36823:16:29;;;36820:36;;;36852:1;36849;36842:12;36820:36;;36875:74;36941:7;36930:8;36919:9;36915:24;36875:74;:::i;36960:722::-;37010:3;37051:5;37045:12;37080:36;37106:9;37080:36;:::i;:::-;37135:1;37152:18;;;37179:133;;;;37326:1;37321:355;;;;37145:531;;37179:133;-1:-1:-1;;37212:24:29;;37200:37;;37285:14;;37278:22;37266:35;;37257:45;;;-1:-1:-1;37179:133:29;;37321:355;37352:5;37349:1;37342:16;37381:4;37426:2;37423:1;37413:16;37451:1;37465:165;37479:6;37476:1;37473:13;37465:165;;;37557:14;;37544:11;;;37537:35;37600:16;;;;37494:10;;37465:165;;;37469:3;;;37659:6;37654:3;37650:16;37643:23;;37145:531;;;;;36960:722;;;;:::o;37687:277::-;37860:3;37885:73;37919:38;37953:3;37945:6;37919:38;:::i;:::-;37911:6;37885:73;:::i;37969:649::-;38049:6;38102:2;38090:9;38081:7;38077:23;38073:32;38070:52;;;38118:1;38115;38108:12;38070:52;38151:9;38145:16;38184:18;38176:6;38173:30;38170:50;;;38216:1;38213;38206:12;38170:50;38239:22;;38292:4;38284:13;;38280:27;-1:-1:-1;38270:55:29;;38321:1;38318;38311:12;38270:55;38350:2;38344:9;38375:49;38391:32;38420:2;38391:32;:::i;38375:49::-;38447:2;38440:5;38433:17;38487:7;38482:2;38477;38473;38469:11;38465:20;38462:33;38459:53;;;38508:1;38505;38498:12;38459:53;38521:67;38585:2;38580;38573:5;38569:14;38564:2;38560;38556:11;38521:67;:::i;38623:389::-;38799:3;38827:38;38861:3;38853:6;38827:38;:::i;:::-;38894:6;38888:13;38910:65;38968:6;38964:2;38957:4;38949:6;38945:17;38910:65;:::i;:::-;38991:15;;38623:389;-1:-1:-1;;;;38623:389:29:o;40735:184::-;-1:-1:-1;;;40784:1:29;40777:88;40884:4;40881:1;40874:15;40908:4;40905:1;40898:15;40924:512;41118:4;-1:-1:-1;;;;;41228:2:29;41220:6;41216:15;41205:9;41198:34;41280:2;41272:6;41268:15;41263:2;41252:9;41248:18;41241:43;;41320:6;41315:2;41304:9;41300:18;41293:34;41363:3;41358:2;41347:9;41343:18;41336:31;41384:46;41425:3;41414:9;41410:19;41402:6;41384:46;:::i;:::-;41376:54;40924:512;-1:-1:-1;;;;;;40924:512:29:o;41441:249::-;41510:6;41563:2;41551:9;41542:7;41538:23;41534:32;41531:52;;;41579:1;41576;41569:12;41531:52;41611:9;41605:16;41630:30;41654:5;41630:30;:::i;41695:112::-;41727:1;41753;41743:35;;41758:18;;:::i;:::-;-1:-1:-1;41792:9:29;;41695:112::o;42296:245::-;42363:6;42416:2;42404:9;42395:7;42391:23;42387:32;42384:52;;;42432:1;42429;42422:12;42384:52;42464:9;42458:16;42483:28;42505:5;42483:28;:::i
Swarm Source
ipfs://52e2526b2cc9239cc64511653469ea10b01933e26dce590f19303a6494b55704
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.