ERC-721
Overview
Max Total Supply
70 QC
Holders
66
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 QCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
QuotesCollection
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-06 */ 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; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { address addr; uint64 startTimestamp; bool burned; uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); /** * @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); /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @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); /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; uint256 private constant BITPOS_NUMBER_MINTED = 64; uint256 private constant BITPOS_NUMBER_BURNED = 128; uint256 private constant BITPOS_AUX = 192; uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; uint256 private constant BITPOS_START_TIMESTAMP = 160; uint256 private constant BITMASK_BURNED = 1 << 224; uint256 private constant BITPOS_NEXT_INITIALIZED = 225; uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; uint256 private constant BITPOS_EXTRA_DATA = 232; uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; uint256 private _currentIndex; uint256 private _burnCounter; string private _name; string private _symbol; mapping(uint256 => uint256) private _packedOwnerships; mapping(address => uint256) private _packedAddressData; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; if (packed & BITMASK_BURNED == 0) { while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { owner := and(owner, BITMASK_ADDRESS) result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { assembly { result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); unchecked { _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); unchecked { _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; assembly { mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { from := and(from, BITMASK_ADDRESS) msgSender := and(msgSender, BITMASK_ADDRESS) result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); assembly { if approvedAddress { sstore(approvedAddressSlot, 0) } } unchecked { --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; if (_packedOwnerships[nextTokenId] == 0) { if (nextTokenId != _currentIndex) { _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); assembly { if approvedAddress { sstore(approvedAddressSlot, 0) } } unchecked { _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; if (_packedOwnerships[nextTokenId] == 0) { if (nextTokenId != _currentIndex) { _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { ptr := add(mload(0x40), 128) mstore(0x40, ptr) let end := ptr for { let temp := value ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { temp := div(temp, 10) } { ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) ptr := sub(ptr, 32) mstore(ptr, length) } } } /** ______ ____ ______ ___ ______ ____ ____ __ ___ ____ / ____// __ \ / ____// | /_ __// __ \ / __ \ / / / | / __ ) / / / /_/ // __/ / /| | / / / / / // /_/ // / / /| | / __ | / /___ / _, _// /___ / ___ | / / / /_/ // _, _// /___ / ___ | / /_/ / \____//_/ |_|/_____//_/ |_|/_/ \____//_/ |_|/_____//_/ |_|/_____/ */ pragma solidity ^0.8.4; contract QuotesCollection is Ownable, ERC721A { string public constant uriSuffix = ".json"; uint256 public constant collectionSize = 88; uint256 public constant maxPerAddressDuringMint = 4; string private _baseTokenURI = "ipfs://QmP7u1MSxSgTW5ndsz3apjktLtehKjUBfQ1uxKnA5L7ukm/"; uint256 public amountForDevs = 8; uint32 public allowListSaleStartTime = 1656648000; uint256 public allowListPrice = 0 ether; uint256 public amountForAllowList = 10; uint32 public publicSaleStartTime = 1656648000; uint256 public publicPrice = 0 ether; uint256 public amountForPublic = 70; mapping(address => uint256) public allowlist; constructor() ERC721A("QuotesCollection", "QC") {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function devMint(uint256 quantity_) external onlyOwner { uint256 maxPerAddressDuringMint_ = maxPerAddressDuringMint; uint256 amountForDevs_ = amountForDevs; require( quantity_ <= amountForDevs_, "The quantity exceeds the remaining amount for Dev Mint." ); require( quantity_ % maxPerAddressDuringMint_ == 0, "Can only dev mint a multiple of the maxPerAddressDuringMint" ); amountForDevs = amountForDevs_ - quantity_; uint256 numChunks = quantity_ / maxPerAddressDuringMint_; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxPerAddressDuringMint_); } } function setAmountForDevs(uint256 amountForDevs_) external onlyOwner { require( amountForDevs_ % maxPerAddressDuringMint == 0, "Amount for Dev Mint must be a multiple of the maxPerAddressDuringMint" ); require( _totalMinted() + amountForDevs_ + amountForAllowList + amountForPublic <= collectionSize, "The total amount set up for all minting cannot exceed collectionSize." ); amountForDevs = amountForDevs_; } function allowlistMint(uint256 quantity_) external payable callerIsUser { uint256 allowListSaleStartTime_ = uint256(allowListSaleStartTime); require( block.timestamp >= allowListSaleStartTime_, "White List sale has not begun yet or has ended" ); uint256 amountForAllowList_ = amountForAllowList; require( quantity_ <= amountForAllowList_, "The quantity exceeds the remaining amount for White List Mint." ); require( quantity_ <= maxPerAddressDuringMint, "Can not mint more than maxPerAddressDuringMint" ); uint256 remainingQty_ = allowlist[msg.sender]; require( remainingQty_ > 0, "User is not eligible for White List Mint" ); require( quantity_ <= remainingQty_, "User can not mint more than allowed quantity" ); amountForAllowList = amountForAllowList_ - quantity_; remainingQty_ = remainingQty_ - quantity_; if (remainingQty_ == 0) { delete allowlist[msg.sender]; } else { allowlist[msg.sender] = remainingQty_; } uint256 allowListPrice_ = uint256(allowListPrice); _refundIfOver(allowListPrice_ * quantity_); _safeMint(msg.sender, quantity_); } function setAllowListPrice(uint256 allowListPriceWei_) external onlyOwner { allowListPrice = allowListPriceWei_; } function setAllowListSaleStartTime(uint32 timestamp_) external onlyOwner { allowListSaleStartTime = timestamp_; } function setAmountForAllowList(uint256 amountForAllowList_) external onlyOwner { require( _totalMinted() + amountForAllowList_ + amountForDevs + amountForPublic <= collectionSize, "The total amount set up for all minting cannot exceed collectionSize." ); amountForAllowList = amountForAllowList_; } function seedAllowlist( address[] memory addresses_, uint256[] memory numSlots_ ) external onlyOwner { require( addresses_.length == numSlots_.length, "addresses does not match numSlots length" ); for (uint256 i = 0; i < addresses_.length; i++) { allowlist[addresses_[i]] = numSlots_[i]; } } function publicSaleMint(uint256 quantity_) external payable callerIsUser { uint256 publicSaleStartTime_ = uint256(publicSaleStartTime); require( block.timestamp >= publicSaleStartTime_, "Public sale has not begun yet or has ended" ); uint256 amountForPublic_ = amountForPublic; require( quantity_ <= amountForPublic_, "The quantity exceeds the remaining amount for Public Mint." ); require( quantity_ <= maxPerAddressDuringMint, "Can not mint more than maxPerAddressDuringMint" ); amountForPublic = amountForPublic_ - quantity_; uint256 publicPrice_ = uint256(publicPrice); _refundIfOver(publicPrice_ * quantity_); _safeMint(msg.sender, quantity_); } function setPublicPrice(uint256 publicPriceWei_) external onlyOwner { publicPrice = publicPriceWei_; } function setPublicSaleStartTime(uint32 timestamp_) external onlyOwner { publicSaleStartTime = timestamp_; } function setAmountForPublic(uint256 amountForPublic_) external onlyOwner { require( _totalMinted() + amountForPublic_ + amountForDevs + amountForAllowList <= collectionSize, "The total amount set up for all minting cannot exceed collectionSize." ); amountForPublic = amountForPublic_; } function _refundIfOver(uint256 price_) private { require(msg.value >= price_, "Need to send more ETH."); if (msg.value > price_) { payable(msg.sender).transfer(msg.value - price_); } } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { require( _exists(tokenId_), "ERC721AMetadata: URI query for nonexistant token" ); string memory currentBaseURI_ = _baseURI(); return bytes(currentBaseURI_).length > 0 ? string( abi.encodePacked( currentBaseURI_, _toString(tokenId_), uriSuffix ) ) : ""; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI_) external onlyOwner { _baseTokenURI = baseURI_; } function withdrawMoney(uint256 amount_) external onlyOwner { require( address(this).balance >= amount_, "Address: insufficient balance" ); (bool toCreatorLab, ) = payable(0x2655B531038E9286616fD92a13B4D00219E1Bb36).call{value: (amount_ * 2 ) / 100}(""); require(toCreatorLab); (bool success, ) = msg.sender.call{value: (amount_ * 98) / 100}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"devMint","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"numSlots_","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"allowListPriceWei_","type":"uint256"}],"name":"setAllowListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp_","type":"uint32"}],"name":"setAllowListSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountForAllowList_","type":"uint256"}],"name":"setAmountForAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"name":"setAmountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountForPublic_","type":"uint256"}],"name":"setAmountForPublic","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei_","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp_","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526036608081815290620027bf60a0398051620000299160099160209091019062000162565b506008600a908155600b80546362be714063ffffffff1991821681179092556000600c819055600d93909355600e80549091169091179055600f5560466010553480156200007657600080fd5b506040518060400160405280601081526020016f28bab7ba32b9a1b7b63632b1ba34b7b760811b81525060405180604001604052806002815260200161514360f01b815250620000d5620000cf6200010e60201b60201c565b62000112565b8151620000ea90600390602085019062000162565b5080516200010090600490602084019062000162565b505060006001555062000245565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001709062000208565b90600052602060002090601f016020900481019282620001945760008555620001df565b82601f10620001af57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df578251825591602001919060010190620001c2565b50620001ed929150620001f1565b5090565b5b80821115620001ed5760008155600101620001f2565b600181811c908216806200021d57607f821691505b602082108114156200023f57634e487b7160e01b600052602260045260246000fd5b50919050565b61256a80620002556000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b05863d5116100b6578063c87b56dd1161007a578063c87b56dd146106a6578063d3d0fbda146106c6578063e985e9c5146106e6578063f2fde38b1461072f578063f9c287fd1461074f578063fbe1aa511461076557600080fd5b8063b05863d514610620578063b3ab66b014610640578063b88d4fde14610653578063c180526a14610673578063c62752551461068657600080fd5b806395d89b41116100fd57806395d89b4114610592578063a22cb465146105a7578063a24e5153146105c7578063a7cd52cb146105dd578063a945bf801461060a57600080fd5b806370a0823114610514578063715018a6146105345780638626eb18146105495780638bc35c2f1461055f5780638da5cb5b1461057457600080fd5b806353365674116101c75780636352211e1161018b5780636352211e1461047757806363e53ebc1461049757806367aa372e146104b75780636bb7b1d9146104d75780636df9fa88146104f457600080fd5b806353365674146103c657806354876921146103e65780635503a0e81461040657806355f804b3146104375780635fd84c281461045757600080fd5b806323b872dd1161020e57806323b872dd1461031f578063375a069a1461033f57806342842e0e1461035f57806345c0f5331461037f5780634f2b654c1461039457600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e00565b61077b565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107cd565b6040516102779190611e75565b3480156102ae57600080fd5b506102c26102bd366004611e88565b61085f565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ebd565b6108a3565b005b34801561030857600080fd5b50600254600154035b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004611ee7565b610943565b34801561034b57600080fd5b506102fa61035a366004611e88565b610ad4565b34801561036b57600080fd5b506102fa61037a366004611ee7565b610c49565b34801561038b57600080fd5b50610311605881565b3480156103a057600080fd5b50600b546103b19063ffffffff1681565b60405163ffffffff9091168152602001610277565b3480156103d257600080fd5b506102fa6103e1366004611e88565b610c69565b3480156103f257600080fd5b506102fa610401366004611e88565b610ce6565b34801561041257600080fd5b5061029560405180604001604052806005815260200164173539b7b760d91b81525081565b34801561044357600080fd5b506102fa610452366004611f23565b610e7c565b34801561046357600080fd5b506102fa610472366004611f95565b610eb2565b34801561048357600080fd5b506102c2610492366004611e88565b610ef8565b3480156104a357600080fd5b506102fa6104b2366004611f95565b610f03565b3480156104c357600080fd5b506102fa6104d2366004611e88565b610f49565b3480156104e357600080fd5b50600e546103b19063ffffffff1681565b34801561050057600080fd5b506102fa61050f366004611e88565b610fc6565b34801561052057600080fd5b5061031161052f366004611fbb565b610ff5565b34801561054057600080fd5b506102fa611044565b34801561055557600080fd5b50610311600d5481565b34801561056b57600080fd5b50610311600481565b34801561058057600080fd5b506000546001600160a01b03166102c2565b34801561059e57600080fd5b5061029561107a565b3480156105b357600080fd5b506102fa6105c2366004611fd6565b611089565b3480156105d357600080fd5b50610311600c5481565b3480156105e957600080fd5b506103116105f8366004611fbb565b60116020526000908152604090205481565b34801561061657600080fd5b50610311600f5481565b34801561062c57600080fd5b506102fa61063b3660046120e8565b61111f565b6102fa61064e366004611e88565b611226565b34801561065f57600080fd5b506102fa61066e3660046121a8565b6113ad565b6102fa610681366004611e88565b6113f1565b34801561069257600080fd5b506102fa6106a1366004611e88565b61167d565b3480156106b257600080fd5b506102956106c1366004611e88565b6116ac565b3480156106d257600080fd5b506102fa6106e1366004611e88565b611797565b3480156106f257600080fd5b5061026b610701366004612268565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561073b57600080fd5b506102fa61074a366004611fbb565b6118a0565b34801561075b57600080fd5b5061031160105481565b34801561077157600080fd5b50610311600a5481565b60006301ffc9a760e01b6001600160e01b0319831614806107ac57506380ac58cd60e01b6001600160e01b03198316145b806107c75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107dc9061229b565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061229b565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261193b565b610887576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ae82610ef8565b9050336001600160a01b038216146108e7576108ca8133610701565b6108e7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061094e82611963565b9050836001600160a01b0316816001600160a01b0316146109815760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109ce576109b18633610701565b6109ce57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109f557604051633a954ecd60e21b815260040160405180910390fd5b8015610a0057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a8b5760018401600081815260056020526040902054610a89576001548114610a895760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610b075760405162461bcd60e51b8152600401610afe906122d6565b60405180910390fd5b600a5460049080831115610b835760405162461bcd60e51b815260206004820152603760248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f7220446576204d696e742e0000000000000000006064820152608401610afe565b610b8d8284612321565b15610c005760405162461bcd60e51b815260206004820152603b60248201527f43616e206f6e6c7920646576206d696e742061206d756c7469706c65206f662060448201527f746865206d617850657241646472657373447572696e674d696e7400000000006064820152608401610afe565b610c0a838261234b565b600a556000610c198385612362565b905060005b81811015610c4257610c3033856119c4565b80610c3a81612376565b915050610c1e565b5050505050565b610c64838383604051806020016040528060008152506113ad565b505050565b6000546001600160a01b03163314610c935760405162461bcd60e51b8152600401610afe906122d6565b6058600d54600a5483610ca560015490565b610caf9190612391565b610cb99190612391565b610cc39190612391565b1115610ce15760405162461bcd60e51b8152600401610afe906123a9565b601055565b6000546001600160a01b03163314610d105760405162461bcd60e51b8152600401610afe906122d6565b80471015610d605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610afe565b6000732655b531038e9286616fd92a13b4d00219e1bb366064610d84846002612414565b610d8e9190612362565b604051600081818185875af1925050503d8060008114610dca576040519150601f19603f3d011682016040523d82523d6000602084013e610dcf565b606091505b5050905080610ddd57600080fd5b6000336064610ded856062612414565b610df79190612362565b604051600081818185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610c645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610afe565b6000546001600160a01b03163314610ea65760405162461bcd60e51b8152600401610afe906122d6565b610c6460098383611d51565b6000546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610afe906122d6565b600e805463ffffffff191663ffffffff92909216919091179055565b60006107c782611963565b6000546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610afe906122d6565b600b805463ffffffff191663ffffffff92909216919091179055565b6000546001600160a01b03163314610f735760405162461bcd60e51b8152600401610afe906122d6565b6058601054600a5483610f8560015490565b610f8f9190612391565b610f999190612391565b610fa39190612391565b1115610fc15760405162461bcd60e51b8152600401610afe906123a9565b600d55565b6000546001600160a01b03163314610ff05760405162461bcd60e51b8152600401610afe906122d6565b600c55565b60006001600160a01b03821661101e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461106e5760405162461bcd60e51b8152600401610afe906122d6565b61107860006119e2565b565b6060600480546107dc9061229b565b6001600160a01b0382163314156110b35760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111495760405162461bcd60e51b8152600401610afe906122d6565b80518251146111ab5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610afe565b60005b8251811015610c64578181815181106111c9576111c9612433565b6020026020010151601160008584815181106111e7576111e7612433565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061121e90612376565b9150506111ae565b3233146112755760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610afe565b600e5463ffffffff16428111156112e15760405162461bcd60e51b815260206004820152602a60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574206f72604482015269081a185cc8195b99195960b21b6064820152608401610afe565b6010548083111561135a5760405162461bcd60e51b815260206004820152603a60248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f72205075626c6963204d696e742e0000000000006064820152608401610afe565b600483111561137b5760405162461bcd60e51b8152600401610afe90612449565b611385838261234b565b601055600f5461139d6113988583612414565b611a32565b6113a733856119c4565b50505050565b6113b8848484610943565b6001600160a01b0383163b156113a7576113d484848484611ab9565b6113a7576040516368d2bf6b60e11b815260040160405180910390fd5b3233146114405760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610afe565b600b5463ffffffff16428111156114b05760405162461bcd60e51b815260206004820152602e60248201527f5768697465204c6973742073616c6520686173206e6f7420626567756e20796560448201526d1d081bdc881a185cc8195b99195960921b6064820152608401610afe565b600d54808311156115295760405162461bcd60e51b815260206004820152603e60248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f72205768697465204c697374204d696e742e00006064820152608401610afe565b600483111561154a5760405162461bcd60e51b8152600401610afe90612449565b33600090815260116020526040902054806115b85760405162461bcd60e51b815260206004820152602860248201527f55736572206973206e6f7420656c696769626c6520666f72205768697465204c6044820152671a5cdd08135a5b9d60c21b6064820152608401610afe565b8084111561161d5760405162461bcd60e51b815260206004820152602c60248201527f557365722063616e206e6f74206d696e74206d6f7265207468616e20616c6c6f60448201526b776564207175616e7469747960a01b6064820152608401610afe565b611627848361234b565b600d55611634848261234b565b9050806116505733600090815260116020526040812055611663565b3360009081526011602052604090208190555b600c546116736113988683612414565b610c4233866119c4565b6000546001600160a01b031633146116a75760405162461bcd60e51b8152600401610afe906122d6565b600f55565b60606116b78261193b565b61171c5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba30b73a103a37b5b2b760811b6064820152608401610afe565b6000611726611bb0565b905060008151116117465760405180602001604052806000815250611790565b8061175084611bbf565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161178093929190612497565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c15760405162461bcd60e51b8152600401610afe906122d6565b6117cc600482612321565b1561184d5760405162461bcd60e51b815260206004820152604560248201527f416d6f756e7420666f7220446576204d696e74206d7573742062652061206d7560448201527f6c7469706c65206f6620746865206d617850657241646472657373447572696e60648201526419d35a5b9d60da1b608482015260a401610afe565b6058601054600d548361185f60015490565b6118699190612391565b6118739190612391565b61187d9190612391565b111561189b5760405162461bcd60e51b8152600401610afe906123a9565b600a55565b6000546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610afe906122d6565b6001600160a01b03811661192f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afe565b611938816119e2565b50565b6000600154821080156107c7575050600090815260056020526040902054600160e01b161590565b6000816001548110156119ab57600081815260056020526040902054600160e01b81166119a9575b8061179057506000190160008181526005602052604090205461198b565b505b604051636f96cda160e11b815260040160405180910390fd5b6119de828260405180602001604052806000815250611c0e565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611a7b5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610afe565b8034111561193857336108fc611a91833461234b565b6040518115909202916000818181858888f193505050501580156119de573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aee9033908990889088906004016124da565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b38575060408051601f3d908101601f19168201909252611b3591810190612517565b60015b611b93573d808015611b66576040519150601f19603f3d011682016040523d82523d6000602084013e611b6b565b606091505b508051611b8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107dc9061229b565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611bfc57600183039250600a81066030018353600a9004611bde565b50819003601f19909101908152919050565b611c188383611c74565b6001600160a01b0383163b15610c64576001548281035b611c426000868380600101945086611ab9565b611c5f576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c2f578160015414610c4257600080fd5b6001546001600160a01b038316611c9d57604051622e076360e81b815260040160405180910390fd5b81611cbb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d055760015550505050565b828054611d5d9061229b565b90600052602060002090601f016020900481019282611d7f5760008555611dc5565b82601f10611d985782800160ff19823516178555611dc5565b82800160010185558215611dc5579182015b82811115611dc5578235825591602001919060010190611daa565b50611dd1929150611dd5565b5090565b5b80821115611dd15760008155600101611dd6565b6001600160e01b03198116811461193857600080fd5b600060208284031215611e1257600080fd5b813561179081611dea565b60005b83811015611e38578181015183820152602001611e20565b838111156113a75750506000910152565b60008151808452611e61816020860160208601611e1d565b601f01601f19169290920160200192915050565b6020815260006117906020830184611e49565b600060208284031215611e9a57600080fd5b5035919050565b80356001600160a01b0381168114611eb857600080fd5b919050565b60008060408385031215611ed057600080fd5b611ed983611ea1565b946020939093013593505050565b600080600060608486031215611efc57600080fd5b611f0584611ea1565b9250611f1360208501611ea1565b9150604084013590509250925092565b60008060208385031215611f3657600080fd5b823567ffffffffffffffff80821115611f4e57600080fd5b818501915085601f830112611f6257600080fd5b813581811115611f7157600080fd5b866020828501011115611f8357600080fd5b60209290920196919550909350505050565b600060208284031215611fa757600080fd5b813563ffffffff8116811461179057600080fd5b600060208284031215611fcd57600080fd5b61179082611ea1565b60008060408385031215611fe957600080fd5b611ff283611ea1565b91506020830135801515811461200757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561205157612051612012565b604052919050565b600067ffffffffffffffff82111561207357612073612012565b5060051b60200190565b600082601f83011261208e57600080fd5b813560206120a361209e83612059565b612028565b82815260059290921b840181019181810190868411156120c257600080fd5b8286015b848110156120dd57803583529183019183016120c6565b509695505050505050565b600080604083850312156120fb57600080fd5b823567ffffffffffffffff8082111561211357600080fd5b818501915085601f83011261212757600080fd5b8135602061213761209e83612059565b82815260059290921b8401810191818101908984111561215657600080fd5b948201945b8386101561217b5761216c86611ea1565b8252948201949082019061215b565b9650508601359250508082111561219157600080fd5b5061219e8582860161207d565b9150509250929050565b600080600080608085870312156121be57600080fd5b6121c785611ea1565b935060206121d6818701611ea1565b935060408601359250606086013567ffffffffffffffff808211156121fa57600080fd5b818801915088601f83011261220e57600080fd5b81358181111561222057612220612012565b612232601f8201601f19168501612028565b9150808252898482850101111561224857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561227b57600080fd5b61228483611ea1565b915061229260208401611ea1565b90509250929050565b600181811c908216806122af57607f821691505b602082108114156122d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826123305761233061230b565b500690565b634e487b7160e01b600052601160045260246000fd5b60008282101561235d5761235d612335565b500390565b6000826123715761237161230b565b500490565b600060001982141561238a5761238a612335565b5060010190565b600082198211156123a4576123a4612335565b500190565b60208082526045908201527f54686520746f74616c20616d6f756e742073657420757020666f7220616c6c2060408201527f6d696e74696e672063616e6e6f742065786365656420636f6c6c656374696f6e60608201526429b4bd329760d91b608082015260a00190565b600081600019048311821515161561242e5761242e612335565b500290565b634e487b7160e01b600052603260045260246000fd5b6020808252602e908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617850657241646460408201526d1c995cdcd11d5c9a5b99d35a5b9d60921b606082015260800190565b600084516124a9818460208901611e1d565b8451908301906124bd818360208901611e1d565b84519101906124d0818360208801611e1d565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250d90830184611e49565b9695505050505050565b60006020828403121561252957600080fd5b815161179081611dea56fea2646970667358221220eea6ec0d90d853e454c6796fab3a2f892f8ef84104436e2e107348efeeeae37164736f6c63430008090033697066733a2f2f516d503775314d537853675457356e64737a3361706a6b744c7465684b6a554266513175784b6e41354c37756b6d2f
Deployed Bytecode
0x6080604052600436106102465760003560e01c806370a0823111610139578063b05863d5116100b6578063c87b56dd1161007a578063c87b56dd146106a6578063d3d0fbda146106c6578063e985e9c5146106e6578063f2fde38b1461072f578063f9c287fd1461074f578063fbe1aa511461076557600080fd5b8063b05863d514610620578063b3ab66b014610640578063b88d4fde14610653578063c180526a14610673578063c62752551461068657600080fd5b806395d89b41116100fd57806395d89b4114610592578063a22cb465146105a7578063a24e5153146105c7578063a7cd52cb146105dd578063a945bf801461060a57600080fd5b806370a0823114610514578063715018a6146105345780638626eb18146105495780638bc35c2f1461055f5780638da5cb5b1461057457600080fd5b806353365674116101c75780636352211e1161018b5780636352211e1461047757806363e53ebc1461049757806367aa372e146104b75780636bb7b1d9146104d75780636df9fa88146104f457600080fd5b806353365674146103c657806354876921146103e65780635503a0e81461040657806355f804b3146104375780635fd84c281461045757600080fd5b806323b872dd1161020e57806323b872dd1461031f578063375a069a1461033f57806342842e0e1461035f57806345c0f5331461037f5780634f2b654c1461039457600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e00565b61077b565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107cd565b6040516102779190611e75565b3480156102ae57600080fd5b506102c26102bd366004611e88565b61085f565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ebd565b6108a3565b005b34801561030857600080fd5b50600254600154035b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004611ee7565b610943565b34801561034b57600080fd5b506102fa61035a366004611e88565b610ad4565b34801561036b57600080fd5b506102fa61037a366004611ee7565b610c49565b34801561038b57600080fd5b50610311605881565b3480156103a057600080fd5b50600b546103b19063ffffffff1681565b60405163ffffffff9091168152602001610277565b3480156103d257600080fd5b506102fa6103e1366004611e88565b610c69565b3480156103f257600080fd5b506102fa610401366004611e88565b610ce6565b34801561041257600080fd5b5061029560405180604001604052806005815260200164173539b7b760d91b81525081565b34801561044357600080fd5b506102fa610452366004611f23565b610e7c565b34801561046357600080fd5b506102fa610472366004611f95565b610eb2565b34801561048357600080fd5b506102c2610492366004611e88565b610ef8565b3480156104a357600080fd5b506102fa6104b2366004611f95565b610f03565b3480156104c357600080fd5b506102fa6104d2366004611e88565b610f49565b3480156104e357600080fd5b50600e546103b19063ffffffff1681565b34801561050057600080fd5b506102fa61050f366004611e88565b610fc6565b34801561052057600080fd5b5061031161052f366004611fbb565b610ff5565b34801561054057600080fd5b506102fa611044565b34801561055557600080fd5b50610311600d5481565b34801561056b57600080fd5b50610311600481565b34801561058057600080fd5b506000546001600160a01b03166102c2565b34801561059e57600080fd5b5061029561107a565b3480156105b357600080fd5b506102fa6105c2366004611fd6565b611089565b3480156105d357600080fd5b50610311600c5481565b3480156105e957600080fd5b506103116105f8366004611fbb565b60116020526000908152604090205481565b34801561061657600080fd5b50610311600f5481565b34801561062c57600080fd5b506102fa61063b3660046120e8565b61111f565b6102fa61064e366004611e88565b611226565b34801561065f57600080fd5b506102fa61066e3660046121a8565b6113ad565b6102fa610681366004611e88565b6113f1565b34801561069257600080fd5b506102fa6106a1366004611e88565b61167d565b3480156106b257600080fd5b506102956106c1366004611e88565b6116ac565b3480156106d257600080fd5b506102fa6106e1366004611e88565b611797565b3480156106f257600080fd5b5061026b610701366004612268565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561073b57600080fd5b506102fa61074a366004611fbb565b6118a0565b34801561075b57600080fd5b5061031160105481565b34801561077157600080fd5b50610311600a5481565b60006301ffc9a760e01b6001600160e01b0319831614806107ac57506380ac58cd60e01b6001600160e01b03198316145b806107c75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107dc9061229b565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061229b565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261193b565b610887576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108ae82610ef8565b9050336001600160a01b038216146108e7576108ca8133610701565b6108e7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061094e82611963565b9050836001600160a01b0316816001600160a01b0316146109815760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109ce576109b18633610701565b6109ce57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109f557604051633a954ecd60e21b815260040160405180910390fd5b8015610a0057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a8b5760018401600081815260056020526040902054610a89576001548114610a895760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610b075760405162461bcd60e51b8152600401610afe906122d6565b60405180910390fd5b600a5460049080831115610b835760405162461bcd60e51b815260206004820152603760248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f7220446576204d696e742e0000000000000000006064820152608401610afe565b610b8d8284612321565b15610c005760405162461bcd60e51b815260206004820152603b60248201527f43616e206f6e6c7920646576206d696e742061206d756c7469706c65206f662060448201527f746865206d617850657241646472657373447572696e674d696e7400000000006064820152608401610afe565b610c0a838261234b565b600a556000610c198385612362565b905060005b81811015610c4257610c3033856119c4565b80610c3a81612376565b915050610c1e565b5050505050565b610c64838383604051806020016040528060008152506113ad565b505050565b6000546001600160a01b03163314610c935760405162461bcd60e51b8152600401610afe906122d6565b6058600d54600a5483610ca560015490565b610caf9190612391565b610cb99190612391565b610cc39190612391565b1115610ce15760405162461bcd60e51b8152600401610afe906123a9565b601055565b6000546001600160a01b03163314610d105760405162461bcd60e51b8152600401610afe906122d6565b80471015610d605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610afe565b6000732655b531038e9286616fd92a13b4d00219e1bb366064610d84846002612414565b610d8e9190612362565b604051600081818185875af1925050503d8060008114610dca576040519150601f19603f3d011682016040523d82523d6000602084013e610dcf565b606091505b5050905080610ddd57600080fd5b6000336064610ded856062612414565b610df79190612362565b604051600081818185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610c645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610afe565b6000546001600160a01b03163314610ea65760405162461bcd60e51b8152600401610afe906122d6565b610c6460098383611d51565b6000546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610afe906122d6565b600e805463ffffffff191663ffffffff92909216919091179055565b60006107c782611963565b6000546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610afe906122d6565b600b805463ffffffff191663ffffffff92909216919091179055565b6000546001600160a01b03163314610f735760405162461bcd60e51b8152600401610afe906122d6565b6058601054600a5483610f8560015490565b610f8f9190612391565b610f999190612391565b610fa39190612391565b1115610fc15760405162461bcd60e51b8152600401610afe906123a9565b600d55565b6000546001600160a01b03163314610ff05760405162461bcd60e51b8152600401610afe906122d6565b600c55565b60006001600160a01b03821661101e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461106e5760405162461bcd60e51b8152600401610afe906122d6565b61107860006119e2565b565b6060600480546107dc9061229b565b6001600160a01b0382163314156110b35760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111495760405162461bcd60e51b8152600401610afe906122d6565b80518251146111ab5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610afe565b60005b8251811015610c64578181815181106111c9576111c9612433565b6020026020010151601160008584815181106111e7576111e7612433565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061121e90612376565b9150506111ae565b3233146112755760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610afe565b600e5463ffffffff16428111156112e15760405162461bcd60e51b815260206004820152602a60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574206f72604482015269081a185cc8195b99195960b21b6064820152608401610afe565b6010548083111561135a5760405162461bcd60e51b815260206004820152603a60248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f72205075626c6963204d696e742e0000000000006064820152608401610afe565b600483111561137b5760405162461bcd60e51b8152600401610afe90612449565b611385838261234b565b601055600f5461139d6113988583612414565b611a32565b6113a733856119c4565b50505050565b6113b8848484610943565b6001600160a01b0383163b156113a7576113d484848484611ab9565b6113a7576040516368d2bf6b60e11b815260040160405180910390fd5b3233146114405760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610afe565b600b5463ffffffff16428111156114b05760405162461bcd60e51b815260206004820152602e60248201527f5768697465204c6973742073616c6520686173206e6f7420626567756e20796560448201526d1d081bdc881a185cc8195b99195960921b6064820152608401610afe565b600d54808311156115295760405162461bcd60e51b815260206004820152603e60248201527f546865207175616e746974792065786365656473207468652072656d61696e6960448201527f6e6720616d6f756e7420666f72205768697465204c697374204d696e742e00006064820152608401610afe565b600483111561154a5760405162461bcd60e51b8152600401610afe90612449565b33600090815260116020526040902054806115b85760405162461bcd60e51b815260206004820152602860248201527f55736572206973206e6f7420656c696769626c6520666f72205768697465204c6044820152671a5cdd08135a5b9d60c21b6064820152608401610afe565b8084111561161d5760405162461bcd60e51b815260206004820152602c60248201527f557365722063616e206e6f74206d696e74206d6f7265207468616e20616c6c6f60448201526b776564207175616e7469747960a01b6064820152608401610afe565b611627848361234b565b600d55611634848261234b565b9050806116505733600090815260116020526040812055611663565b3360009081526011602052604090208190555b600c546116736113988683612414565b610c4233866119c4565b6000546001600160a01b031633146116a75760405162461bcd60e51b8152600401610afe906122d6565b600f55565b60606116b78261193b565b61171c5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba30b73a103a37b5b2b760811b6064820152608401610afe565b6000611726611bb0565b905060008151116117465760405180602001604052806000815250611790565b8061175084611bbf565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161178093929190612497565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c15760405162461bcd60e51b8152600401610afe906122d6565b6117cc600482612321565b1561184d5760405162461bcd60e51b815260206004820152604560248201527f416d6f756e7420666f7220446576204d696e74206d7573742062652061206d7560448201527f6c7469706c65206f6620746865206d617850657241646472657373447572696e60648201526419d35a5b9d60da1b608482015260a401610afe565b6058601054600d548361185f60015490565b6118699190612391565b6118739190612391565b61187d9190612391565b111561189b5760405162461bcd60e51b8152600401610afe906123a9565b600a55565b6000546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610afe906122d6565b6001600160a01b03811661192f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afe565b611938816119e2565b50565b6000600154821080156107c7575050600090815260056020526040902054600160e01b161590565b6000816001548110156119ab57600081815260056020526040902054600160e01b81166119a9575b8061179057506000190160008181526005602052604090205461198b565b505b604051636f96cda160e11b815260040160405180910390fd5b6119de828260405180602001604052806000815250611c0e565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611a7b5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610afe565b8034111561193857336108fc611a91833461234b565b6040518115909202916000818181858888f193505050501580156119de573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aee9033908990889088906004016124da565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b38575060408051601f3d908101601f19168201909252611b3591810190612517565b60015b611b93573d808015611b66576040519150601f19603f3d011682016040523d82523d6000602084013e611b6b565b606091505b508051611b8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107dc9061229b565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611bfc57600183039250600a81066030018353600a9004611bde565b50819003601f19909101908152919050565b611c188383611c74565b6001600160a01b0383163b15610c64576001548281035b611c426000868380600101945086611ab9565b611c5f576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c2f578160015414610c4257600080fd5b6001546001600160a01b038316611c9d57604051622e076360e81b815260040160405180910390fd5b81611cbb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d055760015550505050565b828054611d5d9061229b565b90600052602060002090601f016020900481019282611d7f5760008555611dc5565b82601f10611d985782800160ff19823516178555611dc5565b82800160010185558215611dc5579182015b82811115611dc5578235825591602001919060010190611daa565b50611dd1929150611dd5565b5090565b5b80821115611dd15760008155600101611dd6565b6001600160e01b03198116811461193857600080fd5b600060208284031215611e1257600080fd5b813561179081611dea565b60005b83811015611e38578181015183820152602001611e20565b838111156113a75750506000910152565b60008151808452611e61816020860160208601611e1d565b601f01601f19169290920160200192915050565b6020815260006117906020830184611e49565b600060208284031215611e9a57600080fd5b5035919050565b80356001600160a01b0381168114611eb857600080fd5b919050565b60008060408385031215611ed057600080fd5b611ed983611ea1565b946020939093013593505050565b600080600060608486031215611efc57600080fd5b611f0584611ea1565b9250611f1360208501611ea1565b9150604084013590509250925092565b60008060208385031215611f3657600080fd5b823567ffffffffffffffff80821115611f4e57600080fd5b818501915085601f830112611f6257600080fd5b813581811115611f7157600080fd5b866020828501011115611f8357600080fd5b60209290920196919550909350505050565b600060208284031215611fa757600080fd5b813563ffffffff8116811461179057600080fd5b600060208284031215611fcd57600080fd5b61179082611ea1565b60008060408385031215611fe957600080fd5b611ff283611ea1565b91506020830135801515811461200757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561205157612051612012565b604052919050565b600067ffffffffffffffff82111561207357612073612012565b5060051b60200190565b600082601f83011261208e57600080fd5b813560206120a361209e83612059565b612028565b82815260059290921b840181019181810190868411156120c257600080fd5b8286015b848110156120dd57803583529183019183016120c6565b509695505050505050565b600080604083850312156120fb57600080fd5b823567ffffffffffffffff8082111561211357600080fd5b818501915085601f83011261212757600080fd5b8135602061213761209e83612059565b82815260059290921b8401810191818101908984111561215657600080fd5b948201945b8386101561217b5761216c86611ea1565b8252948201949082019061215b565b9650508601359250508082111561219157600080fd5b5061219e8582860161207d565b9150509250929050565b600080600080608085870312156121be57600080fd5b6121c785611ea1565b935060206121d6818701611ea1565b935060408601359250606086013567ffffffffffffffff808211156121fa57600080fd5b818801915088601f83011261220e57600080fd5b81358181111561222057612220612012565b612232601f8201601f19168501612028565b9150808252898482850101111561224857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561227b57600080fd5b61228483611ea1565b915061229260208401611ea1565b90509250929050565b600181811c908216806122af57607f821691505b602082108114156122d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826123305761233061230b565b500690565b634e487b7160e01b600052601160045260246000fd5b60008282101561235d5761235d612335565b500390565b6000826123715761237161230b565b500490565b600060001982141561238a5761238a612335565b5060010190565b600082198211156123a4576123a4612335565b500190565b60208082526045908201527f54686520746f74616c20616d6f756e742073657420757020666f7220616c6c2060408201527f6d696e74696e672063616e6e6f742065786365656420636f6c6c656374696f6e60608201526429b4bd329760d91b608082015260a00190565b600081600019048311821515161561242e5761242e612335565b500290565b634e487b7160e01b600052603260045260246000fd5b6020808252602e908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617850657241646460408201526d1c995cdcd11d5c9a5b99d35a5b9d60921b606082015260800190565b600084516124a9818460208901611e1d565b8451908301906124bd818360208901611e1d565b84519101906124d0818360208801611e1d565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250d90830184611e49565b9695505050505050565b60006020828403121561252957600080fd5b815161179081611dea56fea2646970667358221220eea6ec0d90d853e454c6796fab3a2f892f8ef84104436e2e107348efeeeae37164736f6c63430008090033
Deployed Bytecode Sourcemap
38771:7684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14726:352;;;;;;;;;;-1:-1:-1;14726:352:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14726:352:0;;;;;;;;19368:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21186:204::-;;;;;;;;;;-1:-1:-1;21186:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;21186:204:0;1528:203:1;20734:386:0;;;;;;;;;;-1:-1:-1;20734:386:0;;;;;:::i;:::-;;:::i;:::-;;14061:170;;;;;;;;;;-1:-1:-1;14182:12:0;;14166:13;;:28;14061:170;;;2319:25:1;;;2307:2;2292:18;14061:170:0;2173:177:1;28839:1672:0;;;;;;;;;;-1:-1:-1;28839:1672:0;;;;;:::i;:::-;;:::i;39680:729::-;;;;;;;;;;-1:-1:-1;39680:729:0;;;;;:::i;:::-;;:::i;22076:185::-;;;;;;;;;;-1:-1:-1;22076:185:0;;;;;:::i;:::-;;:::i;38873:43::-;;;;;;;;;;;;38914:2;38873:43;;39130:49;;;;;;;;;;-1:-1:-1;39130:49:0;;;;;;;;;;;2862:10:1;2850:23;;;2832:42;;2820:2;2805:18;39130:49:0;2688:192:1;44530:345:0;;;;;;;;;;-1:-1:-1;44530:345:0;;;;;:::i;:::-;;:::i;45977:473::-;;;;;;;;;;-1:-1:-1;45977:473:0;;;;;:::i;:::-;;:::i;38824:42::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38824:42:0;;;;;45861:108;;;;;;;;;;-1:-1:-1;45861:108:0;;;;;:::i;:::-;;:::i;44401:121::-;;;;;;;;;;-1:-1:-1;44401:121:0;;;;;:::i;:::-;;:::i;19157:144::-;;;;;;;;;;-1:-1:-1;19157:144:0;;;;;:::i;:::-;;:::i;42506:127::-;;;;;;;;;;-1:-1:-1;42506:127:0;;;;;:::i;:::-;;:::i;42641:357::-;;;;;;;;;;-1:-1:-1;42641:357:0;;;;;:::i;:::-;;:::i;39291:46::-;;;;;;;;;;-1:-1:-1;39291:46:0;;;;;;;;42370:128;;;;;;;;;;-1:-1:-1;42370:128:0;;;;;:::i;:::-;;:::i;15142:224::-;;;;;;;;;;-1:-1:-1;15142:224:0;;;;;:::i;:::-;;:::i;2384:103::-;;;;;;;;;;;;;:::i;39232:38::-;;;;;;;;;;;;;;;;38923:51;;;;;;;;;;;;38973:1;38923:51;;1733:87;;;;;;;;;;-1:-1:-1;1779:7:0;1806:6;-1:-1:-1;;;;;1806:6:0;1733:87;;19537:104;;;;;;;;;;;;;:::i;21462:308::-;;;;;;;;;;-1:-1:-1;21462:308:0;;;;;:::i;:::-;;:::i;39186:39::-;;;;;;;;;;;;;;;;39436:44;;;;;;;;;;-1:-1:-1;39436:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;39344:36;;;;;;;;;;;;;;;;43006:394;;;;;;;;;;-1:-1:-1;43006:394:0;;;;;:::i;:::-;;:::i;43416:849::-;;;;;;:::i;:::-;;:::i;22332:399::-;;;;;;;;;;-1:-1:-1;22332:399:0;;;;;:::i;:::-;;:::i;40945:1415::-;;;;;;:::i;:::-;;:::i;44277:116::-;;;;;;;;;;-1:-1:-1;44277:116:0;;;;;:::i;:::-;;:::i;45136:595::-;;;;;;;;;;-1:-1:-1;45136:595:0;;;;;:::i;:::-;;:::i;40417:512::-;;;;;;;;;;-1:-1:-1;40417:512:0;;;;;:::i;:::-;;:::i;21841:164::-;;;;;;;;;;-1:-1:-1;21841:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21962:25:0;;;21938:4;21962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21841:164;2642:201;;;;;;;;;;-1:-1:-1;2642:201:0;;;;;:::i;:::-;;:::i;39388:35::-;;;;;;;;;;;;;;;;39081:32;;;;;;;;;;;;;;;;14726:352;14811:4;-1:-1:-1;;;;;;;;;14848:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14925:25:0;;;14848:102;:179;;;-1:-1:-1;;;;;;;;;;15002:25:0;;;14848:179;14828:199;14726:352;-1:-1:-1;;14726:352:0:o;19368:100::-;19422:13;19455:5;19448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19368:100;:::o;21186:204::-;21254:7;21279:16;21287:7;21279;:16::i;:::-;21274:64;;21304:34;;-1:-1:-1;;;21304:34:0;;;;;;;;;;;21274:64;-1:-1:-1;21358:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21358:24:0;;21186:204::o;20734:386::-;20807:13;20823:16;20831:7;20823;:16::i;:::-;20807:32;-1:-1:-1;37382:10:0;-1:-1:-1;;;;;20856:28:0;;;20852:175;;20904:44;20921:5;37382:10;21841:164;:::i;20904:44::-;20899:128;;20976:35;;-1:-1:-1;;;20976:35:0;;;;;;;;;;;20899:128;21039:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21039:29:0;-1:-1:-1;;;;;21039:29:0;;;;;;;;;21084:28;;21039:24;;21084:28;;;;;;;20796:324;20734:386;;:::o;28839:1672::-;28973:27;29003;29022:7;29003:18;:27::i;:::-;28973:57;;29088:4;-1:-1:-1;;;;;29047:45:0;29063:19;-1:-1:-1;;;;;29047:45:0;;29043:86;;29101:28;;-1:-1:-1;;;29101:28:0;;;;;;;;;;;29043:86;29143:27;27887:21;;;27837:15;27929:4;27922:36;28011:4;27995:21;;28049:26;;37382:10;28536:30;;;-1:-1:-1;;;;;28404:26:0;;28515:19;;;28512:55;29240:174;;29327:43;29344:4;37382:10;21841:164;:::i;29327:43::-;29322:92;;29379:35;;-1:-1:-1;;;29379:35:0;;;;;;;;;;;29322:92;-1:-1:-1;;;;;29431:16:0;;29427:52;;29456:23;;-1:-1:-1;;;29456:23:0;;;;;;;;;;;29427:52;29575:15;29572:83;;;29638:1;29617:19;29610:30;29572:83;-1:-1:-1;;;;;29705:24:0;;;;;;;:18;:24;;;;;;29703:26;;-1:-1:-1;;29703:26:0;;;29774:22;;;;;;;;;29772:24;;-1:-1:-1;29772:24:0;;;19056:11;19032:22;19028:40;19015:62;-1:-1:-1;;;19015:62:0;29841:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;30036:46:0;;30032:363;;30140:1;30130:11;;30108:19;30164:30;;;:17;:30;;;;;;30160:220;;30243:13;;30228:11;:28;30224:137;;30285:30;;;;:17;:30;;;;;:52;;;30224:137;30089:306;30032:363;30442:7;30438:2;-1:-1:-1;;;;;30423:27:0;30432:4;-1:-1:-1;;;;;30423:27:0;;;;;;;;;;;28962:1549;;;28839:1672;;;:::o;39680:729::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;;;;;;;;;39840:13:::1;::::0;38973:1:::1;::::0;39886:27;;::::1;;39864:132;;;::::0;-1:-1:-1;;;39864:132:0;;8922:2:1;39864:132:0::1;::::0;::::1;8904:21:1::0;8961:2;8941:18;;;8934:30;9000:34;8980:18;;;8973:62;9071:25;9051:18;;;9044:53;9114:19;;39864:132:0::1;8720:419:1::0;39864:132:0::1;40029:36;40041:24:::0;40029:9;:36:::1;:::i;:::-;:41:::0;40007:150:::1;;;::::0;-1:-1:-1;;;40007:150:0;;9595:2:1;40007:150:0::1;::::0;::::1;9577:21:1::0;9634:2;9614:18;;;9607:30;9673:34;9653:18;;;9646:62;9744:29;9724:18;;;9717:57;9791:19;;40007:150:0::1;9393:423:1::0;40007:150:0::1;40184:26;40201:9:::0;40184:14;:26:::1;:::i;:::-;40168:13;:42:::0;40221:17:::1;40241:36;40253:24:::0;40241:9;:36:::1;:::i;:::-;40221:56;;40293:9;40288:114;40312:9;40308:1;:13;40288:114;;;40343:47;40353:10;40365:24;40343:9;:47::i;:::-;40323:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40288:114;;;;39735:674;;;39680:729:::0;:::o;22076:185::-;22214:39;22231:4;22237:2;22241:7;22214:39;;;;;;;;;;;;:16;:39::i;:::-;22076:185;;;:::o;44530:345::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;38914:2:::1;44688:18;;44672:13;;44653:16;44636:14;14428:13:::0;;;14329:149;44636:14:::1;:33;;;;:::i;:::-;:49;;;;:::i;:::-;:70;;;;:::i;:::-;:88;;44614:207;;;;-1:-1:-1::0;;;44614:207:0::1;;;;;;;:::i;:::-;44833:15;:34:::0;44530:345::o;45977:473::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;46094:7:::1;46069:21;:32;;46047:111;;;::::0;-1:-1:-1;;;46047:111:0;;11161:2:1;46047:111:0::1;::::0;::::1;11143:21:1::0;11200:2;11180:18;;;11173:30;11239:31;11219:18;;;11212:59;11288:18;;46047:111:0::1;10959:353:1::0;46047:111:0::1;46170:17;46201:42;46274:3;46258:11;:7:::0;46268:1:::1;46258:11;:::i;:::-;46257:20;;;;:::i;:::-;46193:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46169:113;;;46301:12;46293:21;;;::::0;::::1;;46328:12;46346:10;46386:3;46370:12;:7:::0;46380:2:::1;46370:12;:::i;:::-;46369:20;;;;:::i;:::-;46346:48;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46327:67;;;46414:7;46406:36;;;::::0;-1:-1:-1;;;46406:36:0;;11902:2:1;46406:36:0::1;::::0;::::1;11884:21:1::0;11941:2;11921:18;;;11914:30;-1:-1:-1;;;11960:18:1;;;11953:46;12016:18;;46406:36:0::1;11700:340:1::0;45861:108:0;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;45937:24:::1;:13;45953:8:::0;;45937:24:::1;:::i;44401:121::-:0;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;44482:19:::1;:32:::0;;-1:-1:-1;;44482:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44401:121::o;19157:144::-;19221:7;19264:27;19283:7;19264:18;:27::i;42506:127::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;42590:22:::1;:35:::0;;-1:-1:-1;;42590:35:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42506:127::o;42641:357::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;38914:2:::1;42808:15;;42792:13;;42770:19;42753:14;14428:13:::0;;;14329:149;42753:14:::1;:36;;;;:::i;:::-;:52;;;;:::i;:::-;:70;;;;:::i;:::-;:88;;42731:207;;;;-1:-1:-1::0;;;42731:207:0::1;;;;;;;:::i;:::-;42950:18;:40:::0;42641:357::o;42370:128::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;42455:14:::1;:35:::0;42370:128::o;15142:224::-;15206:7;-1:-1:-1;;;;;15230:19:0;;15226:60;;15258:28;;-1:-1:-1;;;15258:28:0;;;;;;;;;;;15226:60;-1:-1:-1;;;;;;15304:25:0;;;;;:18;:25;;;;;;12093:13;15304:54;;15142:224::o;2384:103::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;2449:30:::1;2476:1;2449:18;:30::i;:::-;2384:103::o:0;19537:104::-;19593:13;19626:7;19619:14;;;;;:::i;21462:308::-;-1:-1:-1;;;;;21561:31:0;;37382:10;21561:31;21557:61;;;21601:17;;-1:-1:-1;;;21601:17:0;;;;;;;;;;;21557:61;37382:10;21631:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21631:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21631:60:0;;;;;;;;;;21707:55;;540:41:1;;;21631:49:0;;37382:10;21707:55;;513:18:1;21707:55:0;;;;;;;21462:308;;:::o;43006:394::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;43184:9:::1;:16;43163:10;:17;:37;43141:127;;;::::0;-1:-1:-1;;;43141:127:0;;12247:2:1;43141:127:0::1;::::0;::::1;12229:21:1::0;12286:2;12266:18;;;12259:30;12325:34;12305:18;;;12298:62;-1:-1:-1;;;12376:18:1;;;12369:38;12424:19;;43141:127:0::1;12045:404:1::0;43141:127:0::1;43284:9;43279:114;43303:10;:17;43299:1;:21;43279:114;;;43369:9;43379:1;43369:12;;;;;;;;:::i;:::-;;;;;;;43342:9;:24;43352:10;43363:1;43352:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;43342:24:0::1;-1:-1:-1::0;;;;;43342:24:0::1;;;;;;;;;;;;:39;;;;43322:3;;;;;:::i;:::-;;;;43279:114;;43416:849:::0;39594:9;39607:10;39594:23;39586:66;;;;-1:-1:-1;;;39586:66:0;;12788:2:1;39586:66:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:32;12846:18;;;12839:60;12916:18;;39586:66:0;12586:354:1;39586:66:0;43539:19:::1;::::0;::::1;;43594:15;:39:::0;-1:-1:-1;43594:39:0::1;43572:132;;;::::0;-1:-1:-1;;;43572:132:0;;13147:2:1;43572:132:0::1;::::0;::::1;13129:21:1::0;13186:2;13166:18;;;13159:30;13225:34;13205:18;;;13198:62;-1:-1:-1;;;13276:18:1;;;13269:40;13326:19;;43572:132:0::1;12945:406:1::0;43572:132:0::1;43744:15;::::0;43792:29;;::::1;;43770:138;;;::::0;-1:-1:-1;;;43770:138:0;;13558:2:1;43770:138:0::1;::::0;::::1;13540:21:1::0;13597:2;13577:18;;;13570:30;13636:34;13616:18;;;13609:62;13707:28;13687:18;;;13680:56;13753:19;;43770:138:0::1;13356:422:1::0;43770:138:0::1;38973:1;43941:9;:36;;43919:132;;;;-1:-1:-1::0;;;43919:132:0::1;;;;;;;:::i;:::-;44082:28;44101:9:::0;44082:16;:28:::1;:::i;:::-;44064:15;:46:::0;44152:11:::1;::::0;44175:39:::1;44189:24;44204:9:::0;44152:11;44189:24:::1;:::i;:::-;44175:13;:39::i;:::-;44225:32;44235:10;44247:9;44225;:32::i;:::-;43489:776;;;43416:849:::0;:::o;22332:399::-;22499:31;22512:4;22518:2;22522:7;22499:12;:31::i;:::-;-1:-1:-1;;;;;22545:14:0;;;:19;22541:183;;22584:56;22615:4;22621:2;22625:7;22634:5;22584:30;:56::i;:::-;22579:145;;22668:40;;-1:-1:-1;;;22668:40:0;;;;;;;;;;;40945:1415;39594:9;39607:10;39594:23;39586:66;;;;-1:-1:-1;;;39586:66:0;;12788:2:1;39586:66:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:32;12846:18;;;12839:60;12916:18;;39586:66:0;12586:354:1;39586:66:0;41070:22:::1;::::0;::::1;;41126:15;:42:::0;-1:-1:-1;41126:42:0::1;41104:138;;;::::0;-1:-1:-1;;;41104:138:0;;14400:2:1;41104:138:0::1;::::0;::::1;14382:21:1::0;14439:2;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;-1:-1:-1;;;14529:18:1;;;14522:44;14583:19;;41104:138:0::1;14198:410:1::0;41104:138:0::1;41285:18;::::0;41336:32;;::::1;;41314:145;;;::::0;-1:-1:-1;;;41314:145:0;;14815:2:1;41314:145:0::1;::::0;::::1;14797:21:1::0;14854:2;14834:18;;;14827:30;14893:34;14873:18;;;14866:62;14964:32;14944:18;;;14937:60;15014:19;;41314:145:0::1;14613:426:1::0;41314:145:0::1;38973:1;41492:9;:36;;41470:132;;;;-1:-1:-1::0;;;41470:132:0::1;;;;;;;:::i;:::-;41647:10;41613:21;41637::::0;;;:9:::1;:21;::::0;;;;;41691:17;41669:108:::1;;;::::0;-1:-1:-1;;;41669:108:0;;15246:2:1;41669:108:0::1;::::0;::::1;15228:21:1::0;15285:2;15265:18;;;15258:30;15324:34;15304:18;;;15297:62;-1:-1:-1;;;15375:18:1;;;15368:38;15423:19;;41669:108:0::1;15044:404:1::0;41669:108:0::1;41823:13;41810:9;:26;;41788:121;;;::::0;-1:-1:-1;;;41788:121:0;;15655:2:1;41788:121:0::1;::::0;::::1;15637:21:1::0;15694:2;15674:18;;;15667:30;15733:34;15713:18;;;15706:62;-1:-1:-1;;;15784:18:1;;;15777:42;15836:19;;41788:121:0::1;15453:408:1::0;41788:121:0::1;41951:31;41973:9:::0;41951:19;:31:::1;:::i;:::-;41930:18;:52:::0;42009:25:::1;42025:9:::0;42009:13;:25:::1;:::i;:::-;41993:41:::0;-1:-1:-1;42049:18:0;42045:149:::1;;42101:10;42091:21;::::0;;;:9:::1;:21;::::0;;;;42084:28;42045:149:::1;;;42155:10;42145:21;::::0;;;:9:::1;:21;::::0;;;;:37;;;42045:149:::1;42241:14;::::0;42267:42:::1;42281:27;42299:9:::0;42241:14;42281:27:::1;:::i;42267:42::-;42320:32;42330:10;42342:9;42320;:32::i;44277:116::-:0;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;44356:11:::1;:29:::0;44277:116::o;45136:595::-;45210:13;45258:17;45266:8;45258:7;:17::i;:::-;45236:115;;;;-1:-1:-1;;;45236:115:0;;16068:2:1;45236:115:0;;;16050:21:1;16107:2;16087:18;;;16080:30;16146:34;16126:18;;;16119:62;-1:-1:-1;;;16197:18:1;;;16190:46;16253:19;;45236:115:0;15866:412:1;45236:115:0;45364:29;45396:10;:8;:10::i;:::-;45364:42;;45469:1;45443:15;45437:29;:33;:286;;;;;;;;;;;;;;;;;45562:15;45604:19;45614:8;45604:9;:19::i;:::-;45650:9;;;;;;;;;;;;;-1:-1:-1;;;45650:9:0;;;45519:163;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45437:286;45417:306;45136:595;-1:-1:-1;;;45136:595:0:o;40417:512::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;40519:40:::1;38973:1;40519:14:::0;:40:::1;:::i;:::-;:45:::0;40497:164:::1;;;::::0;-1:-1:-1;;;40497:164:0;;17154:2:1;40497:164:0::1;::::0;::::1;17136:21:1::0;17193:2;17173:18;;;17166:30;17232:34;17212:18;;;17205:62;17303:34;17283:18;;;17276:62;-1:-1:-1;;;17354:19:1;;;17347:36;17400:19;;40497:164:0::1;16952:473:1::0;40497:164:0::1;38914:2;40749:15;;40728:18;;40711:14;40694;14428:13:::0;;;14329:149;40694:14:::1;:31;;;;:::i;:::-;:52;;;;:::i;:::-;:70;;;;:::i;:::-;:88;;40672:207;;;;-1:-1:-1::0;;;40672:207:0::1;;;;;;;:::i;:::-;40891:13;:30:::0;40417:512::o;2642:201::-;1779:7;1806:6;-1:-1:-1;;;;;1806:6:0;37382:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2731:22:0;::::1;2723:73;;;::::0;-1:-1:-1;;;2723:73:0;;17632:2:1;2723:73:0::1;::::0;::::1;17614:21:1::0;17671:2;17651:18;;;17644:30;17710:34;17690:18;;;17683:62;-1:-1:-1;;;17761:18:1;;;17754:36;17807:19;;2723:73:0::1;17430:402:1::0;2723:73:0::1;2807:28;2826:8;2807:18;:28::i;:::-;2642:201:::0;:::o;22986:273::-;23043:4;23133:13;;23123:7;:23;23080:152;;;;-1:-1:-1;;23184:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;23184:43:0;:48;;22986:273::o;16751:628::-;16818:7;16853;16955:13;;16948:4;:20;16944:368;;;16993:14;17010:23;;;:17;:23;;;;;;-1:-1:-1;;;17060:23:0;;17056:237;;17117:113;17124:11;17117:113;;-1:-1:-1;;;17195:6:0;17177:25;;;;:17;:25;;;;;;17117:113;;17056:237;16970:342;16944:368;17340:31;;-1:-1:-1;;;17340:31:0;;;;;;;;;;;23343:104;23412:27;23422:2;23426:8;23412:27;;;;;;;;;;;;:9;:27::i;:::-;23343:104;;:::o;3003:191::-;3077:16;3096:6;;-1:-1:-1;;;;;3113:17:0;;;-1:-1:-1;;;;;;3113:17:0;;;;;;3146:40;;3096:6;;;;;;;3146:40;;3077:16;3146:40;3066:128;3003:191;:::o;44891:229::-;44970:6;44957:9;:19;;44949:54;;;;-1:-1:-1;;;44949:54:0;;18039:2:1;44949:54:0;;;18021:21:1;18078:2;18058:18;;;18051:30;-1:-1:-1;;;18097:18:1;;;18090:52;18159:18;;44949:54:0;17837:346:1;44949:54:0;45030:6;45018:9;:18;45014:99;;;45061:10;45053:48;45082:18;45094:6;45082:9;:18;:::i;:::-;45053:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33021:716;33205:88;;-1:-1:-1;;;33205:88:0;;33184:4;;-1:-1:-1;;;;;33205:45:0;;;;;:88;;37382:10;;33272:4;;33278:7;;33287:5;;33205:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33205:88:0;;;;;;;;-1:-1:-1;;33205:88:0;;;;;;;;;;;;:::i;:::-;;;33201:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33488:13:0;;33484:235;;33534:40;;-1:-1:-1;;;33534:40:0;;;;;;;;;;;33484:235;33677:6;33671:13;33662:6;33658:2;33654:15;33647:38;33201:529;-1:-1:-1;;;;;;33364:64:0;-1:-1:-1;;;33364:64:0;;-1:-1:-1;33021:716:0;;;;;;:::o;45739:114::-;45799:13;45832;45825:20;;;;;:::i;37506:695::-;37634:4;37628:11;;37641:3;37624:21;;37659:17;;;;37787:11;;;37757:5;37833:2;37847;37837:13;;37829:22;37787:11;37816:36;37888:2;37878:13;;37722:352;37907:4;37722:352;;;38003:1;37998:3;37994:11;37987:18;;38054:2;38048:4;38044:13;38040:2;38036:22;38031:3;38023:36;37949:2;37939:13;;37722:352;;;-1:-1:-1;38104:13:0;;;-1:-1:-1;;38138:12:0;;;38164:19;;;38138:12;37506:695;-1:-1:-1;37506:695:0:o;23863:638::-;23986:19;23992:2;23996:8;23986:5;:19::i;:::-;-1:-1:-1;;;;;24047:14:0;;;:19;24043:440;;24101:13;;24149:14;;;24182:233;24213:62;24252:1;24256:2;24260:7;;;;;;24269:5;24213:30;:62::i;:::-;24208:167;;24311:40;;-1:-1:-1;;;24311:40:0;;;;;;;;;;;24208:167;24410:3;24402:5;:11;24182:233;;24454:3;24437:13;;:20;24433:34;;24459:8;;;24774:927;24862:13;;-1:-1:-1;;;;;24890:16:0;;24886:48;;24915:19;;-1:-1:-1;;;24915:19:0;;;;;;;;;;;24886:48;24949:13;24945:44;;24971:18;;-1:-1:-1;;;24971:18:0;;;;;;;;;;;24945:44;-1:-1:-1;;;;;25101:22:0;;;;;;:18;:22;;12163:2;25101:22;;:70;;25139:31;25127:44;;25101:70;;;19056:11;19032:22;19028:40;-1:-1:-1;20638:15:0;;20613:23;20609:45;19025:51;19015:62;25188:31;;;;:17;:31;;;;;:173;25206:12;25437:23;;;25475:101;25502:35;;25527:9;;;;;-1:-1:-1;;;;;25502:35:0;;;25519:1;;25502:35;;25519:1;;25502:35;25571:3;25561:7;:13;25475:101;;25592:13;:19;-1:-1:-1;22076:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;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:1;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:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1: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:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2885:592::-;2956:6;2964;3017:2;3005:9;2996:7;2992:23;2988:32;2985:52;;;3033:1;3030;3023:12;2985:52;3073:9;3060:23;3102:18;3143:2;3135:6;3132:14;3129:34;;;3159:1;3156;3149:12;3129:34;3197:6;3186:9;3182:22;3172:32;;3242:7;3235:4;3231:2;3227:13;3223:27;3213:55;;3264:1;3261;3254:12;3213:55;3304:2;3291:16;3330:2;3322:6;3319:14;3316:34;;;3346:1;3343;3336:12;3316:34;3391:7;3386:2;3377:6;3373:2;3369:15;3365:24;3362:37;3359:57;;;3412:1;3409;3402:12;3359:57;3443:2;3435:11;;;;;3465:6;;-1:-1:-1;2885:592:1;;-1:-1:-1;;;;2885:592:1:o;3482:276::-;3540:6;3593:2;3581:9;3572:7;3568:23;3564:32;3561:52;;;3609:1;3606;3599:12;3561:52;3648:9;3635:23;3698:10;3691:5;3687:22;3680:5;3677:33;3667:61;;3724:1;3721;3714:12;3763:186;3822:6;3875:2;3863:9;3854:7;3850:23;3846:32;3843:52;;;3891:1;3888;3881:12;3843:52;3914:29;3933:9;3914:29;:::i;3954:347::-;4019:6;4027;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;:::-;4109:39;;4198:2;4187:9;4183:18;4170:32;4245:5;4238:13;4231:21;4224:5;4221:32;4211:60;;4267:1;4264;4257:12;4211:60;4290:5;4280:15;;;3954:347;;;;;:::o;4306:127::-;4367:10;4362:3;4358:20;4355:1;4348:31;4398:4;4395:1;4388:15;4422:4;4419:1;4412:15;4438:275;4509:2;4503:9;4574:2;4555:13;;-1:-1:-1;;4551:27:1;4539:40;;4609:18;4594:34;;4630:22;;;4591:62;4588:88;;;4656:18;;:::i;:::-;4692:2;4685:22;4438:275;;-1:-1:-1;4438:275:1:o;4718:183::-;4778:4;4811:18;4803:6;4800:30;4797:56;;;4833:18;;:::i;:::-;-1:-1:-1;4878:1:1;4874:14;4890:4;4870:25;;4718:183::o;4906:662::-;4960:5;5013:3;5006:4;4998:6;4994:17;4990:27;4980:55;;5031:1;5028;5021:12;4980:55;5067:6;5054:20;5093:4;5117:60;5133:43;5173:2;5133:43;:::i;:::-;5117:60;:::i;:::-;5211:15;;;5297:1;5293:10;;;;5281:23;;5277:32;;;5242:12;;;;5321:15;;;5318:35;;;5349:1;5346;5339:12;5318:35;5385:2;5377:6;5373:15;5397:142;5413:6;5408:3;5405:15;5397:142;;;5479:17;;5467:30;;5517:12;;;;5430;;5397:142;;;-1:-1:-1;5557:5:1;4906:662;-1:-1:-1;;;;;;4906:662:1:o;5573:1146::-;5691:6;5699;5752:2;5740:9;5731:7;5727:23;5723:32;5720:52;;;5768:1;5765;5758:12;5720:52;5808:9;5795:23;5837:18;5878:2;5870:6;5867:14;5864:34;;;5894:1;5891;5884:12;5864:34;5932:6;5921:9;5917:22;5907:32;;5977:7;5970:4;5966:2;5962:13;5958:27;5948:55;;5999:1;5996;5989:12;5948:55;6035:2;6022:16;6057:4;6081:60;6097:43;6137:2;6097:43;:::i;6081:60::-;6175:15;;;6257:1;6253:10;;;;6245:19;;6241:28;;;6206:12;;;;6281:19;;;6278:39;;;6313:1;6310;6303:12;6278:39;6337:11;;;;6357:148;6373:6;6368:3;6365:15;6357:148;;;6439:23;6458:3;6439:23;:::i;:::-;6427:36;;6390:12;;;;6483;;;;6357:148;;;6524:5;-1:-1:-1;;6567:18:1;;6554:32;;-1:-1:-1;;6598:16:1;;;6595:36;;;6627:1;6624;6617:12;6595:36;;6650:63;6705:7;6694:8;6683:9;6679:24;6650:63;:::i;:::-;6640:73;;;5573:1146;;;;;:::o;6724:980::-;6819:6;6827;6835;6843;6896:3;6884:9;6875:7;6871:23;6867:33;6864:53;;;6913:1;6910;6903:12;6864:53;6936:29;6955:9;6936:29;:::i;:::-;6926:39;;6984:2;7005:38;7039:2;7028:9;7024:18;7005:38;:::i;:::-;6995:48;;7090:2;7079:9;7075:18;7062:32;7052:42;;7145:2;7134:9;7130:18;7117:32;7168:18;7209:2;7201:6;7198:14;7195:34;;;7225:1;7222;7215:12;7195:34;7263:6;7252:9;7248:22;7238:32;;7308:7;7301:4;7297:2;7293:13;7289:27;7279:55;;7330:1;7327;7320:12;7279:55;7366:2;7353:16;7388:2;7384;7381:10;7378:36;;;7394:18;;:::i;:::-;7436:53;7479:2;7460:13;;-1:-1:-1;;7456:27:1;7452:36;;7436:53;:::i;:::-;7423:66;;7512:2;7505:5;7498:17;7552:7;7547:2;7542;7538;7534:11;7530:20;7527:33;7524:53;;;7573:1;7570;7563:12;7524:53;7628:2;7623;7619;7615:11;7610:2;7603:5;7599:14;7586:45;7672:1;7667:2;7662;7655:5;7651:14;7647:23;7640:34;;7693:5;7683:15;;;;;6724:980;;;;;;;:::o;7709:260::-;7777:6;7785;7838:2;7826:9;7817:7;7813:23;7809:32;7806:52;;;7854:1;7851;7844:12;7806:52;7877:29;7896:9;7877:29;:::i;:::-;7867:39;;7925:38;7959:2;7948:9;7944:18;7925:38;:::i;:::-;7915:48;;7709:260;;;;;:::o;7974:380::-;8053:1;8049:12;;;;8096;;;8117:61;;8171:4;8163:6;8159:17;8149:27;;8117:61;8224:2;8216:6;8213:14;8193:18;8190:38;8187:161;;;8270:10;8265:3;8261:20;8258:1;8251:31;8305:4;8302:1;8295:15;8333:4;8330:1;8323:15;8187:161;;7974:380;;;:::o;8359:356::-;8561:2;8543:21;;;8580:18;;;8573:30;8639:34;8634:2;8619:18;;8612:62;8706:2;8691:18;;8359:356::o;9144:127::-;9205:10;9200:3;9196:20;9193:1;9186:31;9236:4;9233:1;9226:15;9260:4;9257:1;9250:15;9276:112;9308:1;9334;9324:35;;9339:18;;:::i;:::-;-1:-1:-1;9373:9:1;;9276:112::o;9821:127::-;9882:10;9877:3;9873:20;9870:1;9863:31;9913:4;9910:1;9903:15;9937:4;9934:1;9927:15;9953:125;9993:4;10021:1;10018;10015:8;10012:34;;;10026:18;;:::i;:::-;-1:-1:-1;10063:9:1;;9953:125::o;10083:120::-;10123:1;10149;10139:35;;10154:18;;:::i;:::-;-1:-1:-1;10188:9:1;;10083:120::o;10208:135::-;10247:3;-1:-1:-1;;10268:17:1;;10265:43;;;10288:18;;:::i;:::-;-1:-1:-1;10335:1:1;10324:13;;10208:135::o;10348:128::-;10388:3;10419:1;10415:6;10412:1;10409:13;10406:39;;;10425:18;;:::i;:::-;-1:-1:-1;10461:9:1;;10348:128::o;10481:473::-;10683:2;10665:21;;;10722:2;10702:18;;;10695:30;10761:34;10756:2;10741:18;;10734:62;10832:34;10827:2;10812:18;;10805:62;-1:-1:-1;;;10898:3:1;10883:19;;10876:36;10944:3;10929:19;;10481:473::o;11317:168::-;11357:7;11423:1;11419;11415:6;11411:14;11408:1;11405:21;11400:1;11393:9;11386:17;11382:45;11379:71;;;11430:18;;:::i;:::-;-1:-1:-1;11470:9:1;;11317:168::o;12454:127::-;12515:10;12510:3;12506:20;12503:1;12496:31;12546:4;12543:1;12536:15;12570:4;12567:1;12560:15;13783:410;13985:2;13967:21;;;14024:2;14004:18;;;13997:30;14063:34;14058:2;14043:18;;14036:62;-1:-1:-1;;;14129:2:1;14114:18;;14107:44;14183:3;14168:19;;13783:410::o;16283:664::-;16510:3;16548:6;16542:13;16564:53;16610:6;16605:3;16598:4;16590:6;16586:17;16564:53;:::i;:::-;16680:13;;16639:16;;;;16702:57;16680:13;16639:16;16736:4;16724:17;;16702:57;:::i;:::-;16826:13;;16781:20;;;16848:57;16826:13;16781:20;16882:4;16870:17;;16848:57;:::i;:::-;16921:20;;16283:664;-1:-1:-1;;;;;16283:664:1:o;18188:489::-;-1:-1:-1;;;;;18457:15:1;;;18439:34;;18509:15;;18504:2;18489:18;;18482:43;18556:2;18541:18;;18534:34;;;18604:3;18599:2;18584:18;;18577:31;;;18382:4;;18625:46;;18651:19;;18643:6;18625:46;:::i;:::-;18617:54;18188:489;-1:-1:-1;;;;;;18188:489:1:o;18682:249::-;18751:6;18804:2;18792:9;18783:7;18779:23;18775:32;18772:52;;;18820:1;18817;18810:12;18772:52;18852:9;18846:16;18871:30;18895:5;18871:30;:::i
Swarm Source
ipfs://eea6ec0d90d853e454c6796fab3a2f892f8ef84104436e2e107348efeeeae371
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.