Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xd780698f3f377a92192ca7e242ed13b47490ac99
Contract Name:
ArtistCollection
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "../royalties/Royalties.sol"; import "../Signable.sol"; // Version: Artist-3.0 contract ArtistCollection is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Royalties, AccessControlEnumerable { // OpenSea metadata freeze event PermanentURI(string _value, uint256 indexed _id); using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; Counters.Counter private _editionCounter; string private _baseURIextended; uint256 private _MAX_singles = 100000000; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); /** * @dev allows the artist (and potentially other 3rd parties) permission to mint * on behalf of the artist */ bytes32 public constant MINTER_ROLE_ADMIN = keccak256("MINTER_ROLE_ADMIN"); /** * @dev required for third parties to provide signable minting */ bytes32 public constant SIGNABLE_MINTER_ROLE = keccak256("SIGNABLE_MINTER_ROLE"); constructor( string memory baseURI, string memory contractName, string memory tokenSymbol, address artist, address signableMinter ) ERC721(contractName, tokenSymbol) { _baseURIextended = baseURI; /** * @dev Minter admin is set as the artist meaning they have rights over the minter role * Singable minter is used to provide gassless minting and can be revoked by the default admin (i.e. artist) * The minter admin role can be updated by the default admin only */ _setupRole(DEFAULT_ADMIN_ROLE, artist); _setupRole(MINTER_ROLE, artist); _setRoleAdmin(MINTER_ROLE, MINTER_ROLE_ADMIN); _setupRole(MINTER_ROLE_ADMIN, artist); if (signableMinter != address(0)) { _setupRole(SIGNABLE_MINTER_ROLE, signableMinter); } } function _baseURI() internal view override returns (string memory) { return _baseURIextended; } /** * Required to allow the artist to administrate the contract on OpenSea. * Note if there are many addresses with the DEFAULT_ADMIN_ROLE, the one which is returned may be arbitrary. */ function owner() public view virtual returns (address) { return _getPrimaryAdmin(); } function _getPrimaryAdmin() internal view virtual returns (address) { if (getRoleMemberCount(DEFAULT_ADMIN_ROLE) == 0) { return address(0); } return getRoleMember(DEFAULT_ADMIN_ROLE, 0); } /** * @dev Throws if called by any account other than an approved minter. */ modifier onlyMinter() { require(hasRole(MINTER_ROLE, msg.sender), "Restricted to approved minters"); _; } /** * @dev Throws if called by any account other than an approved minter. */ modifier onlySignableMinter() { require(hasRole(SIGNABLE_MINTER_ROLE, msg.sender), "Restricted to approved signable minters"); _; } /* * @dev hard limit of _MAX_singles single tokens */ function mint( address to, string memory _tokenURI, address payable receiver, uint256 basisPoints ) public onlyMinter { require(basisPoints < 10001, "Total royalties exceeds 100%"); uint256 tokenId = getNextTokenId(); require( tokenId < _MAX_singles, "Maximum number of single tokens exceeded" ); _mintSingle(to, tokenId, _tokenURI, receiver, basisPoints); _tokenIdCounter.increment(); } function mintEditions( address to, string[] memory _tokenURIs, address payable receiver, uint256 basisPoints ) public onlyMinter { require(basisPoints < 10001, "Total royalties exceeds 100%"); require(_tokenURIs.length > 1, "Must be more than 1 token per edition"); uint256 tokenId = getNextEditionId(); _mintEditions(to, tokenId, _tokenURIs, receiver, basisPoints); _editionCounter.increment(); } /** * @dev Allows a third party to mint on artists behalf but only when the artist provides an off-chain * signature each time. * * Note signer needs to peek at expected next token ID using getNextTokenId() and include this in their * signature. This is required to avoid replay attacks. */ function mintSignable( address _to, string memory _tokenURI, address payable receiver, uint256 basisPoints, uint8 v, bytes32 r, bytes32 s ) public onlySignableMinter { require(basisPoints < 10001, "Total royalties exceeds 100%"); uint256 tokenId = getNextTokenId(); require( tokenId < _MAX_singles, "Maximum number of single tokens exceeded" ); address to = Signable.recoverPersonalAddress(tokenId, _tokenURI, v, r, s); require(to == _to, "Signature wrong"); require(hasRole(DEFAULT_ADMIN_ROLE, to), "Signature not generated by admin"); _mintSingle(to, tokenId, _tokenURI, receiver, basisPoints); _tokenIdCounter.increment(); } /** * As mintSignable except for editions * * Note signer needs to peek at expected next token ID using getNextEditionId() and include this in their * signature. This is required to avoid replay attacks. */ function mintEditionsSignable( address _to, string[] memory _tokenURIs, address payable receiver, uint256 basisPoints, uint8 v, bytes32 r, bytes32 s ) public onlySignableMinter { require(basisPoints < 10001, "Total royalties exceeds 100%"); require(_tokenURIs.length > 1, "Must be more than 1 token per edition"); uint256 tokenId = getNextEditionId(); address to = Signable.recoverPersonalAddressBulk( tokenId, _tokenURIs, v, r, s ); require(to == _to, "Signature wrong"); require(hasRole(DEFAULT_ADMIN_ROLE, to), "Signature not generated by admin"); _mintEditions(to, tokenId, _tokenURIs, receiver, basisPoints); _editionCounter.increment(); } function _mintEditions( address to, uint256 tokenId, string[] memory _tokenURIs, address payable receiver, uint256 basisPoints ) internal { for (uint256 i = 0; i < _tokenURIs.length; i++) { _mintSingle(to, tokenId + i, _tokenURIs[i], receiver, basisPoints); } } function _mintSingle( address to, uint256 tokenId, string memory _tokenURI, address payable receiver, uint256 basisPoints ) internal { _safeMint(to, tokenId); _setTokenURI(tokenId, _tokenURI); if (basisPoints > 0) { _setRoyalties(tokenId, receiver, basisPoints); } emit PermanentURI(tokenURI(tokenId), tokenId); } function getNextTokenId() public view returns (uint256) { return _tokenIdCounter.current() + 1; } function getNextEditionId() public view returns (uint256) { return ((_editionCounter.current() + 1) * _MAX_singles) + 1; } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function _existsRoyalties(uint256 tokenId) internal view virtual override(Royalties) returns (bool) { return super._exists(tokenId); } function _getRoyaltyFallback() internal view override returns (address payable) { return payable(_getPrimaryAdmin()); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, AccessControlEnumerable) returns (bool) { return super.supportsInterface(interfaceId) || _supportsRoyaltyInterfaces(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; abstract contract Royalties { mapping(uint256 => address payable) internal _tokenRoyaltyReceiver; mapping(uint256 => uint256) internal _tokenRoyaltyBPS; function _existsRoyalties(uint256 tokenId) internal view virtual returns (bool); /** * @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; function _setRoyalties( uint256 tokenId, address payable receiver, uint256 basisPoints ) internal { require(basisPoints > 0); _tokenRoyaltyReceiver[tokenId] = receiver; _tokenRoyaltyBPS[tokenId] = basisPoints; } /** * @dev 3rd party Marketplace Royalty Support */ /** * @dev IFoundation */ function getFees(uint256 tokenId) external view virtual returns (address payable[] memory, uint256[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); address payable[] memory receivers = new address payable[](1); uint256[] memory bps = new uint256[](1); receivers[0] = _getReceiver(tokenId); bps[0] = _getBps(tokenId); return (receivers, bps); } /** * @dev IRaribleV1 */ function getFeeRecipients(uint256 tokenId) external view virtual returns (address payable[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); address payable[] memory receivers = new address payable[](1); receivers[0] = _getReceiver(tokenId); return receivers; } function getFeeBps(uint256 tokenId) external view virtual returns (uint256[] memory) { require(_existsRoyalties(tokenId), "Nonexistent token"); uint256[] memory bps = new uint256[](1); bps[0] = _getBps(tokenId); return bps; } /** * @dev EIP-2981 * Returns primary receiver i.e. receivers[0] */ function royaltyInfo(uint256 tokenId, uint256 value) external view virtual returns (address, uint256) { require(_existsRoyalties(tokenId), "Nonexistent token"); return _getRoyaltyInfo(tokenId, value); } function _getRoyaltyInfo(uint256 tokenId, uint256 value) internal view returns (address receiver, uint256 amount) { address _receiver = _getReceiver(tokenId); return (_receiver, (_tokenRoyaltyBPS[tokenId] * value) / 10000); } function _getBps(uint256 tokenId) internal view returns (uint256) { return _tokenRoyaltyBPS[tokenId]; } function _getReceiver(uint256 tokenId) internal view returns (address payable) { uint256 bps = _getBps(tokenId); address payable receiver = _tokenRoyaltyReceiver[tokenId]; if (bps == 0 || receiver == address(0)) { /** * @dev: If bps is 0 the receiver was never set * Fall back to this contract so badly behaved * marketplaces have somewhere to send money to */ return (_getRoyaltyFallback()); } return receiver; } function _getRoyaltyFallback() internal view virtual returns (address payable); function _supportsRoyaltyInterfaces(bytes4 interfaceId) public pure returns (bool) { return interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE || interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; library Signable { function recoverAddressBulk( uint256 tokenId, string[] memory _tokenURIs, uint8 v, bytes32 r, bytes32 s ) internal view returns (address) { bytes32 h = keccak256( abi.encode(this, tokenId, _tokenURIs) ); address _address = ecrecover(h, v, r, s); return _address; } function recoverAddress( uint256 tokenId, string memory _tokenURI, uint8 v, bytes32 r, bytes32 s ) internal view returns (address) { bytes32 h = keccak256(abi.encode(this, tokenId, _tokenURI)); address _address = ecrecover(h, v, r, s); return _address; } /** * @dev Personal: recovers the address from a personal sign from the user */ function recoverPersonalAddressBulk( uint256 tokenId, string[] memory _tokenURIs, uint8 v, bytes32 r, bytes32 s ) internal view returns (address) { bytes memory prefix = "\x19Ethereum Signed Message:\n32"; bytes32 h = keccak256( abi.encode(this, tokenId, _tokenURIs) ); bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, h)); address _address = ecrecover(prefixedHash, v, r, s); return _address; } function recoverPersonalAddress( uint256 tokenId, string memory _tokenURI, uint8 v, bytes32 r, bytes32 s ) internal view returns (address) { bytes memory prefix = "\x19Ethereum Signed Message:\n32"; bytes32 h = keccak256(abi.encode(this, tokenId, _tokenURI)); bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, h)); address _address = ecrecover(prefixedHash, v, r, s); return _address; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"address","name":"signableMinter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SIGNABLE_MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"_supportsRoyaltyInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","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":[],"name":"getNextEditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"_tokenURIs","type":"string[]"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mintEditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string[]","name":"_tokenURIs","type":"string[]"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mintEditionsSignable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mintSignable","outputs":[],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526305f5e1006012553480156200001957600080fd5b5060405162003c7e38038062003c7e8339810160408190526200003c916200049e565b835184908490620000559060009060208501906200030e565b5080516200006b9060019060208401906200030e565b5050855162000083915060119060208801906200030e565b50620000916000836200015a565b620000ac60008051602062003c5e833981519152836200015a565b620000e760008051602062003c5e8339815191527f11c2020b6b4f4e00c2410234e0c72636b4739cf7cda4d8e24ef6b881350e67046200019d565b620001137f11c2020b6b4f4e00c2410234e0c72636b4739cf7cda4d8e24ef6b881350e6704836200015a565b6001600160a01b038116156200014f576200014f7f1467daf07ba3ba9daccf9f7f679be1881758b0407102cf56656a81b05ef174e7826200015a565b505050505062000592565b620001718282620001e860201b620014581760201c565b6000828152600e602090815260409091206200019891839062001466620001f8821b17901c565b505050565b6000828152600d6020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620001f4828262000218565b5050565b60006200020f836001600160a01b038416620002bc565b90505b92915050565b6000828152600d602090815260408083206001600160a01b038516845290915290205460ff16620001f4576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002783390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620003055750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000212565b50600062000212565b8280546200031c9062000555565b90600052602060002090601f0160209004810192826200034057600085556200038b565b82601f106200035b57805160ff19168380011785556200038b565b828001600101855582156200038b579182015b828111156200038b5782518255916020019190600101906200036e565b50620003999291506200039d565b5090565b5b808211156200039957600081556001016200039e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003dc57600080fd5b81516001600160401b0380821115620003f957620003f9620003b4565b604051601f8301601f19908116603f01168101908282118183101715620004245762000424620003b4565b816040528381526020925086838588010111156200044157600080fd5b600091505b8382101562000465578582018301518183018401529082019062000446565b83821115620004775760008385830101525b9695505050505050565b80516001600160a01b03811681146200049957600080fd5b919050565b600080600080600060a08688031215620004b757600080fd5b85516001600160401b0380821115620004cf57600080fd5b620004dd89838a01620003ca565b96506020880151915080821115620004f457600080fd5b6200050289838a01620003ca565b955060408801519150808211156200051957600080fd5b506200052888828901620003ca565b935050620005396060870162000481565b9150620005496080870162000481565b90509295509295909350565b600181811c908216806200056a57607f821691505b602082108114156200058c57634e487b7160e01b600052602260045260246000fd5b50919050565b6136bc80620005a26000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c806370a082311161013b578063b88d4fde116100b8578063d53913931161007c578063d539139314610554578063d547741f1461057b578063d5a06d4c1461058e578063da14cbbc146105af578063e985e9c5146105c257600080fd5b8063b88d4fde146104f3578063b9c4d9fb14610506578063c87b56dd14610526578063ca15c87314610539578063caa0f92a1461054c57600080fd5b806395d89b41116100ff57806395d89b41146104a1578063a217fddf146104a9578063a22cb465146104b1578063a66b7ec9146104c4578063af017ac4146104cc57600080fd5b806370a082311461044d5780638da5cb5b146104605780638f2bdc2e146104685780639010d07c1461047b57806391d148541461048e57600080fd5b80632a55205a116101c957806342966c681161018d57806342966c68146103ee5780634f6ccce7146104015780635346d1b1146104145780636352211e14610427578063646d11c81461043a57600080fd5b80632a55205a146103705780632f2ff15d146103a25780632f745c59146103b557806336568abe146103c857806342842e0e146103db57600080fd5b806311d15e7a1161021057806311d15e7a146102ea578063152fcb2e1461031f57806318160ddd1461033257806323b872dd1461033a578063248a9ca31461034d57600080fd5b806301ffc9a71461024d57806306fdde0314610275578063081812fc1461028a578063095ea7b3146102b55780630ebd4c7f146102ca575b600080fd5b61026061025b366004612b72565b6105fe565b60405190151581526020015b60405180910390f35b61027d61061e565b60405161026c9190612be7565b61029d610298366004612bfa565b6106b0565b6040516001600160a01b03909116815260200161026c565b6102c86102c3366004612c28565b61073d565b005b6102dd6102d8366004612bfa565b610853565b60405161026c9190612c8f565b6103117f11c2020b6b4f4e00c2410234e0c72636b4739cf7cda4d8e24ef6b881350e670481565b60405190815260200161026c565b61026061032d366004612b72565b6108d0565b600854610311565b6102c8610348366004612ca2565b610921565b61031161035b366004612bfa565b6000908152600d602052604090206001015490565b61038361037e366004612ce3565b610953565b604080516001600160a01b03909316835260208301919091520161026c565b6102c86103b0366004612d05565b610990565b6103116103c3366004612c28565b6109b2565b6102c86103d6366004612d05565b610a48565b6102c86103e9366004612ca2565b610a6a565b6102c86103fc366004612bfa565b610a85565b61031161040f366004612bfa565b610aff565b6102c8610422366004612e0a565b610b92565b61029d610435366004612bfa565b610d07565b6102c8610448366004612f39565b610d7e565b61031161045b366004612fa3565b610e64565b61029d610eeb565b6102c8610476366004612fc0565b610efa565b61029d610489366004612ce3565b611064565b61026061049c366004612d05565b611083565b61027d6110ae565b610311600081565b6102c86104bf36600461300e565b6110bd565b610311611182565b6103117f1467daf07ba3ba9daccf9f7f679be1881758b0407102cf56656a81b05ef174e781565b6102c8610501366004613041565b6111b0565b610519610514366004612bfa565b6111e8565b60405161026c91906130fa565b61027d610534366004612bfa565b61126b565b610311610547366004612bfa565b611276565b61031161128d565b6103117f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c8610589366004612d05565b611298565b6105a161059c366004612bfa565b6112a2565b60405161026c92919061310d565b6102c86105bd36600461313b565b611379565b6102606105d0366004613184565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006106098261147b565b806106185750610618826108d0565b92915050565b60606000805461062d906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610659906131b2565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb826114a0565b6107215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074882610d07565b9050806001600160a01b0316836001600160a01b031614156107b65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610718565b336001600160a01b03821614806107d257506107d281336105d0565b6108445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610718565b61084e83836114bd565b505050565b606061085e8261152b565b61087a5760405162461bcd60e51b8152600401610718906131ed565b60408051600180825281830190925260009160208083019080368337019050506000848152600c6020526040902054909150816000815181106108bf576108bf613218565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061090157506001600160e01b031982166335681b5360e21b145b8061061857506001600160e01b0319821663152a902d60e11b1492915050565b61092c335b82611536565b6109485760405162461bcd60e51b81526004016107189061322e565b61084e838383611620565b60008061095f8461152b565b61097b5760405162461bcd60e51b8152600401610718906131ed565b61098584846117cb565b915091509250929050565b61099a8282611812565b6000828152600e6020526040902061084e9082611466565b60006109bd83610e64565b8210610a1f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610718565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a528282611838565b6000828152600e6020526040902061084e90826118b2565b61084e838383604051806020016040528060008152506111b0565b610a8e33610926565b610af35760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610718565b610afc816118c7565b50565b6000610b0a60085490565b8210610b6d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610718565b60088281548110610b8057610b80613218565b90600052602060002001549050919050565b610bbc7f1467daf07ba3ba9daccf9f7f679be1881758b0407102cf56656a81b05ef174e733611083565b610bd85760405162461bcd60e51b81526004016107189061327f565b6127118410610bf95760405162461bcd60e51b8152600401610718906132c6565b6000610c0361128d565b90506012548110610c265760405162461bcd60e51b8152600401610718906132fd565b6000610c3582898787876118d0565b9050886001600160a01b0316816001600160a01b031614610c8a5760405162461bcd60e51b815260206004820152600f60248201526e5369676e61747572652077726f6e6760881b6044820152606401610718565b610c95600082611083565b610ce15760405162461bcd60e51b815260206004820181905260248201527f5369676e6174757265206e6f742067656e6572617465642062792061646d696e6044820152606401610718565b610cee81838a8a8a6119d3565b610cfc600f80546001019055565b505050505050505050565b6000818152600260205260408120546001600160a01b0316806106185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610718565b610da87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611083565b610df45760405162461bcd60e51b815260206004820152601e60248201527f5265737472696374656420746f20617070726f766564206d696e7465727300006044820152606401610718565b6127118110610e155760405162461bcd60e51b8152600401610718906132c6565b6001835111610e365760405162461bcd60e51b815260040161071890613345565b6000610e40611182565b9050610e4f8582868686611a3f565b610e5d601080546001019055565b5050505050565b60006001600160a01b038216610ecf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610718565b506001600160a01b031660009081526003602052604090205490565b6000610ef5611a94565b905090565b610f247f1467daf07ba3ba9daccf9f7f679be1881758b0407102cf56656a81b05ef174e733611083565b610f405760405162461bcd60e51b81526004016107189061327f565b6127118410610f615760405162461bcd60e51b8152600401610718906132c6565b6001865111610f825760405162461bcd60e51b815260040161071890613345565b6000610f8c611182565b90506000610f9d8289878787611ab4565b9050886001600160a01b0316816001600160a01b031614610ff25760405162461bcd60e51b815260206004820152600f60248201526e5369676e61747572652077726f6e6760881b6044820152606401610718565b610ffd600082611083565b6110495760405162461bcd60e51b815260206004820181905260248201527f5369676e6174757265206e6f742067656e6572617465642062792061646d696e6044820152606401610718565b61105681838a8a8a611a3f565b610cfc601080546001019055565b6000828152600e6020526040812061107c9083611b06565b9392505050565b6000918252600d602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461062d906131b2565b6001600160a01b0382163314156111165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610718565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600060125461119060105490565b61119b9060016133a0565b6111a591906133b8565b610ef59060016133a0565b6111ba3383611536565b6111d65760405162461bcd60e51b81526004016107189061322e565b6111e284848484611b12565b50505050565b60606111f38261152b565b61120f5760405162461bcd60e51b8152600401610718906131ed565b6040805160018082528183019092526000916020808301908036833701905050905061123a83611b45565b8160008151811061124d5761124d613218565b6001600160a01b039092166020928302919091019091015292915050565b606061061882611b89565b6000818152600e6020526040812061061890611ceb565b60006111a5600f5490565b610a528282611cf5565b6060806112ae8361152b565b6112ca5760405162461bcd60e51b8152600401610718906131ed565b60408051600180825281830190925260009160208083019080368337505060408051600180825281830190925292935060009291506020808301908036833701905050905061131885611b45565b8260008151811061132b5761132b613218565b6001600160a01b039092166020928302919091018201526000868152600c90915260409020548160008151811061136457611364613218565b60209081029190910101529094909350915050565b6113a37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611083565b6113ef5760405162461bcd60e51b815260206004820152601e60248201527f5265737472696374656420746f20617070726f766564206d696e7465727300006044820152606401610718565b61271181106114105760405162461bcd60e51b8152600401610718906132c6565b600061141a61128d565b9050601254811061143d5760405162461bcd60e51b8152600401610718906132fd565b61144a85828686866119d3565b610e5d600f80546001019055565b6114628282611d1b565b5050565b600061107c836001600160a01b038416611da1565b60006001600160e01b03198216635a05180f60e01b1480610618575061061882611df0565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f282610d07565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610618826114a0565b6000611541826114a0565b6115a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610718565b60006115ad83610d07565b9050806001600160a01b0316846001600160a01b031614806115e85750836001600160a01b03166115dd846106b0565b6001600160a01b0316145b8061161857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163382610d07565b6001600160a01b03161461169b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610718565b6001600160a01b0382166116fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610718565b611708838383611e15565b6117136000826114bd565b6001600160a01b038316600090815260036020526040812080546001929061173c9084906133d7565b90915550506001600160a01b038216600090815260036020526040812080546001929061176a9084906133a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008060006117d985611b45565b6000868152600c60205260409020549091508190612710906117fc9087906133b8565b6118069190613404565b92509250509250929050565b6000828152600d602052604090206001015461182e8133611e20565b61084e8383611d1b565b6001600160a01b03811633146118a85760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610718565b6114628282611e84565b600061107c836001600160a01b038416611eeb565b610afc81611fde565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050600030888860405160200161192293929190613418565b6040516020818303038152906040528051906020012090506000828260405160200161194f92919061343f565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa1580156119ba573d6000803e3d6000fd5b5050604051601f1901519b9a5050505050505050505050565b6119dd858561201e565b6119e78484612038565b80156119f8576119f88483836120c3565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611a238661126b565b604051611a309190612be7565b60405180910390a25050505050565b60005b8351811015611a8c57611a7a86611a5983886133a0565b868481518110611a6b57611a6b613218565b602002602001015186866119d3565b80611a8481613461565b915050611a42565b505050505050565b6000611a9f81611276565b611aa95750600090565b610ef5600080611064565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060003088886040516020016119229392919061347c565b600061107c8383612109565b611b1d848484611620565b611b2984848484612133565b6111e25760405162461bcd60e51b8152600401610718906134f5565b6000818152600c6020908152604080832054600b9092528220546001600160a01b0316811580611b7c57506001600160a01b038116155b1561107c57611618610eeb565b6060611b94826114a0565b611bfa5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610718565b6000828152600a602052604081208054611c13906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3f906131b2565b8015611c8c5780601f10611c6157610100808354040283529160200191611c8c565b820191906000526020600020905b815481529060010190602001808311611c6f57829003601f168201915b505050505090506000611c9d612240565b9050805160001415611cb0575092915050565b815115611ce2578082604051602001611cca929190613547565b60405160208183030381529060405292505050919050565b6116188461224f565b6000610618825490565b6000828152600d6020526040902060010154611d118133611e20565b61084e8383611e84565b611d258282611083565b611462576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611d5d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611de857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610618565b506000610618565b60006001600160e01b03198216637965db0b60e01b1480610618575061061882612319565b61084e83838361233e565b611e2a8282611083565b61146257611e42816001600160a01b031660146123f6565b611e4d8360206123f6565b604051602001611e5e929190613576565b60408051601f198184030181529082905262461bcd60e51b825261071891600401612be7565b611e8e8282611083565b15611462576000828152600d602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611fd4576000611f0f6001836133d7565b8554909150600090611f23906001906133d7565b9050818114611f88576000866000018281548110611f4357611f43613218565b9060005260206000200154905080876000018481548110611f6657611f66613218565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611f9957611f996135eb565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610618565b6000915050610618565b611fe781612592565b6000818152600a602052604090208054612000906131b2565b159050610afc576000818152600a60205260408120610afc91612a89565b611462828260405180602001604052806000815250612639565b612041826114a0565b6120a45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610718565b6000828152600a60209081526040909120825161084e92840190612ac3565b600081116120d057600080fd5b6000928352600b6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600c9052912055565b600082600001828154811061212057612120613218565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561223557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612177903390899088908890600401613601565b602060405180830381600087803b15801561219157600080fd5b505af19250505080156121c1575060408051601f3d908101601f191682019092526121be9181019061363e565b60015b61221b573d8080156121ef576040519150601f19603f3d011682016040523d82523d6000602084013e6121f4565b606091505b5080516122135760405162461bcd60e51b8152600401610718906134f5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611618565b506001949350505050565b60606011805461062d906131b2565b606061225a826114a0565b6122be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610718565b60006122c8612240565b905060008151116122e8576040518060200160405280600081525061107c565b806122f28461266c565b604051602001612303929190613547565b6040516020818303038152906040529392505050565b60006001600160e01b0319821663780e9d6360e01b148061061857506106188261276a565b6001600160a01b0383166123995761239481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123bc565b816001600160a01b0316836001600160a01b0316146123bc576123bc83826127ba565b6001600160a01b0382166123d35761084e81612857565b826001600160a01b0316826001600160a01b03161461084e5761084e8282612906565b606060006124058360026133b8565b6124109060026133a0565b67ffffffffffffffff81111561242857612428612d35565b6040519080825280601f01601f191660200182016040528015612452576020820181803683370190505b509050600360fc1b8160008151811061246d5761246d613218565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061249c5761249c613218565b60200101906001600160f81b031916908160001a90535060006124c08460026133b8565b6124cb9060016133a0565b90505b6001811115612543576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106124ff576124ff613218565b1a60f81b82828151811061251557612515613218565b60200101906001600160f81b031916908160001a90535060049490941c9361253c8161365b565b90506124ce565b50831561107c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610718565b600061259d82610d07565b90506125ab81600084611e15565b6125b66000836114bd565b6001600160a01b03811660009081526003602052604081208054600192906125df9084906133d7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612643838361294a565b6126506000848484612133565b61084e5760405162461bcd60e51b8152600401610718906134f5565b6060816126905750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126ba57806126a481613461565b91506126b39050600a83613404565b9150612694565b60008167ffffffffffffffff8111156126d5576126d5612d35565b6040519080825280601f01601f1916602001820160405280156126ff576020820181803683370190505b5090505b8415611618576127146001836133d7565b9150612721600a86613672565b61272c9060306133a0565b60f81b81838151811061274157612741613218565b60200101906001600160f81b031916908160001a905350612763600a86613404565b9450612703565b60006001600160e01b031982166380ac58cd60e01b148061279b57506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b600060016127c784610e64565b6127d191906133d7565b600083815260076020526040902054909150808214612824576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612869906001906133d7565b6000838152600960205260408120546008805493945090928490811061289157612891613218565b9060005260206000200154905080600883815481106128b2576128b2613218565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ea576128ea6135eb565b6001900381819060005260206000200160009055905550505050565b600061291183610e64565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610718565b6129a9816114a0565b156129f65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610718565b612a0260008383611e15565b6001600160a01b0382166000908152600360205260408120805460019290612a2b9084906133a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054612a95906131b2565b6000825580601f10612aa5575050565b601f016020900490600052602060002090810190610afc9190612b47565b828054612acf906131b2565b90600052602060002090601f016020900481019282612af15760008555612b37565b82601f10612b0a57805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b37578251825591602001919060010190612b1c565b50612b43929150612b47565b5090565b5b80821115612b435760008155600101612b48565b6001600160e01b031981168114610afc57600080fd5b600060208284031215612b8457600080fd5b813561107c81612b5c565b60005b83811015612baa578181015183820152602001612b92565b838111156111e25750506000910152565b60008151808452612bd3816020860160208601612b8f565b601f01601f19169290920160200192915050565b60208152600061107c6020830184612bbb565b600060208284031215612c0c57600080fd5b5035919050565b6001600160a01b0381168114610afc57600080fd5b60008060408385031215612c3b57600080fd5b8235612c4681612c13565b946020939093013593505050565b600081518084526020808501945080840160005b83811015612c8457815187529582019590820190600101612c68565b509495945050505050565b60208152600061107c6020830184612c54565b600080600060608486031215612cb757600080fd5b8335612cc281612c13565b92506020840135612cd281612c13565b929592945050506040919091013590565b60008060408385031215612cf657600080fd5b50508035926020909101359150565b60008060408385031215612d1857600080fd5b823591506020830135612d2a81612c13565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612d7457612d74612d35565b604052919050565b600067ffffffffffffffff831115612d9657612d96612d35565b612da9601f8401601f1916602001612d4b565b9050828152838383011115612dbd57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612de557600080fd5b61107c83833560208501612d7c565b803560ff81168114612e0557600080fd5b919050565b600080600080600080600060e0888a031215612e2557600080fd5b8735612e3081612c13565b9650602088013567ffffffffffffffff811115612e4c57600080fd5b612e588a828b01612dd4565b9650506040880135612e6981612c13565b945060608801359350612e7e60808901612df4565b925060a0880135915060c0880135905092959891949750929550565b600082601f830112612eab57600080fd5b8135602067ffffffffffffffff80831115612ec857612ec8612d35565b8260051b612ed7838201612d4b565b9384528581018301938381019088861115612ef157600080fd5b84880192505b85831015612f2d57823584811115612f0f5760008081fd5b612f1d8a87838c0101612dd4565b8352509184019190840190612ef7565b98975050505050505050565b60008060008060808587031215612f4f57600080fd5b8435612f5a81612c13565b9350602085013567ffffffffffffffff811115612f7657600080fd5b612f8287828801612e9a565b9350506040850135612f9381612c13565b9396929550929360600135925050565b600060208284031215612fb557600080fd5b813561107c81612c13565b600080600080600080600060e0888a031215612fdb57600080fd5b8735612fe681612c13565b9650602088013567ffffffffffffffff81111561300257600080fd5b612e588a828b01612e9a565b6000806040838503121561302157600080fd5b823561302c81612c13565b915060208301358015158114612d2a57600080fd5b6000806000806080858703121561305757600080fd5b843561306281612c13565b9350602085013561307281612c13565b925060408501359150606085013567ffffffffffffffff81111561309557600080fd5b8501601f810187136130a657600080fd5b6130b587823560208401612d7c565b91505092959194509250565b600081518084526020808501945080840160005b83811015612c845781516001600160a01b0316875295820195908201906001016130d5565b60208152600061107c60208301846130c1565b60408152600061312060408301856130c1565b82810360208401526131328185612c54565b95945050505050565b6000806000806080858703121561315157600080fd5b843561315c81612c13565b9350602085013567ffffffffffffffff81111561317857600080fd5b612f8287828801612dd4565b6000806040838503121561319757600080fd5b82356131a281612c13565b91506020830135612d2a81612c13565b600181811c908216806131c657607f821691505b602082108114156131e757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f5265737472696374656420746f20617070726f766564207369676e61626c65206040820152666d696e7465727360c81b606082015260800190565b6020808252601c908201527f546f74616c20726f79616c746965732065786365656473203130302500000000604082015260600190565b60208082526028908201527f4d6178696d756d206e756d626572206f662073696e676c6520746f6b656e7320604082015267195e18d95959195960c21b606082015260800190565b60208082526025908201527f4d757374206265206d6f7265207468616e203120746f6b656e2070657220656460408201526434ba34b7b760d91b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156133b3576133b361338a565b500190565b60008160001904831182151516156133d2576133d261338a565b500290565b6000828210156133e9576133e961338a565b500390565b634e487b7160e01b600052601260045260246000fd5b600082613413576134136133ee565b500490565b60018060a01b03841681528260208201526060604082015260006131326060830184612bbb565b60008351613451818460208801612b8f565b9190910191825250602001919050565b60006000198214156134755761347561338a565b5060010190565b60006060820160018060a01b0386168352602085818501526060604085015281855180845260808601915060808160051b870101935082870160005b828110156134e657607f198887030184526134d4868351612bbb565b955092840192908401906001016134b8565b50939998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351613559818460208801612b8f565b83519083019061356d818360208801612b8f565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516135ae816017850160208801612b8f565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516135df816028840160208801612b8f565b01602801949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061363490830184612bbb565b9695505050505050565b60006020828403121561365057600080fd5b815161107c81612b5c565b60008161366a5761366a61338a565b506000190190565b600082613681576136816133ee565b50069056fea2646970667358221220606db5d0dc39db20f099895df72fd51cc9cf17191057735e6597bbb5e2bd5ea964736f6c634300080900339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a600000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000cb0ad13b979dbb44b1d7a24e00e7850abee2cccb000000000000000000000000cbb017fa294d74a6fbd84f6eb444e99353f525f20000000000000000000000000000000000000000000000000000000000000007697066733a2f2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084a6f686e5465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a57310000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
559:8496:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8756:297;;;;;;:::i;:::-;;:::i;:::-;;;565:14:22;;558:22;540:41;;528:2;513:18;8756:297:1;;;;;;;;2414:98:7;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:22;;;1674:51;;1662:2;1647:18;3925:217:7;1528:203:22;3463:401:7;;;;;;:::i;:::-;;:::i;:::-;;2477:298:2;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1224:74:1:-;;1268:30;1224:74;;;;;3044:25:22;;;3032:2;3017:18;1224:74:1;2898:177:22;4217:320:2;;;;;;:::i;:::-;;:::i;1535:111:11:-;1622:10;:17;1535:111;;4789:330:7;;;;;;:::i;:::-;;:::i;3917:121:3:-;;;;;;:::i;:::-;3983:7;4009:12;;;:6;:12;;;;;:22;;;;3917:121;2868:258:2;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4353:32:22;;;4335:51;;4417:2;4402:18;;4395:34;;;;4308:18;2868:258:2;4161:274:22;1876:193:4;;;;;;:::i;:::-;;:::i;1211:253:11:-;;;;;;:::i;:::-;;:::i;2445:202:4:-;;;;;;:::i;:::-;;:::i;5185:179:7:-;;;;;;:::i;:::-;;:::i;451:241:10:-;;;;;;:::i;:::-;;:::i;1718:230:11:-;;;;;;:::i;:::-;;:::i;4857:798:1:-;;;;;;:::i;:::-;;:::i;2117:235:7:-;;;;;;:::i;:::-;;:::i;4048:478:1:-;;;;;;:::i;:::-;;:::i;1855:205:7:-;;;;;;:::i;:::-;;:::i;2667:97:1:-;;;:::i;5897:851::-;;;;;;:::i;:::-;;:::i;1346:143:4:-;;;;;;:::i;:::-;;:::i;2834:137:3:-;;;;;;:::i;:::-;;:::i;2576:102:7:-;;;:::i;1952:49:3:-;;1997:4;1952:49;;4209:290:7;;;;;;:::i;:::-;;:::i;7631:134:1:-;;;:::i;1386:80::-;;1433:33;1386:80;;5430:320:7;;;;;;:::i;:::-;;:::i;2119:352:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8192:189:1:-;;;;;;:::i;:::-;;:::i;1657:132:4:-;;;;;;:::i;:::-;;:::i;7516:109:1:-;;;:::i;1023:62::-;;1061:24;1023:62;;2157:198:4;;;;;;:::i;:::-;;:::i;1622:452:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3542:500:1:-;;;;;;:::i;:::-;;:::i;4565:162:7:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;8756:297:1;8916:4;8955:36;8979:11;8955:23;:36::i;:::-;:91;;;;9007:39;9034:11;9007:26;:39::i;:::-;8936:110;8756:297;-1:-1:-1;;8756:297:1:o;2414:98:7:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;-1:-1:-1;;;4020:73:7;;14092:2:22;4020:73:7;;;14074:21:22;14131:2;14111:18;;;14104:30;14170:34;14150:18;;;14143:62;-1:-1:-1;;;14221:18:22;;;14214:42;14273:19;;4020:73:7;;;;;;;;;-1:-1:-1;4111:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:7;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:7;:2;-1:-1:-1;;;;;3600:11:7;;;3592:57;;;;-1:-1:-1;;;3592:57:7;;14505:2:22;3592:57:7;;;14487:21:22;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:22;;;14627:31;14675:19;;3592:57:7;14303:397:22;3592:57:7;666:10:16;-1:-1:-1;;;;;3681:21:7;;;;:62;;-1:-1:-1;3706:37:7;3723:5;666:10:16;4565:162:7;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:7;;14907:2:22;3660:165:7;;;14889:21:22;14946:2;14926:18;;;14919:30;14985:34;14965:18;;;14958:62;15056:26;15036:18;;;15029:54;15100:19;;3660:165:7;14705:420:22;3660:165:7;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;2477:298:2:-;2576:16;2616:25;2633:7;2616:16;:25::i;:::-;2608:55;;;;-1:-1:-1;;;2608:55:2;;;;;;;:::i;:::-;2697:16;;;2711:1;2697:16;;;;;;;;;2674:20;;2697:16;;;;;;;;;;;-1:-1:-1;;3468:7:2;3494:25;;;:16;:25;;;;;;2674:39;;-1:-1:-1;2723:3:2;2727:1;2723:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2765:3;2477:298;-1:-1:-1;;2477:298:2:o;4217:320::-;4318:4;-1:-1:-1;;;;;;4357:46:2;;-1:-1:-1;;;4357:46:2;;:111;;-1:-1:-1;;;;;;;4419:49:2;;-1:-1:-1;;;4419:49:2;4357:111;:173;;;-1:-1:-1;;;;;;;4484:46:2;;-1:-1:-1;;;4484:46:2;4338:192;4217:320;-1:-1:-1;;4217:320:2:o;4789:330:7:-;4978:41;666:10:16;4997:12:7;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:7;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;2868:258:2:-;2984:7;2993;3024:25;3041:7;3024:16;:25::i;:::-;3016:55;;;;-1:-1:-1;;;3016:55:2;;;;;;;:::i;:::-;3088:31;3104:7;3113:5;3088:15;:31::i;:::-;3081:38;;;;2868:258;;;;;:::o;1876:193:4:-;1991:30;2007:4;2013:7;1991:15;:30::i;:::-;2031:18;;;;:12;:18;;;;;:31;;2054:7;2031:22;:31::i;1211:253:11:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:11;;16228:2:22;1327:87:11;;;16210:21:22;16267:2;16247:18;;;16240:30;16306:34;16286:18;;;16279:62;-1:-1:-1;;;16357:18:22;;;16350:41;16408:19;;1327:87:11;16026:407:22;1327:87:11;-1:-1:-1;;;;;;1431:19:11;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;2445:202:4:-;2563:33;2582:4;2588:7;2563:18;:33::i;:::-;2606:18;;;;:12;:18;;;;;:34;;2632:7;2606:25;:34::i;5185:179:7:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;451:241:10:-;567:41;666:10:16;586:12:10;587:96:16;567:41:10;559:102;;;;-1:-1:-1;;;559:102:10;;16640:2:22;559:102:10;;;16622:21:22;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;-1:-1:-1;;;16769:18:22;;;16762:46;16825:19;;559:102:10;16438:412:22;559:102:10;671:14;677:7;671:5;:14::i;:::-;451:241;:::o;1718:230:11:-;1793:7;1828:30;1622:10;:17;;1535:111;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:11;;17057:2:22;1812:95:11;;;17039:21:22;17096:2;17076:18;;;17069:30;17135:34;17115:18;;;17108:62;-1:-1:-1;;;17186:18:22;;;17179:42;17238:19;;1812:95:11;16855:408:22;1812:95:11;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;1917:24;;1718:230;;;:::o;4857:798:1:-;3365:41;1433:33;3395:10;3365:7;:41::i;:::-;3357:93;;;;-1:-1:-1;;;3357:93:1;;;;;;;:::i;:::-;5115:5:::1;5101:11;:19;5093:60;;;;-1:-1:-1::0;;;5093:60:1::1;;;;;;;:::i;:::-;5163:15;5181:16;:14;:16::i;:::-;5163:34;;5238:12;;5228:7;:22;5207:109;;;;-1:-1:-1::0;;;5207:109:1::1;;;;;;;:::i;:::-;5327:10;5340:60;5372:7;5381:9;5392:1;5395;5398;5340:31;:60::i;:::-;5327:73;;5433:3;-1:-1:-1::0;;;;;5427:9:1::1;:2;-1:-1:-1::0;;;;;5427:9:1::1;;5419:37;;;::::0;-1:-1:-1;;;5419:37:1;;18644:2:22;5419:37:1::1;::::0;::::1;18626:21:22::0;18683:2;18663:18;;;18656:30;-1:-1:-1;;;18702:18:22;;;18695:45;18757:18;;5419:37:1::1;18442:339:22::0;5419:37:1::1;5474:31;1997:4:3;5502:2:1::0;5474:7:::1;:31::i;:::-;5466:76;;;::::0;-1:-1:-1;;;5466:76:1;;18988:2:22;5466:76:1::1;::::0;::::1;18970:21:22::0;;;19007:18;;;19000:30;19066:34;19046:18;;;19039:62;19118:18;;5466:76:1::1;18786:356:22::0;5466:76:1::1;5553:58;5565:2;5569:7;5578:9;5589:8;5599:11;5553;:58::i;:::-;5621:27;:15;978:19:17::0;;996:1;978:19;;;891:123;5621:27:1::1;5083:572;;4857:798:::0;;;;;;;:::o;2117:235:7:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:7;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:7;;19349:2:22;2250:73:7;;;19331:21:22;19388:2;19368:18;;;19361:30;19427:34;19407:18;;;19400:62;-1:-1:-1;;;19478:18:22;;;19471:39;19527:19;;2250:73:7;19147:405:22;4048:478:1;3135:32;1061:24;3156:10;3135:7;:32::i;:::-;3127:75;;;;-1:-1:-1;;;3127:75:1;;19759:2:22;3127:75:1;;;19741:21:22;19798:2;19778:18;;;19771:30;19837:32;19817:18;;;19810:60;19887:18;;3127:75:1;19557:354:22;3127:75:1;4245:5:::1;4231:11;:19;4223:60;;;;-1:-1:-1::0;;;4223:60:1::1;;;;;;;:::i;:::-;4321:1;4301:10;:17;:21;4293:71;;;;-1:-1:-1::0;;;4293:71:1::1;;;;;;;:::i;:::-;4375:15;4393:18;:16;:18::i;:::-;4375:36;;4421:61;4435:2;4439:7;4448:10;4460:8;4470:11;4421:13;:61::i;:::-;4492:27;:15;978:19:17::0;;996:1;978:19;;;891:123;4492:27:1::1;4213:313;4048:478:::0;;;;:::o;1855:205:7:-;1927:7;-1:-1:-1;;;;;1954:19:7;;1946:74;;;;-1:-1:-1;;;1946:74:7;;20524:2:22;1946:74:7;;;20506:21:22;20563:2;20543:18;;;20536:30;20602:34;20582:18;;;20575:62;-1:-1:-1;;;20653:18:22;;;20646:40;20703:19;;1946:74:7;20322:406:22;1946:74:7;-1:-1:-1;;;;;;2037:16:7;;;;;:9;:16;;;;;;;1855:205::o;2667:97:1:-;2713:7;2739:18;:16;:18::i;:::-;2732:25;;2667:97;:::o;5897:851::-;3365:41;1433:33;3395:10;3365:7;:41::i;:::-;3357:93;;;;-1:-1:-1;;;3357:93:1;;;;;;;:::i;:::-;6166:5:::1;6152:11;:19;6144:60;;;;-1:-1:-1::0;;;6144:60:1::1;;;;;;;:::i;:::-;6242:1;6222:10;:17;:21;6214:71;;;;-1:-1:-1::0;;;6214:71:1::1;;;;;;;:::i;:::-;6295:15;6313:18;:16;:18::i;:::-;6295:36;;6350:10;6363:135;6412:7;6433:10;6457:1;6472;6487;6363:35;:135::i;:::-;6350:148;;6523:3;-1:-1:-1::0;;;;;6517:9:1::1;:2;-1:-1:-1::0;;;;;6517:9:1::1;;6509:37;;;::::0;-1:-1:-1;;;6509:37:1;;18644:2:22;6509:37:1::1;::::0;::::1;18626:21:22::0;18683:2;18663:18;;;18656:30;-1:-1:-1;;;18702:18:22;;;18695:45;18757:18;;6509:37:1::1;18442:339:22::0;6509:37:1::1;6564:31;1997:4:3;6592:2:1::0;6564:7:::1;:31::i;:::-;6556:76;;;::::0;-1:-1:-1;;;6556:76:1;;18988:2:22;6556:76:1::1;::::0;::::1;18970:21:22::0;;;19007:18;;;19000:30;19066:34;19046:18;;;19039:62;19118:18;;6556:76:1::1;18786:356:22::0;6556:76:1::1;6643:61;6657:2;6661:7;6670:10;6682:8;6692:11;6643:13;:61::i;:::-;6714:27;:15;978:19:17::0;;996:1;978:19;;;891:123;1346:143:4;1428:7;1454:18;;;:12;:18;;;;;:28;;1476:5;1454:21;:28::i;:::-;1447:35;1346:143;-1:-1:-1;;;1346:143:4:o;2834:137:3:-;2912:4;2935:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;2935:29:3;;;;;;;;;;;;;;;2834:137::o;2576:102:7:-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:7;;666:10:16;4311:24:7;;4303:62;;;;-1:-1:-1;;;4303:62:7;;20935:2:22;4303:62:7;;;20917:21:22;20974:2;20954:18;;;20947:30;21013:27;20993:18;;;20986:55;21058:18;;4303:62:7;20733:349:22;4303:62:7;666:10:16;4376:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:7;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:7;;;;;;;;;;4444:48;;540:41:22;;;4376:42:7;;666:10:16;4444:48:7;;513:18:22;4444:48:7;;;;;;;4209:290;;:::o;7631:134:1:-;7680:7;7741:12;;7708:25;:15;864:14:17;;773:112;7708:25:1;:29;;7736:1;7708:29;:::i;:::-;7707:46;;;;:::i;:::-;7706:52;;7757:1;7706:52;:::i;5430:320:7:-;5599:41;666:10:16;5632:7:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:7;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2119:352:2:-;2225:24;2273:25;2290:7;2273:16;:25::i;:::-;2265:55;;;;-1:-1:-1;;;2265:55:2;;;;;;;:::i;:::-;2368:24;;;2390:1;2368:24;;;;;;;;;2331:34;;2368:24;;;;;;;;;;;-1:-1:-1;2368:24:2;2331:61;;2417:21;2430:7;2417:12;:21::i;:::-;2402:9;2412:1;2402:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2402:36:2;;;:12;;;;;;;;;;;:36;2455:9;2119:352;-1:-1:-1;;2119:352:2:o;8192:189:1:-;8315:13;8351:23;8366:7;8351:14;:23::i;1657:132:4:-;1729:7;1755:18;;;:12;:18;;;;;:27;;:25;:27::i;7516:109:1:-;7563:7;7589:25;:15;864:14:17;;773:112;2157:198:4;2273:31;2290:4;2296:7;2273:16;:31::i;1622:452:2:-;1719:24;1745:16;1785:25;1802:7;1785:16;:25::i;:::-;1777:55;;;;-1:-1:-1;;;1777:55:2;;;;;;;:::i;:::-;1880:24;;;1902:1;1880:24;;;;;;;;;1843:34;;1880:24;;;;;;;;;-1:-1:-1;;1937:16:2;;;1951:1;1937:16;;;;;;;;;1843:61;;-1:-1:-1;1914:20:2;;1937:16;-1:-1:-1;1937:16:2;;;;;;;;;;;-1:-1:-1;1937:16:2;1914:39;;1978:21;1991:7;1978:12;:21::i;:::-;1963:9;1973:1;1963:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1963:36:2;;;:12;;;;;;;;;;:36;3468:7;3494:25;;;:16;:25;;;;;;;2009:3;2013:1;2009:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2052:9;;2063:3;;-1:-1:-1;1622:452:2;-1:-1:-1;;1622:452:2:o;3542:500:1:-;3135:32;1061:24;3156:10;3135:7;:32::i;:::-;3127:75;;;;-1:-1:-1;;;3127:75:1;;19759:2:22;3127:75:1;;;19741:21:22;19798:2;19778:18;;;19771:30;19837:32;19817:18;;;19810:60;19887:18;;3127:75:1;19557:354:22;3127:75:1;3728:5:::1;3714:11;:19;3706:60;;;;-1:-1:-1::0;;;3706:60:1::1;;;;;;;:::i;:::-;3776:15;3794:16;:14;:16::i;:::-;3776:34;;3851:12;;3841:7;:22;3820:109;;;;-1:-1:-1::0;;;3820:109:1::1;;;;;;;:::i;:::-;3940:58;3952:2;3956:7;3965:9;3976:8;3986:11;3940;:58::i;:::-;4008:27;:15;978:19:17::0;;996:1;978:19;;;891:123;6084:110:3;6162:25;6173:4;6179:7;6162:10;:25::i;:::-;6084:110;;:::o;7545:150:21:-;7615:4;7638:50;7643:3;-1:-1:-1;;;;;7663:23:21;;7638:4;:50::i;549:212:4:-;634:4;-1:-1:-1;;;;;;657:57:4;;-1:-1:-1;;;657:57:4;;:97;;;718:36;742:11;718:23;:36::i;7222:125:7:-;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:7;:30;;;7222:125::o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:7;-1:-1:-1;;;;;11147:29:7;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:7;;;;;;;;;;;11073:171;;:::o;8387:190:1:-;8521:4;8548:22;8562:7;8548:13;:22::i;7505:344:7:-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;-1:-1:-1;;;7614:73:7;;21727:2:22;7614:73:7;;;21709:21:22;21766:2;21746:18;;;21739:30;21805:34;21785:18;;;21778:62;-1:-1:-1;;;21856:18:22;;;21849:42;21908:19;;7614:73:7;21525:408:22;7614:73:7;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:7;:7;-1:-1:-1;;;;;7754:16:7;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:7;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:7;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:7;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:7:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:7;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:7;;10521:85;;;;-1:-1:-1;;;10521:85:7;;22140:2:22;10521:85:7;;;22122:21:22;22179:2;22159:18;;;22152:30;22218:34;22198:18;;;22191:62;-1:-1:-1;;;22269:18:22;;;22262:39;22318:19;;10521:85:7;21938:405:22;10521:85:7;-1:-1:-1;;;;;10624:16:7;;10616:65;;;;-1:-1:-1;;;10616:65:7;;22550:2:22;10616:65:7;;;22532:21:22;22589:2;22569:18;;;22562:30;22628:34;22608:18;;;22601:62;-1:-1:-1;;;22679:18:22;;;22672:34;22723:19;;10616:65:7;22348:400:22;10616:65:7;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:7;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:7;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:7;-1:-1:-1;;;;;10891:21:7;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;3132:273:2:-;3236:16;3254:14;3284:17;3304:21;3317:7;3304:12;:21::i;:::-;3355:25;;;;:16;:25;;;;;;3284:41;;-1:-1:-1;3284:41:2;;3392:5;;3355:33;;3383:5;;3355:33;:::i;:::-;3354:43;;;;:::i;:::-;3335:63;;;;;3132:273;;;;;:::o;4288:145:3:-;3983:7;4009:12;;;:6;:12;;;;;:22;;;2430:30;2441:4;666:10:16;2430::3;:30::i;:::-;4401:25:::1;4412:4;4418:7;4401:10;:25::i;5305:214::-:0;-1:-1:-1;;;;;5400:23:3;;666:10:16;5400:23:3;5392:83;;;;-1:-1:-1;;;5392:83:3;;23342:2:22;5392:83:3;;;23324:21:22;23381:2;23361:18;;;23354:30;23420:34;23400:18;;;23393:62;-1:-1:-1;;;23471:18:22;;;23464:45;23526:19;;5392:83:3;23140:411:22;5392:83:3;5486:26;5498:4;5504:7;5486:11;:26::i;7863:156:21:-;7936:4;7959:53;7967:3;-1:-1:-1;;;;;7987:23:21;;7959:7;:53::i;8053:133:1:-;8159:20;8171:7;8159:11;:20::i;1389:483:0:-;1563:7;1582:19;:56;;;;;;;;;;;;;;;;;;;1648:9;1681:4;1687:7;1696:9;1670:36;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1660:47;;;;;;1648:59;;1717:20;1767:6;1775:1;1750:27;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1750:27:0;;;;;;;;;1740:38;;1750:27;1740:38;;;;1788:16;1807:32;;;;;;;;;24567:25:22;;;24640:4;24628:17;;24608:18;;;24601:45;;;;24662:18;;;24655:34;;;24705:18;;;24698:34;;;1740:38:0;;-1:-1:-1;1788:16:0;1807:32;;24539:19:22;;1807:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1807:32:0;;-1:-1:-1;;1807:32:0;;;1389:483;-1:-1:-1;;;;;;;;;;;1389:483:0:o;7097:413:1:-;7284:22;7294:2;7298:7;7284:9;:22::i;:::-;7316:32;7329:7;7338:9;7316:12;:32::i;:::-;7362:15;;7358:91;;7393:45;7407:7;7416:8;7426:11;7393:13;:45::i;:::-;7495:7;7463:40;7476:17;7485:7;7476:8;:17::i;:::-;7463:40;;;;;;:::i;:::-;;;;;;;;7097:413;;;;;:::o;6754:337::-;6951:9;6946:139;6970:10;:17;6966:1;:21;6946:139;;;7008:66;7020:2;7024:11;7034:1;7024:7;:11;:::i;:::-;7037:10;7048:1;7037:13;;;;;;;;:::i;:::-;;;;;;;7052:8;7062:11;7008;:66::i;:::-;6989:3;;;;:::i;:::-;;;;6946:139;;;;6754:337;;;;;:::o;2770:228::-;2829:7;2852:38;2829:7;2852:18;:38::i;:::-;2848:91;;-1:-1:-1;2926:1:1;;2770:228::o;2848:91::-;2955:36;1997:4:3;;2955:13:1;:36::i;870:513:0:-;1051:7;1070:19;:56;;;;;;;;;;;;;;;;;;;1136:9;1182:4;1188:7;1197:10;1171:37;;;;;;;;;;:::i;8803:156:21:-;8877:7;8927:22;8931:3;8943:5;8927:3;:22::i;6612:307:7:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:7;;;;;;;:::i;3532:562:2:-;3618:15;3494:25;;;:16;:25;;;;;;;;;3716:21;:30;;;;;;-1:-1:-1;;;;;3716:30:2;3760:8;;;:34;;-1:-1:-1;;;;;;3772:22:2;;;3760:34;3756:306;;;4029:21;:19;:21::i;387:663:12:-;460:13;493:16;501:7;493;:16::i;:::-;485:78;;;;-1:-1:-1;;;485:78:12;;26499:2:22;485:78:12;;;26481:21:22;26538:2;26518:18;;;26511:30;26577:34;26557:18;;;26550:62;-1:-1:-1;;;26628:18:22;;;26621:47;26685:19;;485:78:12;26297:413:22;485:78:12;574:23;600:19;;;:10;:19;;;;;574:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629:18;650:10;:8;:10::i;:::-;629:31;;739:4;733:18;755:1;733:23;729:70;;;-1:-1:-1;779:9:12;387:663;-1:-1:-1;;387:663:12:o;729:70::-;901:23;;:27;897:106;;975:4;981:9;958:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;944:48;;;;387:663;;;:::o;897:106::-;1020:23;1035:7;1020:14;:23::i;8346:115:21:-;8409:7;8435:19;8443:3;3961:18;;3879:107;4667:147:3;3983:7;4009:12;;;:6;:12;;;;;:22;;;2430:30;2441:4;666:10:16;2430::3;:30::i;:::-;4781:26:::1;4793:4;4799:7;4781:11;:26::i;6572:224::-:0;6646:22;6654:4;6660:7;6646;:22::i;:::-;6641:149;;6684:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6684:29:3;;;;;;;;;:36;;-1:-1:-1;;6684:36:3;6716:4;6684:36;;;6766:12;666:10:16;;587:96;6766:12:3;-1:-1:-1;;;;;6739:40:3;6757:7;-1:-1:-1;;;;;6739:40:3;6751:4;6739:40;;;;;;;;;;6572:224;;:::o;1630:404:21:-;1693:4;3767:19;;;:12;;;:19;;;;;;1709:319;;-1:-1:-1;1751:23:21;;;;;;;;:11;:23;;;;;;;;;;;;;1931:18;;1909:19;;;:12;;;:19;;;;;;:40;;;;1963:11;;1709:319;-1:-1:-1;2012:5:21;2005:12;;2545:202:3;2630:4;-1:-1:-1;;;;;;2653:47:3;;-1:-1:-1;;;2653:47:3;;:87;;;2704:36;2728:11;2704:23;:36::i;7838:209:1:-;7995:45;8022:4;8028:2;8032:7;7995:26;:45::i;3252:484:3:-;3332:22;3340:4;3346:7;3332;:22::i;:::-;3327:403;;3515:41;3543:7;-1:-1:-1;;;;;3515:41:3;3553:2;3515:19;:41::i;:::-;3627:38;3655:4;3662:2;3627:19;:38::i;:::-;3422:265;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3422:265:3;;;;;;;;;;-1:-1:-1;;;3370:349:3;;;;;;;:::i;6802:225::-;6876:22;6884:4;6890:7;6876;:22::i;:::-;6872:149;;;6946:5;6914:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6914:29:3;;;;;;;;;;:37;;-1:-1:-1;;6914:37:3;;;6970:40;666:10:16;;6914:12:3;;6970:40;;6946:5;6970:40;6802:225;;:::o;2202:1388:21:-;2268:4;2405:19;;;:12;;;:19;;;;;;2439:15;;2435:1149;;2808:21;2832:14;2845:1;2832:10;:14;:::i;:::-;2880:18;;2808:38;;-1:-1:-1;2860:17:21;;2880:22;;2901:1;;2880:22;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;:::i;:::-;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3221:23;;;:12;;;:23;;;;;:36;;;2917:398;3393:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;;;1628:200:12;1696:20;1708:7;1696:11;:20::i;:::-;1737:19;;;;:10;:19;;;;;1731:33;;;;;:::i;:::-;:38;;-1:-1:-1;1727:95:12;;1792:19;;;;:10;:19;;;;;1785:26;;;:::i;8179:108:7:-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;1197:214:12:-;1296:16;1304:7;1296;:16::i;:::-;1288:75;;;;-1:-1:-1;;;1288:75:12;;28315:2:22;1288:75:12;;;28297:21:22;28354:2;28334:18;;;28327:30;28393:34;28373:18;;;28366:62;-1:-1:-1;;;28444:18:22;;;28437:44;28498:19;;1288:75:12;28113:410:22;1288:75:12;1373:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;1242:267:2:-;1400:1;1386:11;:15;1378:24;;;;;;1412:30;;;;:21;:30;;;;;;;;:41;;-1:-1:-1;;;;;;1412:41:2;-1:-1:-1;;;;;1412:41:2;;;;;;;;;;;1463:16;:25;;;;:39;1242:267::o;4328:118:21:-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;:::i;:::-;;;;;;;;;4414:25;;4328:118;;;;:::o;11797:778:7:-;11947:4;-1:-1:-1;;;;;11967:13:7;;1034:20:15;1080:8;11963:606:7;;12002:72;;-1:-1:-1;;;12002:72:7;;-1:-1:-1;;;;;12002:36:7;;;;;:72;;666:10:16;;12053:4:7;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:7;;;;;;;;-1:-1:-1;;12002:72:7;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:7;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:7;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:7;-1:-1:-1;;;12124:51:7;;-1:-1:-1;12117:58:7;;11963:606;-1:-1:-1;12554:4:7;11797:778;;;;;;:::o;2348:107:1:-;2400:13;2432:16;2425:23;;;;;:::i;2744:329:7:-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;-1:-1:-1;;;2842:76:7;;29478:2:22;2842:76:7;;;29460:21:22;29517:2;29497:18;;;29490:30;29556:34;29536:18;;;29529:62;-1:-1:-1;;;29607:18:22;;;29600:45;29662:19;;2842:76:7;29276:411:22;2842:76:7;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2973:93;2744:329;-1:-1:-1;;;2744:329:7:o;910:222:11:-;1012:4;-1:-1:-1;;;;;;1035:50:11;;-1:-1:-1;;;1035:50:11;;:90;;;1089:36;1113:11;1089:23;:36::i;2544:572::-;-1:-1:-1;;;;;2743:18:11;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:11;:4;-1:-1:-1;;;;;2838:10:11;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:11;;2931:179;;2967:45;3004:7;2967:36;:45::i;2931:179::-;3039:4;-1:-1:-1;;;;;3033:10:11;:2;-1:-1:-1;;;;;3033:10:11;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;1535:441:18:-;1610:13;1635:19;1667:10;1671:6;1667:1;:10;:::i;:::-;:14;;1680:1;1667:14;:::i;:::-;1657:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1657:25:18;;1635:47;;-1:-1:-1;;;1692:6:18;1699:1;1692:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1692:15:18;;;;;;;;;-1:-1:-1;;;1717:6:18;1724:1;1717:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1717:15:18;;;;;;;;-1:-1:-1;1747:9:18;1759:10;1763:6;1759:1;:10;:::i;:::-;:14;;1772:1;1759:14;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;-1:-1:-1;;;1826:5:18;1834:3;1826:11;1813:25;;;;;;;:::i;:::-;;;;1801:6;1808:1;1801:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1801:37:18;;;;;;;;-1:-1:-1;1862:1:18;1852:11;;;;;1782:3;;;:::i;:::-;;;1742:132;;;-1:-1:-1;1891:10:18;;1883:55;;;;-1:-1:-1;;;1883:55:18;;30035:2:22;1883:55:18;;;30017:21:22;;;30054:18;;;30047:30;30113:34;30093:18;;;30086:62;30165:18;;1883:55:18;29833:356:22;9730:348:7;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9839:48;9860:5;9875:1;9879:7;9839:20;:48::i;:::-;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:7;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:7;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;;;;;9996:23:7;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:7;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;8508:311::-;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:7;;;;;;;:::i;275:703:18:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:18;;;;;;;;;;;;-1:-1:-1;;;574:10:18;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:18;;-1:-1:-1;720:2:18;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:18;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:18;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:18;;;;;;;;-1:-1:-1;919:11:18;928:2;919:11;;:::i;:::-;;;791:150;;1496:300:7;1598:4;-1:-1:-1;;;;;;1633:40:7;;-1:-1:-1;;;1633:40:7;;:104;;-1:-1:-1;;;;;;;1689:48:7;;-1:-1:-1;;;1689:48:7;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:19;;;1753:36:7;763:155:19;4600:970:11;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:11;;;5070:323;;-1:-1:-1;;;;;5140:18:11;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:11;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:11;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:11;;6107:46;;6552:26;;;;;;:::i;:::-;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:11;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:11:o;9141:372:7:-;-1:-1:-1;;;;;9220:16:7;;9212:61;;;;-1:-1:-1;;;9212:61:7;;30513:2:22;9212:61:7;;;30495:21:22;;;30532:18;;;30525:30;30591:34;30571:18;;;30564:62;30643:18;;9212:61:7;30311:356:22;9212:61:7;9292:16;9300:7;9292;:16::i;:::-;9291:17;9283:58;;;;-1:-1:-1;;;9283:58:7;;30874:2:22;9283:58:7;;;30856:21:22;30913:2;30893:18;;;30886:30;30952;30932:18;;;30925:58;31000:18;;9283:58:7;30672:352:22;9283:58:7;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:7;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:7;-1:-1:-1;;;;;9436:21:7;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:22;-1:-1:-1;;;;;;88:32:22;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:22;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:22;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:22:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:22;;1343:180;-1:-1:-1;1343:180:22:o;1736:131::-;-1:-1:-1;;;;;1811:31:22;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:22:o;2192:435::-;2245:3;2283:5;2277:12;2310:6;2305:3;2298:19;2336:4;2365:2;2360:3;2356:12;2349:19;;2402:2;2395:5;2391:14;2423:1;2433:169;2447:6;2444:1;2441:13;2433:169;;;2508:13;;2496:26;;2542:12;;;;2577:15;;;;2469:1;2462:9;2433:169;;;-1:-1:-1;2618:3:22;;2192:435;-1:-1:-1;;;;;2192:435:22:o;2632:261::-;2811:2;2800:9;2793:21;2774:4;2831:56;2883:2;2872:9;2868:18;2860:6;2831:56;:::i;3262:456::-;3339:6;3347;3355;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;3463:9;3450:23;3482:31;3507:5;3482:31;:::i;:::-;3532:5;-1:-1:-1;3589:2:22;3574:18;;3561:32;3602:33;3561:32;3602:33;:::i;:::-;3262:456;;3654:7;;-1:-1:-1;;;3708:2:22;3693:18;;;;3680:32;;3262:456::o;3908:248::-;3976:6;3984;4037:2;4025:9;4016:7;4012:23;4008:32;4005:52;;;4053:1;4050;4043:12;4005:52;-1:-1:-1;;4076:23:22;;;4146:2;4131:18;;;4118:32;;-1:-1:-1;3908:248:22:o;4440:315::-;4508:6;4516;4569:2;4557:9;4548:7;4544:23;4540:32;4537:52;;;4585:1;4582;4575:12;4537:52;4621:9;4608:23;4598:33;;4681:2;4670:9;4666:18;4653:32;4694:31;4719:5;4694:31;:::i;:::-;4744:5;4734:15;;;4440:315;;;;;:::o;4760:127::-;4821:10;4816:3;4812:20;4809:1;4802:31;4852:4;4849:1;4842:15;4876:4;4873:1;4866:15;4892:275;4963:2;4957:9;5028:2;5009:13;;-1:-1:-1;;5005:27:22;4993:40;;5063:18;5048:34;;5084:22;;;5045:62;5042:88;;;5110:18;;:::i;:::-;5146:2;5139:22;4892:275;;-1:-1:-1;4892:275:22:o;5172:407::-;5237:5;5271:18;5263:6;5260:30;5257:56;;;5293:18;;:::i;:::-;5331:57;5376:2;5355:15;;-1:-1:-1;;5351:29:22;5382:4;5347:40;5331:57;:::i;:::-;5322:66;;5411:6;5404:5;5397:21;5451:3;5442:6;5437:3;5433:16;5430:25;5427:45;;;5468:1;5465;5458:12;5427:45;5517:6;5512:3;5505:4;5498:5;5494:16;5481:43;5571:1;5564:4;5555:6;5548:5;5544:18;5540:29;5533:40;5172:407;;;;;:::o;5584:222::-;5627:5;5680:3;5673:4;5665:6;5661:17;5657:27;5647:55;;5698:1;5695;5688:12;5647:55;5720:80;5796:3;5787:6;5774:20;5767:4;5759:6;5755:17;5720:80;:::i;5811:156::-;5877:20;;5937:4;5926:16;;5916:27;;5906:55;;5957:1;5954;5947:12;5906:55;5811:156;;;:::o;5972:884::-;6101:6;6109;6117;6125;6133;6141;6149;6202:3;6190:9;6181:7;6177:23;6173:33;6170:53;;;6219:1;6216;6209:12;6170:53;6258:9;6245:23;6277:31;6302:5;6277:31;:::i;:::-;6327:5;-1:-1:-1;6383:2:22;6368:18;;6355:32;6410:18;6399:30;;6396:50;;;6442:1;6439;6432:12;6396:50;6465;6507:7;6498:6;6487:9;6483:22;6465:50;:::i;:::-;6455:60;;;6567:2;6556:9;6552:18;6539:32;6580:33;6605:7;6580:33;:::i;:::-;6632:7;-1:-1:-1;6686:2:22;6671:18;;6658:32;;-1:-1:-1;6709:37:22;6741:3;6726:19;;6709:37;:::i;:::-;6699:47;;6793:3;6782:9;6778:19;6765:33;6755:43;;6845:3;6834:9;6830:19;6817:33;6807:43;;5972:884;;;;;;;;;;:::o;6861:943::-;6914:5;6967:3;6960:4;6952:6;6948:17;6944:27;6934:55;;6985:1;6982;6975:12;6934:55;7021:6;7008:20;7047:4;7070:18;7107:2;7103;7100:10;7097:36;;;7113:18;;:::i;:::-;7159:2;7156:1;7152:10;7182:28;7206:2;7202;7198:11;7182:28;:::i;:::-;7244:15;;;7314;;;7310:24;;;7275:12;;;;7346:15;;;7343:35;;;7374:1;7371;7364:12;7343:35;7410:2;7402:6;7398:15;7387:26;;7422:353;7438:6;7433:3;7430:15;7422:353;;;7524:3;7511:17;7560:2;7547:11;7544:19;7541:109;;;7604:1;7633:2;7629;7622:14;7541:109;7675:57;7728:3;7723:2;7709:11;7701:6;7697:24;7693:33;7675:57;:::i;:::-;7663:70;;-1:-1:-1;7455:12:22;;;;7753;;;;7422:353;;;7793:5;6861:943;-1:-1:-1;;;;;;;;6861:943:22:o;7809:710::-;7938:6;7946;7954;7962;8015:3;8003:9;7994:7;7990:23;7986:33;7983:53;;;8032:1;8029;8022:12;7983:53;8071:9;8058:23;8090:31;8115:5;8090:31;:::i;:::-;8140:5;-1:-1:-1;8196:2:22;8181:18;;8168:32;8223:18;8212:30;;8209:50;;;8255:1;8252;8245:12;8209:50;8278:60;8330:7;8321:6;8310:9;8306:22;8278:60;:::i;:::-;8268:70;;;8390:2;8379:9;8375:18;8362:32;8403:33;8428:7;8403:33;:::i;:::-;7809:710;;;;-1:-1:-1;8455:7:22;;8509:2;8494:18;8481:32;;-1:-1:-1;;7809:710:22:o;8524:247::-;8583:6;8636:2;8624:9;8615:7;8611:23;8607:32;8604:52;;;8652:1;8649;8642:12;8604:52;8691:9;8678:23;8710:31;8735:5;8710:31;:::i;8776:919::-;8930:6;8938;8946;8954;8962;8970;8978;9031:3;9019:9;9010:7;9006:23;9002:33;8999:53;;;9048:1;9045;9038:12;8999:53;9087:9;9074:23;9106:31;9131:5;9106:31;:::i;:::-;9156:5;-1:-1:-1;9212:2:22;9197:18;;9184:32;9239:18;9228:30;;9225:50;;;9271:1;9268;9261:12;9225:50;9294:60;9346:7;9337:6;9326:9;9322:22;9294:60;:::i;9953:416::-;10018:6;10026;10079:2;10067:9;10058:7;10054:23;10050:32;10047:52;;;10095:1;10092;10085:12;10047:52;10134:9;10121:23;10153:31;10178:5;10153:31;:::i;:::-;10203:5;-1:-1:-1;10260:2:22;10245:18;;10232:32;10302:15;;10295:23;10283:36;;10273:64;;10333:1;10330;10323:12;10374:795;10469:6;10477;10485;10493;10546:3;10534:9;10525:7;10521:23;10517:33;10514:53;;;10563:1;10560;10553:12;10514:53;10602:9;10589:23;10621:31;10646:5;10621:31;:::i;:::-;10671:5;-1:-1:-1;10728:2:22;10713:18;;10700:32;10741:33;10700:32;10741:33;:::i;:::-;10793:7;-1:-1:-1;10847:2:22;10832:18;;10819:32;;-1:-1:-1;10902:2:22;10887:18;;10874:32;10929:18;10918:30;;10915:50;;;10961:1;10958;10951:12;10915:50;10984:22;;11037:4;11029:13;;11025:27;-1:-1:-1;11015:55:22;;11066:1;11063;11056:12;11015:55;11089:74;11155:7;11150:2;11137:16;11132:2;11128;11124:11;11089:74;:::i;:::-;11079:84;;;10374:795;;;;;;;:::o;11174:469::-;11235:3;11273:5;11267:12;11300:6;11295:3;11288:19;11326:4;11355:2;11350:3;11346:12;11339:19;;11392:2;11385:5;11381:14;11413:1;11423:195;11437:6;11434:1;11431:13;11423:195;;;11502:13;;-1:-1:-1;;;;;11498:39:22;11486:52;;11558:12;;;;11593:15;;;;11534:1;11452:9;11423:195;;11648:285;11843:2;11832:9;11825:21;11806:4;11863:64;11923:2;11912:9;11908:18;11900:6;11863:64;:::i;11938:489::-;12211:2;12200:9;12193:21;12174:4;12237:64;12297:2;12286:9;12282:18;12274:6;12237:64;:::i;:::-;12349:9;12341:6;12337:22;12332:2;12321:9;12317:18;12310:50;12377:44;12414:6;12406;12377:44;:::i;:::-;12369:52;11938:489;-1:-1:-1;;;;;11938:489:22:o;12432:675::-;12536:6;12544;12552;12560;12613:3;12601:9;12592:7;12588:23;12584:33;12581:53;;;12630:1;12627;12620:12;12581:53;12669:9;12656:23;12688:31;12713:5;12688:31;:::i;:::-;12738:5;-1:-1:-1;12794:2:22;12779:18;;12766:32;12821:18;12810:30;;12807:50;;;12853:1;12850;12843:12;12807:50;12876;12918:7;12909:6;12898:9;12894:22;12876:50;:::i;13112:388::-;13180:6;13188;13241:2;13229:9;13220:7;13216:23;13212:32;13209:52;;;13257:1;13254;13247:12;13209:52;13296:9;13283:23;13315:31;13340:5;13315:31;:::i;:::-;13365:5;-1:-1:-1;13422:2:22;13407:18;;13394:32;13435:33;13394:32;13435:33;:::i;13505:380::-;13584:1;13580:12;;;;13627;;;13648:61;;13702:4;13694:6;13690:17;13680:27;;13648:61;13755:2;13747:6;13744:14;13724:18;13721:38;13718:161;;;13801:10;13796:3;13792:20;13789:1;13782:31;13836:4;13833:1;13826:15;13864:4;13861:1;13854:15;13718:161;;13505:380;;;:::o;15130:341::-;15332:2;15314:21;;;15371:2;15351:18;;;15344:30;-1:-1:-1;;;15405:2:22;15390:18;;15383:47;15462:2;15447:18;;15130:341::o;15476:127::-;15537:10;15532:3;15528:20;15525:1;15518:31;15568:4;15565:1;15558:15;15592:4;15589:1;15582:15;15608:413;15810:2;15792:21;;;15849:2;15829:18;;;15822:30;15888:34;15883:2;15868:18;;15861:62;-1:-1:-1;;;15954:2:22;15939:18;;15932:47;16011:3;15996:19;;15608:413::o;17268:403::-;17470:2;17452:21;;;17509:2;17489:18;;;17482:30;17548:34;17543:2;17528:18;;17521:62;-1:-1:-1;;;17614:2:22;17599:18;;17592:37;17661:3;17646:19;;17268:403::o;17676:352::-;17878:2;17860:21;;;17917:2;17897:18;;;17890:30;17956;17951:2;17936:18;;17929:58;18019:2;18004:18;;17676:352::o;18033:404::-;18235:2;18217:21;;;18274:2;18254:18;;;18247:30;18313:34;18308:2;18293:18;;18286:62;-1:-1:-1;;;18379:2:22;18364:18;;18357:38;18427:3;18412:19;;18033:404::o;19916:401::-;20118:2;20100:21;;;20157:2;20137:18;;;20130:30;20196:34;20191:2;20176:18;;20169:62;-1:-1:-1;;;20262:2:22;20247:18;;20240:35;20307:3;20292:19;;19916:401::o;21087:127::-;21148:10;21143:3;21139:20;21136:1;21129:31;21179:4;21176:1;21169:15;21203:4;21200:1;21193:15;21219:128;21259:3;21290:1;21286:6;21283:1;21280:13;21277:39;;;21296:18;;:::i;:::-;-1:-1:-1;21332:9:22;;21219:128::o;21352:168::-;21392:7;21458:1;21454;21450:6;21446:14;21443:1;21440:21;21435:1;21428:9;21421:17;21417:45;21414:71;;;21465:18;;:::i;:::-;-1:-1:-1;21505:9:22;;21352:168::o;22753:125::-;22793:4;22821:1;22818;22815:8;22812:34;;;22826:18;;:::i;:::-;-1:-1:-1;22863:9:22;;22753:125::o;22883:127::-;22944:10;22939:3;22935:20;22932:1;22925:31;22975:4;22972:1;22965:15;22999:4;22996:1;22989:15;23015:120;23055:1;23081;23071:35;;23086:18;;:::i;:::-;-1:-1:-1;23120:9:22;;23015:120::o;23556:404::-;23806:1;23802;23797:3;23793:11;23789:19;23781:6;23777:32;23766:9;23759:51;23846:6;23841:2;23830:9;23826:18;23819:34;23889:2;23884;23873:9;23869:18;23862:30;23740:4;23909:45;23950:2;23939:9;23935:18;23927:6;23909:45;:::i;23965:370::-;24122:3;24160:6;24154:13;24176:53;24222:6;24217:3;24210:4;24202:6;24198:17;24176:53;:::i;:::-;24251:16;;;;24276:21;;;-1:-1:-1;24324:4:22;24313:16;;23965:370;-1:-1:-1;23965:370:22:o;24743:135::-;24782:3;-1:-1:-1;;24803:17:22;;24800:43;;;24823:18;;:::i;:::-;-1:-1:-1;24870:1:22;24859:13;;24743:135::o;24883:990::-;25117:4;25165:2;25154:9;25150:18;25224:1;25220;25215:3;25211:11;25207:19;25199:6;25195:32;25184:9;25177:51;25247:2;25285:6;25280:2;25269:9;25265:18;25258:34;25328:2;25323;25312:9;25308:18;25301:30;25351:6;25386;25380:13;25417:6;25409;25402:22;25455:3;25444:9;25440:19;25433:26;;25518:3;25508:6;25505:1;25501:14;25490:9;25486:30;25482:40;25468:54;;25557:2;25549:6;25545:15;25578:1;25588:256;25602:6;25599:1;25596:13;25588:256;;;25695:3;25691:8;25679:9;25671:6;25667:22;25663:37;25658:3;25651:50;25724:40;25757:6;25748;25742:13;25724:40;:::i;:::-;25714:50;-1:-1:-1;25822:12:22;;;;25787:15;;;;25624:1;25617:9;25588:256;;;-1:-1:-1;25861:6:22;;24883:990;-1:-1:-1;;;;;;;;;24883:990:22:o;25878:414::-;26080:2;26062:21;;;26119:2;26099:18;;;26092:30;26158:34;26153:2;26138:18;;26131:62;-1:-1:-1;;;26224:2:22;26209:18;;26202:48;26282:3;26267:19;;25878:414::o;26715:470::-;26894:3;26932:6;26926:13;26948:53;26994:6;26989:3;26982:4;26974:6;26970:17;26948:53;:::i;:::-;27064:13;;27023:16;;;;27086:57;27064:13;27023:16;27120:4;27108:17;;27086:57;:::i;:::-;27159:20;;26715:470;-1:-1:-1;;;;26715:470:22:o;27190:786::-;27601:25;27596:3;27589:38;27571:3;27656:6;27650:13;27672:62;27727:6;27722:2;27717:3;27713:12;27706:4;27698:6;27694:17;27672:62;:::i;:::-;-1:-1:-1;;;27793:2:22;27753:16;;;27785:11;;;27778:40;27843:13;;27865:63;27843:13;27914:2;27906:11;;27899:4;27887:17;;27865:63;:::i;:::-;27948:17;27967:2;27944:26;;27190:786;-1:-1:-1;;;;27190:786:22:o;27981:127::-;28042:10;28037:3;28033:20;28030:1;28023:31;28073:4;28070:1;28063:15;28097:4;28094:1;28087:15;28528:489;-1:-1:-1;;;;;28797:15:22;;;28779:34;;28849:15;;28844:2;28829:18;;28822:43;28896:2;28881:18;;28874:34;;;28944:3;28939:2;28924:18;;28917:31;;;28722:4;;28965:46;;28991:19;;28983:6;28965:46;:::i;:::-;28957:54;28528:489;-1:-1:-1;;;;;;28528:489:22:o;29022:249::-;29091:6;29144:2;29132:9;29123:7;29119:23;29115:32;29112:52;;;29160:1;29157;29150:12;29112:52;29192:9;29186:16;29211:30;29235:5;29211:30;:::i;29692:136::-;29731:3;29759:5;29749:39;;29768:18;;:::i;:::-;-1:-1:-1;;;29804:18:22;;29692:136::o;30194:112::-;30226:1;30252;30242:35;;30257:18;;:::i;:::-;-1:-1:-1;30291:9:22;;30194:112::o
Swarm Source
ipfs://606db5d0dc39db20f099895df72fd51cc9cf17191057735e6597bbb5e2bd5ea9
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.