ERC-721
Overview
Max Total Supply
2,770 BITSBITES
Holders
1,226
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BITSBITESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitsandBites
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-22 */ // SPDX-License-Identifier: MIT // File: contracts/BitsandBites.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 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 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 virtual { _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); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.13; contract BitsandBites is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { uint256 public maxSupply = 3000; uint256 public maxSupplyForPublic = 2700; uint256 public maxPerWallet = 2; uint256 public mintCost = 0 ether; bool public isSalesActive = true; bool public isReveal = false; string public baseURI; string public hiddenURI; address public wallet1 = 0x3C00834e719d3F90b2Ac78aC92d141D247B29DF4; address public wallet2 = 0x3C00834e719d3F90b2Ac78aC92d141D247B29DF4; mapping(address => uint256) addressToMinted; constructor () ERC721A("Bits & Bites", "BITSBITES") { _safeMint(msg.sender, 2); setHiddenURI("ipfs://Qmb73LtVy6NmDp7N9Bw8QtBJiY9qxwAB6J1ZMNsdMyzhPQ"); } function mint(uint256 mintAmount) public payable nonReentrant { require(msg.value >= mintAmount * mintCost, "Wrong mint amount"); require(isSalesActive, "Wait, sale is not active yet"); require(addressToMinted[msg.sender] + mintAmount <= maxPerWallet, "You can't mint more than limit"); require(totalSupply() + mintAmount <= maxSupplyForPublic, "Sold out"); addressToMinted[msg.sender] += mintAmount; _safeMint(msg.sender, mintAmount); } function reserveTeam(uint256 _mintAmount) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Sold Out"); _safeMint(msg.sender, _mintAmount); } function airdrop(address[] memory _addresses) public onlyOwner { require(totalSupply() + _addresses.length <= maxSupply, "Sold Out"); for (uint256 i = 0; i < _addresses.length; i++) { _safeMint(_addresses[i], 1); } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (isReveal == false) { return hiddenURI; } require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, _toString(tokenId), "")); } function setBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function setHiddenURI(string memory _hiddenURI) public onlyOwner { hiddenURI = _hiddenURI; } function toggleReveal() public onlyOwner { isReveal = !isReveal; } function toggleSale() external onlyOwner { isSalesActive = !isSalesActive; } function setCost(uint256 newCost) external onlyOwner { mintCost = newCost; } function setMaxMint(uint256 newMaxMint) external onlyOwner { maxPerWallet = newMaxMint; } function withdrawAll() external onlyOwner { uint256 percent1 = address(this).balance * 15 / 100; uint256 percent2 = address(this).balance * 85 / 100; require(percent1 > 0); _withdraw(wallet1, percent1); _withdraw(wallet2, percent2); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveTeam","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":"payable","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":"payable","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":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610bb8600a55610a8c600b556002600c556000600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550733c00834e719d3f90b2ac78ac92d141d247b29df4601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733c00834e719d3f90b2ac78ac92d141d247b29df4601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f42697473202620426974657300000000000000000000000000000000000000008152506040518060400160405280600981526020017f424954534249544553000000000000000000000000000000000000000000000081525081600290816200019c919062000cfd565b508060039081620001ae919062000cfd565b50620001bf6200042960201b60201c565b6000819055505050620001e7620001db6200042e60201b60201c565b6200043660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003dc578015620002a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026892919062000e29565b600060405180830381600087803b1580156200028357600080fd5b505af115801562000298573d6000803e3d6000fd5b50505050620003db565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200035c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032292919062000e29565b600060405180830381600087803b1580156200033d57600080fd5b505af115801562000352573d6000803e3d6000fd5b50505050620003da565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003a5919062000e56565b600060405180830381600087803b158015620003c057600080fd5b505af1158015620003d5573d6000803e3d6000fd5b505050505b5b5b50506001600981905550620003f9336002620004fc60201b60201c565b6200042360405180606001604052806035815260200162004d34603591396200052260201b60201c565b62001089565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200051e8282604051806020016040528060008152506200054760201b60201c565b5050565b62000532620005f860201b60201c565b806010908162000543919062000cfd565b5050565b6200055983836200068960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620005f357600080549050600083820390505b620005a260008683806001019450866200087060201b60201c565b620005d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000587578160005414620005f057600080fd5b50505b505050565b620006086200042e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200062e620009d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067e9062000ed4565b60405180910390fd5b565b60008054905060008203620006ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006df6000848385620009fb60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200076e8362000750600086600062000a0160201b60201c565b620007618562000a3160201b60201c565b1762000a4160201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200081157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620007d4565b50600082036200084d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200086b600084838562000a6c60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200089e62000a7260201b60201c565b8786866040518563ffffffff1660e01b8152600401620008c2949392919062000fa1565b6020604051808303816000875af19250505080156200090157506040513d601f19601f82011682018060405250810190620008fe919062001057565b60015b6200097e573d806000811462000934576040519150601f19603f3d011682016040523d82523d6000602084013e62000939565b606091505b50600081510362000976576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b60008060e883901c905060e862000a2086868462000a7a60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0557607f821691505b60208210810362000b1b5762000b1a62000abd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b46565b62000b91868362000b46565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bde62000bd862000bd28462000ba9565b62000bb3565b62000ba9565b9050919050565b6000819050919050565b62000bfa8362000bbd565b62000c1262000c098262000be5565b84845462000b53565b825550505050565b600090565b62000c2962000c1a565b62000c3681848462000bef565b505050565b5b8181101562000c5e5762000c5260008262000c1f565b60018101905062000c3c565b5050565b601f82111562000cad5762000c778162000b21565b62000c828462000b36565b8101602085101562000c92578190505b62000caa62000ca18562000b36565b83018262000c3b565b50505b505050565b600082821c905092915050565b600062000cd26000198460080262000cb2565b1980831691505092915050565b600062000ced838362000cbf565b9150826002028217905092915050565b62000d088262000a83565b67ffffffffffffffff81111562000d245762000d2362000a8e565b5b62000d30825462000aec565b62000d3d82828562000c62565b600060209050601f83116001811462000d75576000841562000d60578287015190505b62000d6c858262000cdf565b86555062000ddc565b601f19841662000d858662000b21565b60005b8281101562000daf5784890151825560018201915060208501945060208101905062000d88565b8683101562000dcf578489015162000dcb601f89168262000cbf565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e118262000de4565b9050919050565b62000e238162000e04565b82525050565b600060408201905062000e40600083018562000e18565b62000e4f602083018462000e18565b9392505050565b600060208201905062000e6d600083018462000e18565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ebc60208362000e73565b915062000ec98262000e84565b602082019050919050565b6000602082019050818103600083015262000eef8162000ead565b9050919050565b62000f018162000ba9565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000f4357808201518184015260208101905062000f26565b60008484015250505050565b6000601f19601f8301169050919050565b600062000f6d8262000f07565b62000f79818562000f12565b935062000f8b81856020860162000f23565b62000f968162000f4f565b840191505092915050565b600060808201905062000fb8600083018762000e18565b62000fc7602083018662000e18565b62000fd6604083018562000ef6565b818103606083015262000fea818462000f60565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620010318162000ffa565b81146200103d57600080fd5b50565b600081519050620010518162001026565b92915050565b60006020828403121562001070576200106f62000ff5565b5b6000620010808482850162001040565b91505092915050565b613c9b80620010996000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610766578063daa81cdd14610791578063e985e9c5146107bc578063f2fde38b146107f9578063fae4c7f91461082257610225565b8063a22cb46514610690578063b88d4fde146106b9578063bbaac02f146106d5578063bdb4b848146106fe578063c87b56dd1461072957610225565b8063853828b6116100f2578063853828b6146105dc5780638cc54e7f146105f35780638da5cb5b1461061e57806395d89b4114610649578063a0712d681461067457610225565b806370a0823114610548578063715018a614610585578063729ad39e1461059c5780637d8966e4146105c557610225565b806341f43434116101b1578063547520fe11610175578063547520fe1461047757806355f804b3146104a05780635b8ad429146104c95780636352211e146104e05780636c0360eb1461051d57610225565b806341f43434146103b157806342842e0e146103dc57806344a0d68a146103f8578063453c2310146104215780634921297b1461044c57610225565b80630b8d0a28116101f85780630b8d0a28146102eb578063163c03511461031657806318160ddd1461033f5780631a026c961461036a57806323b872dd1461039557610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612911565b61084d565b60405161025e9190612959565b60405180910390f35b34801561027357600080fd5b5061027c6108df565b6040516102899190612a04565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a5c565b610971565b6040516102c69190612aca565b60405180910390f35b6102e960048036038101906102e49190612b11565b6109f0565b005b3480156102f757600080fd5b50610300610afa565b60405161030d9190612aca565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612a5c565b610b20565b005b34801561034b57600080fd5b50610354610b8c565b6040516103619190612b60565b60405180910390f35b34801561037657600080fd5b5061037f610ba3565b60405161038c9190612aca565b60405180910390f35b6103af60048036038101906103aa9190612b7b565b610bc9565b005b3480156103bd57600080fd5b506103c6610d19565b6040516103d39190612c2d565b60405180910390f35b6103f660048036038101906103f19190612b7b565b610d2b565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612a5c565b610e7b565b005b34801561042d57600080fd5b50610436610e8d565b6040516104439190612b60565b60405180910390f35b34801561045857600080fd5b50610461610e93565b60405161046e9190612b60565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612a5c565b610e99565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612d7d565b610eab565b005b3480156104d557600080fd5b506104de610ec6565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612a5c565b610efa565b6040516105149190612aca565b60405180910390f35b34801561052957600080fd5b50610532610f0c565b60405161053f9190612a04565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612dc6565b610f9a565b60405161057c9190612b60565b60405180910390f35b34801561059157600080fd5b5061059a611052565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612ebb565b611066565b005b3480156105d157600080fd5b506105da61110e565b005b3480156105e857600080fd5b506105f1611142565b005b3480156105ff57600080fd5b506106086111ed565b6040516106159190612a04565b60405180910390f35b34801561062a57600080fd5b5061063361127b565b6040516106409190612aca565b60405180910390f35b34801561065557600080fd5b5061065e6112a5565b60405161066b9190612a04565b60405180910390f35b61068e60048036038101906106899190612a5c565b611337565b005b34801561069c57600080fd5b506106b760048036038101906106b29190612f30565b61152f565b005b6106d360048036038101906106ce9190613011565b611639565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612d7d565b61178c565b005b34801561070a57600080fd5b506107136117a7565b6040516107209190612b60565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612a5c565b6117ad565b60405161075d9190612a04565b60405180910390f35b34801561077257600080fd5b5061077b6118d7565b6040516107889190612b60565b60405180910390f35b34801561079d57600080fd5b506107a66118dd565b6040516107b39190612959565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613094565b6118f0565b6040516107f09190612959565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612dc6565b611984565b005b34801561082e57600080fd5b50610837611a07565b6040516108449190612959565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee90613103565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90613103565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611a1a565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aeb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a68929190613134565b602060405180830381865afa158015610a85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa99190613172565b610aea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae19190612aca565b60405180910390fd5b5b610af58383611a79565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b28611bbd565b600a5481610b34610b8c565b610b3e91906131ce565b1115610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061324e565b60405180910390fd5b610b893382611c3b565b50565b6000610b96611c59565b6001546000540303905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b57610c36848484611c5e565b610d13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c84929190613134565b602060405180830381865afa158015610ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc59190613172565b610d0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cfd9190612aca565b60405180910390fd5b5b610d12848484611c5e565b5b50505050565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e69573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d57610d98848484611f80565b610e75565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610de6929190613134565b602060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e279190613172565b610e6857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5f9190612aca565b60405180910390fd5b5b610e74848484611f80565b5b50505050565b610e83611bbd565b80600d8190555050565b600c5481565b600b5481565b610ea1611bbd565b80600c8190555050565b610eb3611bbd565b80600f9081610ec29190613410565b5050565b610ece611bbd565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610f0582611fa0565b9050919050565b600f8054610f1990613103565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4590613103565b8015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611001576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61105a611bbd565b611064600061206c565b565b61106e611bbd565b600a54815161107b610b8c565b61108591906131ce565b11156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd9061324e565b60405180910390fd5b60005b815181101561110a576110f78282815181106110e8576110e76134e2565b5b60200260200101516001611c3b565b808061110290613511565b9150506110c9565b5050565b611116611bbd565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61114a611bbd565b60006064600f4761115b9190613559565b61116591906135e2565b9050600060646055476111789190613559565b61118291906135e2565b90506000821161119157600080fd5b6111bd601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612132565b6111e9601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612132565b5050565b601080546111fa90613103565b80601f016020809104026020016040519081016040528092919081815260200182805461122690613103565b80156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112b490613103565b80601f01602080910402602001604051908101604052809291908181526020018280546112e090613103565b801561132d5780601f106113025761010080835404028352916020019161132d565b820191906000526020600020905b81548152906001019060200180831161131057829003601f168201915b5050505050905090565b61133f6121e3565b600d548161134d9190613559565b34101561138f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113869061365f565b60405180910390fd5b600e60009054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906136cb565b60405180910390fd5b600c5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c91906131ce565b111561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613737565b60405180910390fd5b600b5481611479610b8c565b61148391906131ce565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906137a3565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151391906131ce565b925050819055506115243382611c3b565b61152c612232565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561162a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115a7929190613134565b602060405180830381865afa1580156115c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e89190613172565b61162957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116209190612aca565b60405180910390fd5b5b611634838361223c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611778573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ac576116a785858585612347565b611785565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116f5929190613134565b602060405180830381865afa158015611712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117369190613172565b61177757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161176e9190612aca565b60405180910390fd5b5b61178485858585612347565b5b5050505050565b611794611bbd565b80601090816117a39190613410565b5050565b600d5481565b606060001515600e60019054906101000a900460ff1615150361185c57601080546117d790613103565b80601f016020809104026020016040519081016040528092919081815260200182805461180390613103565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b505050505090506118d2565b61186582611a1a565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613835565b60405180910390fd5b600f6118af836123ba565b6040516020016118c092919061393a565b60405160208183030381529060405290505b919050565b600a5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198c611bbd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906139db565b60405180910390fd5b611a048161206c565b50565b600e60019054906101000a900460ff1681565b600081611a25611c59565b11158015611a34575060005482105b8015611a72575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611a8482610efa565b90508073ffffffffffffffffffffffffffffffffffffffff16611aa561240a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0857611ad181611acc61240a565b6118f0565b611b07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bc5612412565b73ffffffffffffffffffffffffffffffffffffffff16611be361127b565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613a47565b60405180910390fd5b565b611c5582826040518060200160405280600081525061241a565b5050565b600090565b6000611c6982611fa0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cdc846124b7565b91509150611cf28187611ced61240a565b6124de565b611d3e57611d0786611d0261240a565b6118f0565b611d3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611da4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611db18686866001612522565b8015611dbc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e8a85611e66888887612528565b7c020000000000000000000000000000000000000000000000000000000017612550565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f105760006001850190506000600460008381526020019081526020016000205403611f0e576000548114611f0d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f78868686600161257b565b505050505050565b611f9b83838360405180602001604052806000815250611639565b505050565b60008082905080611faf611c59565b11612035576000548110156120345760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612032575b60008103612028576004600083600190039350838152602001908152602001600020549050611ffe565b8092505050612067565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161215890613a95565b60006040518083038185875af1925050503d8060008114612195576040519150601f19603f3d011682016040523d82523d6000602084013e61219a565b606091505b50509050806121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590613af6565b60405180910390fd5b505050565b600260095403612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613b62565b60405180910390fd5b6002600981905550565b6001600981905550565b806007600061224961240a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122f661240a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233b9190612959565b60405180910390a35050565b612352848484610bc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123b45761237d84848484612581565b6123b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156123f557600184039350600a81066030018453600a81049050806123d3575b50828103602084039350808452505050919050565b600033905090565b600033905090565b61242483836126d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124b257600080549050600083820390505b6124646000868380600101945086612581565b61249a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124515781600054146124af57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861253f86868461288c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a761240a565b8786866040518563ffffffff1660e01b81526004016125c99493929190613bd7565b6020604051808303816000875af192505050801561260557506040513d601f19601f820116820180604052508101906126029190613c38565b60015b61267e573d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b506000815103612676576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203612711576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271e6000848385612522565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612795836127866000866000612528565b61278f85612895565b17612550565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461283657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127fb565b5060008203612871576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612887600084838561257b565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ee816128b9565b81146128f957600080fd5b50565b60008135905061290b816128e5565b92915050565b600060208284031215612927576129266128af565b5b6000612935848285016128fc565b91505092915050565b60008115159050919050565b6129538161293e565b82525050565b600060208201905061296e600083018461294a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ae578082015181840152602081019050612993565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d682612974565b6129e0818561297f565b93506129f0818560208601612990565b6129f9816129ba565b840191505092915050565b60006020820190508181036000830152612a1e81846129cb565b905092915050565b6000819050919050565b612a3981612a26565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b600060208284031215612a7257612a716128af565b5b6000612a8084828501612a47565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ab482612a89565b9050919050565b612ac481612aa9565b82525050565b6000602082019050612adf6000830184612abb565b92915050565b612aee81612aa9565b8114612af957600080fd5b50565b600081359050612b0b81612ae5565b92915050565b60008060408385031215612b2857612b276128af565b5b6000612b3685828601612afc565b9250506020612b4785828601612a47565b9150509250929050565b612b5a81612a26565b82525050565b6000602082019050612b756000830184612b51565b92915050565b600080600060608486031215612b9457612b936128af565b5b6000612ba286828701612afc565b9350506020612bb386828701612afc565b9250506040612bc486828701612a47565b9150509250925092565b6000819050919050565b6000612bf3612bee612be984612a89565b612bce565b612a89565b9050919050565b6000612c0582612bd8565b9050919050565b6000612c1782612bfa565b9050919050565b612c2781612c0c565b82525050565b6000602082019050612c426000830184612c1e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c8a826129ba565b810181811067ffffffffffffffff82111715612ca957612ca8612c52565b5b80604052505050565b6000612cbc6128a5565b9050612cc88282612c81565b919050565b600067ffffffffffffffff821115612ce857612ce7612c52565b5b612cf1826129ba565b9050602081019050919050565b82818337600083830152505050565b6000612d20612d1b84612ccd565b612cb2565b905082815260208101848484011115612d3c57612d3b612c4d565b5b612d47848285612cfe565b509392505050565b600082601f830112612d6457612d63612c48565b5b8135612d74848260208601612d0d565b91505092915050565b600060208284031215612d9357612d926128af565b5b600082013567ffffffffffffffff811115612db157612db06128b4565b5b612dbd84828501612d4f565b91505092915050565b600060208284031215612ddc57612ddb6128af565b5b6000612dea84828501612afc565b91505092915050565b600067ffffffffffffffff821115612e0e57612e0d612c52565b5b602082029050602081019050919050565b600080fd5b6000612e37612e3284612df3565b612cb2565b90508083825260208201905060208402830185811115612e5a57612e59612e1f565b5b835b81811015612e835780612e6f8882612afc565b845260208401935050602081019050612e5c565b5050509392505050565b600082601f830112612ea257612ea1612c48565b5b8135612eb2848260208601612e24565b91505092915050565b600060208284031215612ed157612ed06128af565b5b600082013567ffffffffffffffff811115612eef57612eee6128b4565b5b612efb84828501612e8d565b91505092915050565b612f0d8161293e565b8114612f1857600080fd5b50565b600081359050612f2a81612f04565b92915050565b60008060408385031215612f4757612f466128af565b5b6000612f5585828601612afc565b9250506020612f6685828601612f1b565b9150509250929050565b600067ffffffffffffffff821115612f8b57612f8a612c52565b5b612f94826129ba565b9050602081019050919050565b6000612fb4612faf84612f70565b612cb2565b905082815260208101848484011115612fd057612fcf612c4d565b5b612fdb848285612cfe565b509392505050565b600082601f830112612ff857612ff7612c48565b5b8135613008848260208601612fa1565b91505092915050565b6000806000806080858703121561302b5761302a6128af565b5b600061303987828801612afc565b945050602061304a87828801612afc565b935050604061305b87828801612a47565b925050606085013567ffffffffffffffff81111561307c5761307b6128b4565b5b61308887828801612fe3565b91505092959194509250565b600080604083850312156130ab576130aa6128af565b5b60006130b985828601612afc565b92505060206130ca85828601612afc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311b57607f821691505b60208210810361312e5761312d6130d4565b5b50919050565b60006040820190506131496000830185612abb565b6131566020830184612abb565b9392505050565b60008151905061316c81612f04565b92915050565b600060208284031215613188576131876128af565b5b60006131968482850161315d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131d982612a26565b91506131e483612a26565b92508282019050808211156131fc576131fb61319f565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b600061323860088361297f565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613293565b6132da8683613293565b95508019841693508086168417925050509392505050565b600061330d61330861330384612a26565b612bce565b612a26565b9050919050565b6000819050919050565b613327836132f2565b61333b61333382613314565b8484546132a0565b825550505050565b600090565b613350613343565b61335b81848461331e565b505050565b5b8181101561337f57613374600082613348565b600181019050613361565b5050565b601f8211156133c4576133958161326e565b61339e84613283565b810160208510156133ad578190505b6133c16133b985613283565b830182613360565b50505b505050565b600082821c905092915050565b60006133e7600019846008026133c9565b1980831691505092915050565b600061340083836133d6565b9150826002028217905092915050565b61341982612974565b67ffffffffffffffff81111561343257613431612c52565b5b61343c8254613103565b613447828285613383565b600060209050601f83116001811461347a5760008415613468578287015190505b61347285826133f4565b8655506134da565b601f1984166134888661326e565b60005b828110156134b05784890151825560018201915060208501945060208101905061348b565b868310156134cd57848901516134c9601f8916826133d6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061351c82612a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361354e5761354d61319f565b5b600182019050919050565b600061356482612a26565b915061356f83612a26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135a8576135a761319f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ed82612a26565b91506135f883612a26565b925082613608576136076135b3565b5b828204905092915050565b7f57726f6e67206d696e7420616d6f756e74000000000000000000000000000000600082015250565b600061364960118361297f565b915061365482613613565b602082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f576169742c2073616c65206973206e6f74206163746976652079657400000000600082015250565b60006136b5601c8361297f565b91506136c08261367f565b602082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e206c696d69740000600082015250565b6000613721601e8361297f565b915061372c826136eb565b602082019050919050565b6000602082019050818103600083015261375081613714565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061378d60088361297f565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061381f602f8361297f565b915061382a826137c3565b604082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b600081905092915050565b6000815461386d81613103565b6138778186613855565b9450600182166000811461389257600181146138a7576138da565b60ff19831686528115158202860193506138da565b6138b08561326e565b60005b838110156138d2578154818901526001820191506020810190506138b3565b838801955050505b50505092915050565b60006138ee82612974565b6138f88185613855565b9350613908818560208601612990565b80840191505092915050565b50565b6000613924600083613855565b915061392f82613914565b600082019050919050565b60006139468285613860565b915061395282846138e3565b915061395d82613917565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139c560268361297f565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a3160208361297f565b9150613a3c826139fb565b602082019050919050565b60006020820190508181036000830152613a6081613a24565b9050919050565b600081905092915050565b6000613a7f600083613a67565b9150613a8a82613914565b600082019050919050565b6000613aa082613a72565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613ae060108361297f565b9150613aeb82613aaa565b602082019050919050565b60006020820190508181036000830152613b0f81613ad3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b4c601f8361297f565b9150613b5782613b16565b602082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ba982613b82565b613bb38185613b8d565b9350613bc3818560208601612990565b613bcc816129ba565b840191505092915050565b6000608082019050613bec6000830187612abb565b613bf96020830186612abb565b613c066040830185612b51565b8181036060830152613c188184613b9e565b905095945050505050565b600081519050613c32816128e5565b92915050565b600060208284031215613c4e57613c4d6128af565b5b6000613c5c84828501613c23565b9150509291505056fea26469706673582212208b64fe4c3e1c857ed5596869c8bca9e27d99be0c6cb1ba1cb4ff2eb5a8d098f464736f6c63430008100033697066733a2f2f516d6237334c745679364e6d4470374e394277385174424a6959397178774142364a315a4d4e73644d797a685051
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610766578063daa81cdd14610791578063e985e9c5146107bc578063f2fde38b146107f9578063fae4c7f91461082257610225565b8063a22cb46514610690578063b88d4fde146106b9578063bbaac02f146106d5578063bdb4b848146106fe578063c87b56dd1461072957610225565b8063853828b6116100f2578063853828b6146105dc5780638cc54e7f146105f35780638da5cb5b1461061e57806395d89b4114610649578063a0712d681461067457610225565b806370a0823114610548578063715018a614610585578063729ad39e1461059c5780637d8966e4146105c557610225565b806341f43434116101b1578063547520fe11610175578063547520fe1461047757806355f804b3146104a05780635b8ad429146104c95780636352211e146104e05780636c0360eb1461051d57610225565b806341f43434146103b157806342842e0e146103dc57806344a0d68a146103f8578063453c2310146104215780634921297b1461044c57610225565b80630b8d0a28116101f85780630b8d0a28146102eb578063163c03511461031657806318160ddd1461033f5780631a026c961461036a57806323b872dd1461039557610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612911565b61084d565b60405161025e9190612959565b60405180910390f35b34801561027357600080fd5b5061027c6108df565b6040516102899190612a04565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a5c565b610971565b6040516102c69190612aca565b60405180910390f35b6102e960048036038101906102e49190612b11565b6109f0565b005b3480156102f757600080fd5b50610300610afa565b60405161030d9190612aca565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612a5c565b610b20565b005b34801561034b57600080fd5b50610354610b8c565b6040516103619190612b60565b60405180910390f35b34801561037657600080fd5b5061037f610ba3565b60405161038c9190612aca565b60405180910390f35b6103af60048036038101906103aa9190612b7b565b610bc9565b005b3480156103bd57600080fd5b506103c6610d19565b6040516103d39190612c2d565b60405180910390f35b6103f660048036038101906103f19190612b7b565b610d2b565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612a5c565b610e7b565b005b34801561042d57600080fd5b50610436610e8d565b6040516104439190612b60565b60405180910390f35b34801561045857600080fd5b50610461610e93565b60405161046e9190612b60565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612a5c565b610e99565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612d7d565b610eab565b005b3480156104d557600080fd5b506104de610ec6565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612a5c565b610efa565b6040516105149190612aca565b60405180910390f35b34801561052957600080fd5b50610532610f0c565b60405161053f9190612a04565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612dc6565b610f9a565b60405161057c9190612b60565b60405180910390f35b34801561059157600080fd5b5061059a611052565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612ebb565b611066565b005b3480156105d157600080fd5b506105da61110e565b005b3480156105e857600080fd5b506105f1611142565b005b3480156105ff57600080fd5b506106086111ed565b6040516106159190612a04565b60405180910390f35b34801561062a57600080fd5b5061063361127b565b6040516106409190612aca565b60405180910390f35b34801561065557600080fd5b5061065e6112a5565b60405161066b9190612a04565b60405180910390f35b61068e60048036038101906106899190612a5c565b611337565b005b34801561069c57600080fd5b506106b760048036038101906106b29190612f30565b61152f565b005b6106d360048036038101906106ce9190613011565b611639565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612d7d565b61178c565b005b34801561070a57600080fd5b506107136117a7565b6040516107209190612b60565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612a5c565b6117ad565b60405161075d9190612a04565b60405180910390f35b34801561077257600080fd5b5061077b6118d7565b6040516107889190612b60565b60405180910390f35b34801561079d57600080fd5b506107a66118dd565b6040516107b39190612959565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613094565b6118f0565b6040516107f09190612959565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612dc6565b611984565b005b34801561082e57600080fd5b50610837611a07565b6040516108449190612959565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee90613103565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90613103565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611a1a565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aeb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a68929190613134565b602060405180830381865afa158015610a85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa99190613172565b610aea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae19190612aca565b60405180910390fd5b5b610af58383611a79565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b28611bbd565b600a5481610b34610b8c565b610b3e91906131ce565b1115610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061324e565b60405180910390fd5b610b893382611c3b565b50565b6000610b96611c59565b6001546000540303905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b57610c36848484611c5e565b610d13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c84929190613134565b602060405180830381865afa158015610ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc59190613172565b610d0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cfd9190612aca565b60405180910390fd5b5b610d12848484611c5e565b5b50505050565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e69573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d57610d98848484611f80565b610e75565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610de6929190613134565b602060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e279190613172565b610e6857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5f9190612aca565b60405180910390fd5b5b610e74848484611f80565b5b50505050565b610e83611bbd565b80600d8190555050565b600c5481565b600b5481565b610ea1611bbd565b80600c8190555050565b610eb3611bbd565b80600f9081610ec29190613410565b5050565b610ece611bbd565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610f0582611fa0565b9050919050565b600f8054610f1990613103565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4590613103565b8015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611001576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61105a611bbd565b611064600061206c565b565b61106e611bbd565b600a54815161107b610b8c565b61108591906131ce565b11156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd9061324e565b60405180910390fd5b60005b815181101561110a576110f78282815181106110e8576110e76134e2565b5b60200260200101516001611c3b565b808061110290613511565b9150506110c9565b5050565b611116611bbd565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61114a611bbd565b60006064600f4761115b9190613559565b61116591906135e2565b9050600060646055476111789190613559565b61118291906135e2565b90506000821161119157600080fd5b6111bd601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612132565b6111e9601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612132565b5050565b601080546111fa90613103565b80601f016020809104026020016040519081016040528092919081815260200182805461122690613103565b80156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112b490613103565b80601f01602080910402602001604051908101604052809291908181526020018280546112e090613103565b801561132d5780601f106113025761010080835404028352916020019161132d565b820191906000526020600020905b81548152906001019060200180831161131057829003601f168201915b5050505050905090565b61133f6121e3565b600d548161134d9190613559565b34101561138f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113869061365f565b60405180910390fd5b600e60009054906101000a900460ff166113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906136cb565b60405180910390fd5b600c5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c91906131ce565b111561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613737565b60405180910390fd5b600b5481611479610b8c565b61148391906131ce565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906137a3565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151391906131ce565b925050819055506115243382611c3b565b61152c612232565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561162a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115a7929190613134565b602060405180830381865afa1580156115c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e89190613172565b61162957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116209190612aca565b60405180910390fd5b5b611634838361223c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611778573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ac576116a785858585612347565b611785565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116f5929190613134565b602060405180830381865afa158015611712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117369190613172565b61177757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161176e9190612aca565b60405180910390fd5b5b61178485858585612347565b5b5050505050565b611794611bbd565b80601090816117a39190613410565b5050565b600d5481565b606060001515600e60019054906101000a900460ff1615150361185c57601080546117d790613103565b80601f016020809104026020016040519081016040528092919081815260200182805461180390613103565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b505050505090506118d2565b61186582611a1a565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613835565b60405180910390fd5b600f6118af836123ba565b6040516020016118c092919061393a565b60405160208183030381529060405290505b919050565b600a5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198c611bbd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906139db565b60405180910390fd5b611a048161206c565b50565b600e60019054906101000a900460ff1681565b600081611a25611c59565b11158015611a34575060005482105b8015611a72575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611a8482610efa565b90508073ffffffffffffffffffffffffffffffffffffffff16611aa561240a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0857611ad181611acc61240a565b6118f0565b611b07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bc5612412565b73ffffffffffffffffffffffffffffffffffffffff16611be361127b565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613a47565b60405180910390fd5b565b611c5582826040518060200160405280600081525061241a565b5050565b600090565b6000611c6982611fa0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cdc846124b7565b91509150611cf28187611ced61240a565b6124de565b611d3e57611d0786611d0261240a565b6118f0565b611d3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611da4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611db18686866001612522565b8015611dbc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e8a85611e66888887612528565b7c020000000000000000000000000000000000000000000000000000000017612550565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f105760006001850190506000600460008381526020019081526020016000205403611f0e576000548114611f0d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f78868686600161257b565b505050505050565b611f9b83838360405180602001604052806000815250611639565b505050565b60008082905080611faf611c59565b11612035576000548110156120345760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612032575b60008103612028576004600083600190039350838152602001908152602001600020549050611ffe565b8092505050612067565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161215890613a95565b60006040518083038185875af1925050503d8060008114612195576040519150601f19603f3d011682016040523d82523d6000602084013e61219a565b606091505b50509050806121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590613af6565b60405180910390fd5b505050565b600260095403612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613b62565b60405180910390fd5b6002600981905550565b6001600981905550565b806007600061224961240a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122f661240a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233b9190612959565b60405180910390a35050565b612352848484610bc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123b45761237d84848484612581565b6123b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b6001156123f557600184039350600a81066030018453600a81049050806123d3575b50828103602084039350808452505050919050565b600033905090565b600033905090565b61242483836126d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124b257600080549050600083820390505b6124646000868380600101945086612581565b61249a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124515781600054146124af57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861253f86868461288c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a761240a565b8786866040518563ffffffff1660e01b81526004016125c99493929190613bd7565b6020604051808303816000875af192505050801561260557506040513d601f19601f820116820180604052508101906126029190613c38565b60015b61267e573d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b506000815103612676576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203612711576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271e6000848385612522565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612795836127866000866000612528565b61278f85612895565b17612550565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461283657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127fb565b5060008203612871576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612887600084838561257b565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ee816128b9565b81146128f957600080fd5b50565b60008135905061290b816128e5565b92915050565b600060208284031215612927576129266128af565b5b6000612935848285016128fc565b91505092915050565b60008115159050919050565b6129538161293e565b82525050565b600060208201905061296e600083018461294a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ae578082015181840152602081019050612993565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d682612974565b6129e0818561297f565b93506129f0818560208601612990565b6129f9816129ba565b840191505092915050565b60006020820190508181036000830152612a1e81846129cb565b905092915050565b6000819050919050565b612a3981612a26565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b600060208284031215612a7257612a716128af565b5b6000612a8084828501612a47565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ab482612a89565b9050919050565b612ac481612aa9565b82525050565b6000602082019050612adf6000830184612abb565b92915050565b612aee81612aa9565b8114612af957600080fd5b50565b600081359050612b0b81612ae5565b92915050565b60008060408385031215612b2857612b276128af565b5b6000612b3685828601612afc565b9250506020612b4785828601612a47565b9150509250929050565b612b5a81612a26565b82525050565b6000602082019050612b756000830184612b51565b92915050565b600080600060608486031215612b9457612b936128af565b5b6000612ba286828701612afc565b9350506020612bb386828701612afc565b9250506040612bc486828701612a47565b9150509250925092565b6000819050919050565b6000612bf3612bee612be984612a89565b612bce565b612a89565b9050919050565b6000612c0582612bd8565b9050919050565b6000612c1782612bfa565b9050919050565b612c2781612c0c565b82525050565b6000602082019050612c426000830184612c1e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c8a826129ba565b810181811067ffffffffffffffff82111715612ca957612ca8612c52565b5b80604052505050565b6000612cbc6128a5565b9050612cc88282612c81565b919050565b600067ffffffffffffffff821115612ce857612ce7612c52565b5b612cf1826129ba565b9050602081019050919050565b82818337600083830152505050565b6000612d20612d1b84612ccd565b612cb2565b905082815260208101848484011115612d3c57612d3b612c4d565b5b612d47848285612cfe565b509392505050565b600082601f830112612d6457612d63612c48565b5b8135612d74848260208601612d0d565b91505092915050565b600060208284031215612d9357612d926128af565b5b600082013567ffffffffffffffff811115612db157612db06128b4565b5b612dbd84828501612d4f565b91505092915050565b600060208284031215612ddc57612ddb6128af565b5b6000612dea84828501612afc565b91505092915050565b600067ffffffffffffffff821115612e0e57612e0d612c52565b5b602082029050602081019050919050565b600080fd5b6000612e37612e3284612df3565b612cb2565b90508083825260208201905060208402830185811115612e5a57612e59612e1f565b5b835b81811015612e835780612e6f8882612afc565b845260208401935050602081019050612e5c565b5050509392505050565b600082601f830112612ea257612ea1612c48565b5b8135612eb2848260208601612e24565b91505092915050565b600060208284031215612ed157612ed06128af565b5b600082013567ffffffffffffffff811115612eef57612eee6128b4565b5b612efb84828501612e8d565b91505092915050565b612f0d8161293e565b8114612f1857600080fd5b50565b600081359050612f2a81612f04565b92915050565b60008060408385031215612f4757612f466128af565b5b6000612f5585828601612afc565b9250506020612f6685828601612f1b565b9150509250929050565b600067ffffffffffffffff821115612f8b57612f8a612c52565b5b612f94826129ba565b9050602081019050919050565b6000612fb4612faf84612f70565b612cb2565b905082815260208101848484011115612fd057612fcf612c4d565b5b612fdb848285612cfe565b509392505050565b600082601f830112612ff857612ff7612c48565b5b8135613008848260208601612fa1565b91505092915050565b6000806000806080858703121561302b5761302a6128af565b5b600061303987828801612afc565b945050602061304a87828801612afc565b935050604061305b87828801612a47565b925050606085013567ffffffffffffffff81111561307c5761307b6128b4565b5b61308887828801612fe3565b91505092959194509250565b600080604083850312156130ab576130aa6128af565b5b60006130b985828601612afc565b92505060206130ca85828601612afc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311b57607f821691505b60208210810361312e5761312d6130d4565b5b50919050565b60006040820190506131496000830185612abb565b6131566020830184612abb565b9392505050565b60008151905061316c81612f04565b92915050565b600060208284031215613188576131876128af565b5b60006131968482850161315d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131d982612a26565b91506131e483612a26565b92508282019050808211156131fc576131fb61319f565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b600061323860088361297f565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613293565b6132da8683613293565b95508019841693508086168417925050509392505050565b600061330d61330861330384612a26565b612bce565b612a26565b9050919050565b6000819050919050565b613327836132f2565b61333b61333382613314565b8484546132a0565b825550505050565b600090565b613350613343565b61335b81848461331e565b505050565b5b8181101561337f57613374600082613348565b600181019050613361565b5050565b601f8211156133c4576133958161326e565b61339e84613283565b810160208510156133ad578190505b6133c16133b985613283565b830182613360565b50505b505050565b600082821c905092915050565b60006133e7600019846008026133c9565b1980831691505092915050565b600061340083836133d6565b9150826002028217905092915050565b61341982612974565b67ffffffffffffffff81111561343257613431612c52565b5b61343c8254613103565b613447828285613383565b600060209050601f83116001811461347a5760008415613468578287015190505b61347285826133f4565b8655506134da565b601f1984166134888661326e565b60005b828110156134b05784890151825560018201915060208501945060208101905061348b565b868310156134cd57848901516134c9601f8916826133d6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061351c82612a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361354e5761354d61319f565b5b600182019050919050565b600061356482612a26565b915061356f83612a26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135a8576135a761319f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ed82612a26565b91506135f883612a26565b925082613608576136076135b3565b5b828204905092915050565b7f57726f6e67206d696e7420616d6f756e74000000000000000000000000000000600082015250565b600061364960118361297f565b915061365482613613565b602082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f576169742c2073616c65206973206e6f74206163746976652079657400000000600082015250565b60006136b5601c8361297f565b91506136c08261367f565b602082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e206c696d69740000600082015250565b6000613721601e8361297f565b915061372c826136eb565b602082019050919050565b6000602082019050818103600083015261375081613714565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061378d60088361297f565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061381f602f8361297f565b915061382a826137c3565b604082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b600081905092915050565b6000815461386d81613103565b6138778186613855565b9450600182166000811461389257600181146138a7576138da565b60ff19831686528115158202860193506138da565b6138b08561326e565b60005b838110156138d2578154818901526001820191506020810190506138b3565b838801955050505b50505092915050565b60006138ee82612974565b6138f88185613855565b9350613908818560208601612990565b80840191505092915050565b50565b6000613924600083613855565b915061392f82613914565b600082019050919050565b60006139468285613860565b915061395282846138e3565b915061395d82613917565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139c560268361297f565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a3160208361297f565b9150613a3c826139fb565b602082019050919050565b60006020820190508181036000830152613a6081613a24565b9050919050565b600081905092915050565b6000613a7f600083613a67565b9150613a8a82613914565b600082019050919050565b6000613aa082613a72565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613ae060108361297f565b9150613aeb82613aaa565b602082019050919050565b60006020820190508181036000830152613b0f81613ad3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b4c601f8361297f565b9150613b5782613b16565b602082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ba982613b82565b613bb38185613b8d565b9350613bc3818560208601612990565b613bcc816129ba565b840191505092915050565b6000608082019050613bec6000830187612abb565b613bf96020830186612abb565b613c066040830185612b51565b8181036060830152613c188184613b9e565b905095945050505050565b600081519050613c32816128e5565b92915050565b600060208284031215613c4e57613c4d6128af565b5b6000613c5c84828501613c23565b9150509291505056fea26469706673582212208b64fe4c3e1c857ed5596869c8bca9e27d99be0c6cb1ba1cb4ff2eb5a8d098f464736f6c63430008100033
Deployed Bytecode Sourcemap
63825:4390:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24225:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31618:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67428:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64297:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65122:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20878:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64223:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67601:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3012:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67780:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66555:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64007:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63960:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66653:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66144:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66369:80;;;;;;;;;;;;;:::i;:::-;;26520:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64163:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22062:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62978:103;;;;;;;;;;;;;:::i;:::-;;65324:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66457:90;;;;;;;;;;;;;:::i;:::-;;66764:284;;;;;;;;;;;;;:::i;:::-;;64191:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62330:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64608:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67244:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67967:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66250:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64045:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65711:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63922:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64087:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32567:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63236:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64126:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24225:639;24310:4;24649:10;24634:25;;:11;:25;;;;:102;;;;24726:10;24711:25;;:11;:25;;;;24634:102;:179;;;;24803:10;24788:25;;:11;:25;;;;24634:179;24614:199;;24225:639;;;:::o;25127:100::-;25181:13;25214:5;25207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25127:100;:::o;31618:218::-;31694:7;31719:16;31727:7;31719;:16::i;:::-;31714:64;;31744:34;;;;;;;;;;;;;;31714:64;31798:15;:24;31814:7;31798:24;;;;;;;;;;;:30;;;;;;;;;;;;31791:37;;31618:218;;;:::o;67428:165::-;67532:8;5054:1;3112:42;5006:45;;;:49;5002:225;;;3112:42;5077;;;5128:4;5135:8;5077:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5072:144;;5191:8;5172:28;;;;;;;;;;;:::i;:::-;;;;;;;;5072:144;5002:225;67553:32:::1;67567:8;67577:7;67553:13;:32::i;:::-;67428:165:::0;;;:::o;64297:67::-;;;;;;;;;;;;;:::o;65122:194::-;62216:13;:11;:13::i;:::-;65231:9:::1;;65216:11;65200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65192:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;65274:34;65284:10;65296:11;65274:9;:34::i;:::-;65122:194:::0;:::o;20878:323::-;20939:7;21167:15;:13;:15::i;:::-;21152:12;;21136:13;;:28;:46;21129:53;;20878:323;:::o;64223:67::-;;;;;;;;;;;;;:::o;67601:171::-;67710:4;4308:1;3112:42;4260:45;;;:49;4256:539;;;4549:10;4541:18;;:4;:18;;;4537:85;;67727:37:::1;67746:4;67752:2;67756:7;67727:18;:37::i;:::-;4600:7:::0;;4537:85;3112:42;4641;;;4692:4;4699:10;4641:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4636:148;;4757:10;4738:30;;;;;;;;;;;:::i;:::-;;;;;;;;4636:148;4256:539;67727:37:::1;67746:4;67752:2;67756:7;67727:18;:37::i;:::-;67601:171:::0;;;;;:::o;3012:143::-;3112:42;3012:143;:::o;67780:179::-;67893:4;4308:1;3112:42;4260:45;;;:49;4256:539;;;4549:10;4541:18;;:4;:18;;;4537:85;;67910:41:::1;67933:4;67939:2;67943:7;67910:22;:41::i;:::-;4600:7:::0;;4537:85;3112:42;4641;;;4692:4;4699:10;4641:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4636:148;;4757:10;4738:30;;;;;;;;;;;:::i;:::-;;;;;;;;4636:148;4256:539;67910:41:::1;67933:4;67939:2;67943:7;67910:22;:41::i;:::-;67780:179:::0;;;;;:::o;66555:90::-;62216:13;:11;:13::i;:::-;66630:7:::1;66619:8;:18;;;;66555:90:::0;:::o;64007:31::-;;;;:::o;63960:40::-;;;;:::o;66653:103::-;62216:13;:11;:13::i;:::-;66738:10:::1;66723:12;:25;;;;66653:103:::0;:::o;66144:98::-;62216:13;:11;:13::i;:::-;66226:8:::1;66216:7;:18;;;;;;:::i;:::-;;66144:98:::0;:::o;66369:80::-;62216:13;:11;:13::i;:::-;66433:8:::1;;;;;;;;;;;66432:9;66421:8;;:20;;;;;;;;;;;;;;;;;;66369:80::o:0;26520:152::-;26592:7;26635:27;26654:7;26635:18;:27::i;:::-;26612:52;;26520:152;;;:::o;64163:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22062:233::-;22134:7;22175:1;22158:19;;:5;:19;;;22154:60;;22186:28;;;;;;;;;;;;;;22154:60;16221:13;22232:18;:25;22251:5;22232:25;;;;;;;;;;;;;;;;:55;22225:62;;22062:233;;;:::o;62978:103::-;62216:13;:11;:13::i;:::-;63043:30:::1;63070:1;63043:18;:30::i;:::-;62978:103::o:0;65324:263::-;62216:13;:11;:13::i;:::-;65443:9:::1;;65422:10;:17;65406:13;:11;:13::i;:::-;:33;;;;:::i;:::-;:46;;65398:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;65483:9;65478:102;65502:10;:17;65498:1;:21;65478:102;;;65541:27;65551:10;65562:1;65551:13;;;;;;;;:::i;:::-;;;;;;;;65566:1;65541:9;:27::i;:::-;65521:3;;;;;:::i;:::-;;;;65478:102;;;;65324:263:::0;:::o;66457:90::-;62216:13;:11;:13::i;:::-;66526::::1;;;;;;;;;;;66525:14;66509:13;;:30;;;;;;;;;;;;;;;;;;66457:90::o:0;66764:284::-;62216:13;:11;:13::i;:::-;66817:16:::1;66865:3;66860:2;66836:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;66817:51;;66879:16;66927:3;66922:2;66898:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;66879:51;;66960:1;66949:8;:12;66941:21;;;::::0;::::1;;66973:28;66983:7;;;;;;;;;;;66992:8;66973:9;:28::i;:::-;67012;67022:7;;;;;;;;;;;67031:8;67012:9;:28::i;:::-;66806:242;;66764:284::o:0;64191:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62330:87::-;62376:7;62403:6;;;;;;;;;;;62396:13;;62330:87;:::o;25303:104::-;25359:13;25392:7;25385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25303:104;:::o;64608:506::-;59601:21;:19;:21::i;:::-;64715:8:::1;;64702:10;:21;;;;:::i;:::-;64689:9;:34;;64681:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;64764:13;;;;;;;;;;;64756:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64873:12;;64859:10;64829:15;:27;64845:10;64829:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:56;;64821:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;64969:18;;64955:10;64939:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:48;;64931:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;65052:10;65021:15;:27;65037:10;65021:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;65073:33;65083:10;65095;65073:9;:33::i;:::-;59645:20:::0;:18;:20::i;:::-;64608:506;:::o;67244:176::-;67348:8;5054:1;3112:42;5006:45;;;:49;5002:225;;;3112:42;5077;;;5128:4;5135:8;5077:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5072:144;;5191:8;5172:28;;;;;;;;;;;:::i;:::-;;;;;;;;5072:144;5002:225;67369:43:::1;67393:8;67403;67369:23;:43::i;:::-;67244:176:::0;;;:::o;67967:245::-;68135:4;4308:1;3112:42;4260:45;;;:49;4256:539;;;4549:10;4541:18;;:4;:18;;;4537:85;;68157:47:::1;68180:4;68186:2;68190:7;68199:4;68157:22;:47::i;:::-;4600:7:::0;;4537:85;3112:42;4641;;;4692:4;4699:10;4641:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4636:148;;4757:10;4738:30;;;;;;;;;;;:::i;:::-;;;;;;;;4636:148;4256:539;68157:47:::1;68180:4;68186:2;68190:7;68199:4;68157:22;:47::i;:::-;67967:245:::0;;;;;;:::o;66250:111::-;62216:13;:11;:13::i;:::-;66343:10:::1;66331:9;:22;;;;;;:::i;:::-;;66250:111:::0;:::o;64045:33::-;;;;:::o;65711:425::-;65829:13;65878:5;65866:17;;:8;;;;;;;;;;;:17;;;65862:66;;65907:9;65900:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65862:66;65962:16;65970:7;65962;:16::i;:::-;65940:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;66095:7;66104:18;66114:7;66104:9;:18::i;:::-;66078:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66064:64;;65711:425;;;;:::o;63922:31::-;;;;:::o;64087:32::-;;;;;;;;;;;;;:::o;32567:164::-;32664:4;32688:18;:25;32707:5;32688:25;;;;;;;;;;;;;;;:35;32714:8;32688:35;;;;;;;;;;;;;;;;;;;;;;;;;32681:42;;32567:164;;;;:::o;63236:201::-;62216:13;:11;:13::i;:::-;63345:1:::1;63325:22;;:8;:22;;::::0;63317:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63401:28;63420:8;63401:18;:28::i;:::-;63236:201:::0;:::o;64126:28::-;;;;;;;;;;;;;:::o;32989:282::-;33054:4;33110:7;33091:15;:13;:15::i;:::-;:26;;:66;;;;;33144:13;;33134:7;:23;33091:66;:153;;;;;33243:1;16997:8;33195:17;:26;33213:7;33195:26;;;;;;;;;;;;:44;:49;33091:153;33071:173;;32989:282;;;:::o;31051:408::-;31140:13;31156:16;31164:7;31156;:16::i;:::-;31140:32;;31212:5;31189:28;;:19;:17;:19::i;:::-;:28;;;31185:175;;31237:44;31254:5;31261:19;:17;:19::i;:::-;31237:16;:44::i;:::-;31232:128;;31309:35;;;;;;;;;;;;;;31232:128;31185:175;31405:2;31372:15;:24;31388:7;31372:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31443:7;31439:2;31423:28;;31432:5;31423:28;;;;;;;;;;;;31129:330;31051:408;;:::o;62495:132::-;62570:12;:10;:12::i;:::-;62559:23;;:7;:5;:7::i;:::-;:23;;;62551:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62495:132::o;49129:112::-;49206:27;49216:2;49220:8;49206:27;;;;;;;;;;;;:9;:27::i;:::-;49129:112;;:::o;20394:92::-;20450:7;20394:92;:::o;35257:2825::-;35399:27;35429;35448:7;35429:18;:27::i;:::-;35399:57;;35514:4;35473:45;;35489:19;35473:45;;;35469:86;;35527:28;;;;;;;;;;;;;;35469:86;35569:27;35598:23;35625:35;35652:7;35625:26;:35::i;:::-;35568:92;;;;35760:68;35785:15;35802:4;35808:19;:17;:19::i;:::-;35760:24;:68::i;:::-;35755:180;;35848:43;35865:4;35871:19;:17;:19::i;:::-;35848:16;:43::i;:::-;35843:92;;35900:35;;;;;;;;;;;;;;35843:92;35755:180;35966:1;35952:16;;:2;:16;;;35948:52;;35977:23;;;;;;;;;;;;;;35948:52;36013:43;36035:4;36041:2;36045:7;36054:1;36013:21;:43::i;:::-;36149:15;36146:160;;;36289:1;36268:19;36261:30;36146:160;36686:18;:24;36705:4;36686:24;;;;;;;;;;;;;;;;36684:26;;;;;;;;;;;;36755:18;:22;36774:2;36755:22;;;;;;;;;;;;;;;;36753:24;;;;;;;;;;;37077:146;37114:2;37163:45;37178:4;37184:2;37188:19;37163:14;:45::i;:::-;17277:8;37135:73;37077:18;:146::i;:::-;37048:17;:26;37066:7;37048:26;;;;;;;;;;;:175;;;;37394:1;17277:8;37343:19;:47;:52;37339:627;;37416:19;37448:1;37438:7;:11;37416:33;;37605:1;37571:17;:30;37589:11;37571:30;;;;;;;;;;;;:35;37567:384;;37709:13;;37694:11;:28;37690:242;;37889:19;37856:17;:30;37874:11;37856:30;;;;;;;;;;;:52;;;;37690:242;37567:384;37397:569;37339:627;38013:7;38009:2;37994:27;;38003:4;37994:27;;;;;;;;;;;;38032:42;38053:4;38059:2;38063:7;38072:1;38032:20;:42::i;:::-;35388:2694;;;35257:2825;;;:::o;38178:193::-;38324:39;38341:4;38347:2;38351:7;38324:39;;;;;;;;;;;;:16;:39::i;:::-;38178:193;;;:::o;27675:1275::-;27742:7;27762:12;27777:7;27762:22;;27845:4;27826:15;:13;:15::i;:::-;:23;27822:1061;;27879:13;;27872:4;:20;27868:1015;;;27917:14;27934:17;:23;27952:4;27934:23;;;;;;;;;;;;27917:40;;28051:1;16997:8;28023:6;:24;:29;28019:845;;28688:113;28705:1;28695:6;:11;28688:113;;28748:17;:25;28766:6;;;;;;;28748:25;;;;;;;;;;;;28739:34;;28688:113;;;28834:6;28827:13;;;;;;28019:845;27894:989;27868:1015;27822:1061;28911:31;;;;;;;;;;;;;;27675:1275;;;;:::o;63597:191::-;63671:16;63690:6;;;;;;;;;;;63671:25;;63716:8;63707:6;;:17;;;;;;;;;;;;;;;;;;63771:8;63740:40;;63761:8;63740:40;;;;;;;;;;;;63660:128;63597:191;:::o;67056:180::-;67130:12;67148:8;:13;;67169:7;67148:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67129:52;;;67200:7;67192:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67118:118;67056:180;;:::o;59681:293::-;59083:1;59815:7;;:19;59807:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59083:1;59948:7;:18;;;;59681:293::o;59982:213::-;59039:1;60165:7;:22;;;;59982:213::o;32176:234::-;32323:8;32271:18;:39;32290:19;:17;:19::i;:::-;32271:39;;;;;;;;;;;;;;;:49;32311:8;32271:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32383:8;32347:55;;32362:19;:17;:19::i;:::-;32347:55;;;32393:8;32347:55;;;;;;:::i;:::-;;;;;;;;32176:234;;:::o;38969:407::-;39144:31;39157:4;39163:2;39167:7;39144:12;:31::i;:::-;39208:1;39190:2;:14;;;:19;39186:183;;39229:56;39260:4;39266:2;39270:7;39279:5;39229:30;:56::i;:::-;39224:145;;39313:40;;;;;;;;;;;;;;39224:145;39186:183;38969:407;;;;:::o;55504:1745::-;55569:17;56003:4;55996;55990:11;55986:22;56095:1;56089:4;56082:15;56170:4;56167:1;56163:12;56156:19;;56252:1;56247:3;56240:14;56356:3;56595:5;56577:428;56603:1;56577:428;;;56643:1;56638:3;56634:11;56627:18;;56814:2;56808:4;56804:13;56800:2;56796:22;56791:3;56783:36;56908:2;56902:4;56898:13;56890:21;;56975:4;56577:428;56965:25;56577:428;56581:21;57044:3;57039;57035:13;57159:4;57154:3;57150:14;57143:21;;57224:6;57219:3;57212:19;55608:1634;;;55504:1745;;;:::o;55297:105::-;55357:7;55384:10;55377:17;;55297:105;:::o;60881:98::-;60934:7;60961:10;60954:17;;60881:98;:::o;48356:689::-;48487:19;48493:2;48497:8;48487:5;:19::i;:::-;48566:1;48548:2;:14;;;:19;48544:483;;48588:11;48602:13;;48588:27;;48634:13;48656:8;48650:3;:14;48634:30;;48683:233;48714:62;48753:1;48757:2;48761:7;;;;;;48770:5;48714:30;:62::i;:::-;48709:167;;48812:40;;;;;;;;;;;;;;48709:167;48911:3;48903:5;:11;48683:233;;48998:3;48981:13;;:20;48977:34;;49003:8;;;48977:34;48569:458;;48544:483;48356:689;;;:::o;34152:485::-;34254:27;34283:23;34324:38;34365:15;:24;34381:7;34365:24;;;;;;;;;;;34324:65;;34542:18;34519:41;;34599:19;34593:26;34574:45;;34504:126;34152:485;;;:::o;33380:659::-;33529:11;33694:16;33687:5;33683:28;33674:37;;33854:16;33843:9;33839:32;33826:45;;34004:15;33993:9;33990:30;33982:5;33971:9;33968:20;33965:56;33955:66;;33380:659;;;;;:::o;40038:159::-;;;;;:::o;54606:311::-;54741:7;54761:16;17401:3;54787:19;:41;;54761:68;;17401:3;54855:31;54866:4;54872:2;54876:9;54855:10;:31::i;:::-;54847:40;;:62;;54840:69;;;54606:311;;;;;:::o;29498:450::-;29578:14;29746:16;29739:5;29735:28;29726:37;;29923:5;29909:11;29884:23;29880:41;29877:52;29870:5;29867:63;29857:73;;29498:450;;;;:::o;40862:158::-;;;;;:::o;41460:716::-;41623:4;41669:2;41644:45;;;41690:19;:17;:19::i;:::-;41711:4;41717:7;41726:5;41644:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41640:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41944:1;41927:6;:13;:18;41923:235;;41973:40;;;;;;;;;;;;;;41923:235;42116:6;42110:13;42101:6;42097:2;42093:15;42086:38;41640:529;41813:54;;;41803:64;;;:6;:64;;;;41796:71;;;41460:716;;;;;;:::o;42638:2966::-;42711:20;42734:13;;42711:36;;42774:1;42762:8;:13;42758:44;;42784:18;;;;;;;;;;;;;;42758:44;42815:61;42845:1;42849:2;42853:12;42867:8;42815:21;:61::i;:::-;43359:1;16359:2;43329:1;:26;;43328:32;43316:8;:45;43290:18;:22;43309:2;43290:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43638:139;43675:2;43729:33;43752:1;43756:2;43760:1;43729:14;:33::i;:::-;43696:30;43717:8;43696:20;:30::i;:::-;:66;43638:18;:139::i;:::-;43604:17;:31;43622:12;43604:31;;;;;;;;;;;:173;;;;43794:16;43825:11;43854:8;43839:12;:23;43825:37;;44375:16;44371:2;44367:25;44355:37;;44747:12;44707:8;44666:1;44604:25;44545:1;44484;44457:335;45118:1;45104:12;45100:20;45058:346;45159:3;45150:7;45147:16;45058:346;;45377:7;45367:8;45364:1;45337:25;45334:1;45331;45326:59;45212:1;45203:7;45199:15;45188:26;;45058:346;;;45062:77;45449:1;45437:8;:13;45433:45;;45459:19;;;;;;;;;;;;;;45433:45;45511:3;45495:13;:19;;;;43064:2462;;45536:60;45565:1;45569:2;45573:12;45587:8;45536:20;:60::i;:::-;42700:2904;42638:2966;;:::o;54307:147::-;54444:6;54307:147;;;;;:::o;30050:324::-;30120:14;30353:1;30343:8;30340:15;30314:24;30310:46;30300:56;;30050:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:311::-;9903:4;9993:18;9985:6;9982:30;9979:56;;;10015:18;;:::i;:::-;9979:56;10065:4;10057:6;10053:17;10045:25;;10125:4;10119;10115:15;10107:23;;9826:311;;;:::o;10143:117::-;10252:1;10249;10242:12;10283:710;10379:5;10404:81;10420:64;10477:6;10420:64;:::i;:::-;10404:81;:::i;:::-;10395:90;;10505:5;10534:6;10527:5;10520:21;10568:4;10561:5;10557:16;10550:23;;10621:4;10613:6;10609:17;10601:6;10597:30;10650:3;10642:6;10639:15;10636:122;;;10669:79;;:::i;:::-;10636:122;10784:6;10767:220;10801:6;10796:3;10793:15;10767:220;;;10876:3;10905:37;10938:3;10926:10;10905:37;:::i;:::-;10900:3;10893:50;10972:4;10967:3;10963:14;10956:21;;10843:144;10827:4;10822:3;10818:14;10811:21;;10767:220;;;10771:21;10385:608;;10283:710;;;;;:::o;11016:370::-;11087:5;11136:3;11129:4;11121:6;11117:17;11113:27;11103:122;;11144:79;;:::i;:::-;11103:122;11261:6;11248:20;11286:94;11376:3;11368:6;11361:4;11353:6;11349:17;11286:94;:::i;:::-;11277:103;;11093:293;11016:370;;;;:::o;11392:539::-;11476:6;11525:2;11513:9;11504:7;11500:23;11496:32;11493:119;;;11531:79;;:::i;:::-;11493:119;11679:1;11668:9;11664:17;11651:31;11709:18;11701:6;11698:30;11695:117;;;11731:79;;:::i;:::-;11695:117;11836:78;11906:7;11897:6;11886:9;11882:22;11836:78;:::i;:::-;11826:88;;11622:302;11392:539;;;;:::o;11937:116::-;12007:21;12022:5;12007:21;:::i;:::-;12000:5;11997:32;11987:60;;12043:1;12040;12033:12;11987:60;11937:116;:::o;12059:133::-;12102:5;12140:6;12127:20;12118:29;;12156:30;12180:5;12156:30;:::i;:::-;12059:133;;;;:::o;12198:468::-;12263:6;12271;12320:2;12308:9;12299:7;12295:23;12291:32;12288:119;;;12326:79;;:::i;:::-;12288:119;12446:1;12471:53;12516:7;12507:6;12496:9;12492:22;12471:53;:::i;:::-;12461:63;;12417:117;12573:2;12599:50;12641:7;12632:6;12621:9;12617:22;12599:50;:::i;:::-;12589:60;;12544:115;12198:468;;;;;:::o;12672:307::-;12733:4;12823:18;12815:6;12812:30;12809:56;;;12845:18;;:::i;:::-;12809:56;12883:29;12905:6;12883:29;:::i;:::-;12875:37;;12967:4;12961;12957:15;12949:23;;12672:307;;;:::o;12985:423::-;13062:5;13087:65;13103:48;13144:6;13103:48;:::i;:::-;13087:65;:::i;:::-;13078:74;;13175:6;13168:5;13161:21;13213:4;13206:5;13202:16;13251:3;13242:6;13237:3;13233:16;13230:25;13227:112;;;13258:79;;:::i;:::-;13227:112;13348:54;13395:6;13390:3;13385;13348:54;:::i;:::-;13068:340;12985:423;;;;;:::o;13427:338::-;13482:5;13531:3;13524:4;13516:6;13512:17;13508:27;13498:122;;13539:79;;:::i;:::-;13498:122;13656:6;13643:20;13681:78;13755:3;13747:6;13740:4;13732:6;13728:17;13681:78;:::i;:::-;13672:87;;13488:277;13427:338;;;;:::o;13771:943::-;13866:6;13874;13882;13890;13939:3;13927:9;13918:7;13914:23;13910:33;13907:120;;;13946:79;;:::i;:::-;13907:120;14066:1;14091:53;14136:7;14127:6;14116:9;14112:22;14091:53;:::i;:::-;14081:63;;14037:117;14193:2;14219:53;14264:7;14255:6;14244:9;14240:22;14219:53;:::i;:::-;14209:63;;14164:118;14321:2;14347:53;14392:7;14383:6;14372:9;14368:22;14347:53;:::i;:::-;14337:63;;14292:118;14477:2;14466:9;14462:18;14449:32;14508:18;14500:6;14497:30;14494:117;;;14530:79;;:::i;:::-;14494:117;14635:62;14689:7;14680:6;14669:9;14665:22;14635:62;:::i;:::-;14625:72;;14420:287;13771:943;;;;;;;:::o;14720:474::-;14788:6;14796;14845:2;14833:9;14824:7;14820:23;14816:32;14813:119;;;14851:79;;:::i;:::-;14813:119;14971:1;14996:53;15041:7;15032:6;15021:9;15017:22;14996:53;:::i;:::-;14986:63;;14942:117;15098:2;15124:53;15169:7;15160:6;15149:9;15145:22;15124:53;:::i;:::-;15114:63;;15069:118;14720:474;;;;;:::o;15200:180::-;15248:77;15245:1;15238:88;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15386:320;15430:6;15467:1;15461:4;15457:12;15447:22;;15514:1;15508:4;15504:12;15535:18;15525:81;;15591:4;15583:6;15579:17;15569:27;;15525:81;15653:2;15645:6;15642:14;15622:18;15619:38;15616:84;;15672:18;;:::i;:::-;15616:84;15437:269;15386:320;;;:::o;15712:332::-;15833:4;15871:2;15860:9;15856:18;15848:26;;15884:71;15952:1;15941:9;15937:17;15928:6;15884:71;:::i;:::-;15965:72;16033:2;16022:9;16018:18;16009:6;15965:72;:::i;:::-;15712:332;;;;;:::o;16050:137::-;16104:5;16135:6;16129:13;16120:22;;16151:30;16175:5;16151:30;:::i;:::-;16050:137;;;;:::o;16193:345::-;16260:6;16309:2;16297:9;16288:7;16284:23;16280:32;16277:119;;;16315:79;;:::i;:::-;16277:119;16435:1;16460:61;16513:7;16504:6;16493:9;16489:22;16460:61;:::i;:::-;16450:71;;16406:125;16193:345;;;;:::o;16544:180::-;16592:77;16589:1;16582:88;16689:4;16686:1;16679:15;16713:4;16710:1;16703:15;16730:191;16770:3;16789:20;16807:1;16789:20;:::i;:::-;16784:25;;16823:20;16841:1;16823:20;:::i;:::-;16818:25;;16866:1;16863;16859:9;16852:16;;16887:3;16884:1;16881:10;16878:36;;;16894:18;;:::i;:::-;16878:36;16730:191;;;;:::o;16927:158::-;17067:10;17063:1;17055:6;17051:14;17044:34;16927:158;:::o;17091:365::-;17233:3;17254:66;17318:1;17313:3;17254:66;:::i;:::-;17247:73;;17329:93;17418:3;17329:93;:::i;:::-;17447:2;17442:3;17438:12;17431:19;;17091:365;;;:::o;17462:419::-;17628:4;17666:2;17655:9;17651:18;17643:26;;17715:9;17709:4;17705:20;17701:1;17690:9;17686:17;17679:47;17743:131;17869:4;17743:131;:::i;:::-;17735:139;;17462:419;;;:::o;17887:141::-;17936:4;17959:3;17951:11;;17982:3;17979:1;17972:14;18016:4;18013:1;18003:18;17995:26;;17887:141;;;:::o;18034:93::-;18071:6;18118:2;18113;18106:5;18102:14;18098:23;18088:33;;18034:93;;;:::o;18133:107::-;18177:8;18227:5;18221:4;18217:16;18196:37;;18133:107;;;;:::o;18246:393::-;18315:6;18365:1;18353:10;18349:18;18388:97;18418:66;18407:9;18388:97;:::i;:::-;18506:39;18536:8;18525:9;18506:39;:::i;:::-;18494:51;;18578:4;18574:9;18567:5;18563:21;18554:30;;18627:4;18617:8;18613:19;18606:5;18603:30;18593:40;;18322:317;;18246:393;;;;;:::o;18645:142::-;18695:9;18728:53;18746:34;18755:24;18773:5;18755:24;:::i;:::-;18746:34;:::i;:::-;18728:53;:::i;:::-;18715:66;;18645:142;;;:::o;18793:75::-;18836:3;18857:5;18850:12;;18793:75;;;:::o;18874:269::-;18984:39;19015:7;18984:39;:::i;:::-;19045:91;19094:41;19118:16;19094:41;:::i;:::-;19086:6;19079:4;19073:11;19045:91;:::i;:::-;19039:4;19032:105;18950:193;18874:269;;;:::o;19149:73::-;19194:3;19149:73;:::o;19228:189::-;19305:32;;:::i;:::-;19346:65;19404:6;19396;19390:4;19346:65;:::i;:::-;19281:136;19228:189;;:::o;19423:186::-;19483:120;19500:3;19493:5;19490:14;19483:120;;;19554:39;19591:1;19584:5;19554:39;:::i;:::-;19527:1;19520:5;19516:13;19507:22;;19483:120;;;19423:186;;:::o;19615:543::-;19716:2;19711:3;19708:11;19705:446;;;19750:38;19782:5;19750:38;:::i;:::-;19834:29;19852:10;19834:29;:::i;:::-;19824:8;19820:44;20017:2;20005:10;20002:18;19999:49;;;20038:8;20023:23;;19999:49;20061:80;20117:22;20135:3;20117:22;:::i;:::-;20107:8;20103:37;20090:11;20061:80;:::i;:::-;19720:431;;19705:446;19615:543;;;:::o;20164:117::-;20218:8;20268:5;20262:4;20258:16;20237:37;;20164:117;;;;:::o;20287:169::-;20331:6;20364:51;20412:1;20408:6;20400:5;20397:1;20393:13;20364:51;:::i;:::-;20360:56;20445:4;20439;20435:15;20425:25;;20338:118;20287:169;;;;:::o;20461:295::-;20537:4;20683:29;20708:3;20702:4;20683:29;:::i;:::-;20675:37;;20745:3;20742:1;20738:11;20732:4;20729:21;20721:29;;20461:295;;;;:::o;20761:1395::-;20878:37;20911:3;20878:37;:::i;:::-;20980:18;20972:6;20969:30;20966:56;;;21002:18;;:::i;:::-;20966:56;21046:38;21078:4;21072:11;21046:38;:::i;:::-;21131:67;21191:6;21183;21177:4;21131:67;:::i;:::-;21225:1;21249:4;21236:17;;21281:2;21273:6;21270:14;21298:1;21293:618;;;;21955:1;21972:6;21969:77;;;22021:9;22016:3;22012:19;22006:26;21997:35;;21969:77;22072:67;22132:6;22125:5;22072:67;:::i;:::-;22066:4;22059:81;21928:222;21263:887;;21293:618;21345:4;21341:9;21333:6;21329:22;21379:37;21411:4;21379:37;:::i;:::-;21438:1;21452:208;21466:7;21463:1;21460:14;21452:208;;;21545:9;21540:3;21536:19;21530:26;21522:6;21515:42;21596:1;21588:6;21584:14;21574:24;;21643:2;21632:9;21628:18;21615:31;;21489:4;21486:1;21482:12;21477:17;;21452:208;;;21688:6;21679:7;21676:19;21673:179;;;21746:9;21741:3;21737:19;21731:26;21789:48;21831:4;21823:6;21819:17;21808:9;21789:48;:::i;:::-;21781:6;21774:64;21696:156;21673:179;21898:1;21894;21886:6;21882:14;21878:22;21872:4;21865:36;21300:611;;;21263:887;;20853:1303;;;20761:1395;;:::o;22162:180::-;22210:77;22207:1;22200:88;22307:4;22304:1;22297:15;22331:4;22328:1;22321:15;22348:233;22387:3;22410:24;22428:5;22410:24;:::i;:::-;22401:33;;22456:66;22449:5;22446:77;22443:103;;22526:18;;:::i;:::-;22443:103;22573:1;22566:5;22562:13;22555:20;;22348:233;;;:::o;22587:348::-;22627:7;22650:20;22668:1;22650:20;:::i;:::-;22645:25;;22684:20;22702:1;22684:20;:::i;:::-;22679:25;;22872:1;22804:66;22800:74;22797:1;22794:81;22789:1;22782:9;22775:17;22771:105;22768:131;;;22879:18;;:::i;:::-;22768:131;22927:1;22924;22920:9;22909:20;;22587:348;;;;:::o;22941:180::-;22989:77;22986:1;22979:88;23086:4;23083:1;23076:15;23110:4;23107:1;23100:15;23127:185;23167:1;23184:20;23202:1;23184:20;:::i;:::-;23179:25;;23218:20;23236:1;23218:20;:::i;:::-;23213:25;;23257:1;23247:35;;23262:18;;:::i;:::-;23247:35;23304:1;23301;23297:9;23292:14;;23127:185;;;;:::o;23318:167::-;23458:19;23454:1;23446:6;23442:14;23435:43;23318:167;:::o;23491:366::-;23633:3;23654:67;23718:2;23713:3;23654:67;:::i;:::-;23647:74;;23730:93;23819:3;23730:93;:::i;:::-;23848:2;23843:3;23839:12;23832:19;;23491:366;;;:::o;23863:419::-;24029:4;24067:2;24056:9;24052:18;24044:26;;24116:9;24110:4;24106:20;24102:1;24091:9;24087:17;24080:47;24144:131;24270:4;24144:131;:::i;:::-;24136:139;;23863:419;;;:::o;24288:178::-;24428:30;24424:1;24416:6;24412:14;24405:54;24288:178;:::o;24472:366::-;24614:3;24635:67;24699:2;24694:3;24635:67;:::i;:::-;24628:74;;24711:93;24800:3;24711:93;:::i;:::-;24829:2;24824:3;24820:12;24813:19;;24472:366;;;:::o;24844:419::-;25010:4;25048:2;25037:9;25033:18;25025:26;;25097:9;25091:4;25087:20;25083:1;25072:9;25068:17;25061:47;25125:131;25251:4;25125:131;:::i;:::-;25117:139;;24844:419;;;:::o;25269:180::-;25409:32;25405:1;25397:6;25393:14;25386:56;25269:180;:::o;25455:366::-;25597:3;25618:67;25682:2;25677:3;25618:67;:::i;:::-;25611:74;;25694:93;25783:3;25694:93;:::i;:::-;25812:2;25807:3;25803:12;25796:19;;25455:366;;;:::o;25827:419::-;25993:4;26031:2;26020:9;26016:18;26008:26;;26080:9;26074:4;26070:20;26066:1;26055:9;26051:17;26044:47;26108:131;26234:4;26108:131;:::i;:::-;26100:139;;25827:419;;;:::o;26252:158::-;26392:10;26388:1;26380:6;26376:14;26369:34;26252:158;:::o;26416:365::-;26558:3;26579:66;26643:1;26638:3;26579:66;:::i;:::-;26572:73;;26654:93;26743:3;26654:93;:::i;:::-;26772:2;26767:3;26763:12;26756:19;;26416:365;;;:::o;26787:419::-;26953:4;26991:2;26980:9;26976:18;26968:26;;27040:9;27034:4;27030:20;27026:1;27015:9;27011:17;27004:47;27068:131;27194:4;27068:131;:::i;:::-;27060:139;;26787:419;;;:::o;27212:234::-;27352:34;27348:1;27340:6;27336:14;27329:58;27421:17;27416:2;27408:6;27404:15;27397:42;27212:234;:::o;27452:366::-;27594:3;27615:67;27679:2;27674:3;27615:67;:::i;:::-;27608:74;;27691:93;27780:3;27691:93;:::i;:::-;27809:2;27804:3;27800:12;27793:19;;27452:366;;;:::o;27824:419::-;27990:4;28028:2;28017:9;28013:18;28005:26;;28077:9;28071:4;28067:20;28063:1;28052:9;28048:17;28041:47;28105:131;28231:4;28105:131;:::i;:::-;28097:139;;27824:419;;;:::o;28249:148::-;28351:11;28388:3;28373:18;;28249:148;;;;:::o;28427:874::-;28530:3;28567:5;28561:12;28596:36;28622:9;28596:36;:::i;:::-;28648:89;28730:6;28725:3;28648:89;:::i;:::-;28641:96;;28768:1;28757:9;28753:17;28784:1;28779:166;;;;28959:1;28954:341;;;;28746:549;;28779:166;28863:4;28859:9;28848;28844:25;28839:3;28832:38;28925:6;28918:14;28911:22;28903:6;28899:35;28894:3;28890:45;28883:52;;28779:166;;28954:341;29021:38;29053:5;29021:38;:::i;:::-;29081:1;29095:154;29109:6;29106:1;29103:13;29095:154;;;29183:7;29177:14;29173:1;29168:3;29164:11;29157:35;29233:1;29224:7;29220:15;29209:26;;29131:4;29128:1;29124:12;29119:17;;29095:154;;;29278:6;29273:3;29269:16;29262:23;;28961:334;;28746:549;;28534:767;;28427:874;;;;:::o;29307:390::-;29413:3;29441:39;29474:5;29441:39;:::i;:::-;29496:89;29578:6;29573:3;29496:89;:::i;:::-;29489:96;;29594:65;29652:6;29647:3;29640:4;29633:5;29629:16;29594:65;:::i;:::-;29684:6;29679:3;29675:16;29668:23;;29417:280;29307:390;;;;:::o;29703:114::-;;:::o;29823:400::-;29983:3;30004:84;30086:1;30081:3;30004:84;:::i;:::-;29997:91;;30097:93;30186:3;30097:93;:::i;:::-;30215:1;30210:3;30206:11;30199:18;;29823:400;;;:::o;30229:695::-;30507:3;30529:92;30617:3;30608:6;30529:92;:::i;:::-;30522:99;;30638:95;30729:3;30720:6;30638:95;:::i;:::-;30631:102;;30750:148;30894:3;30750:148;:::i;:::-;30743:155;;30915:3;30908:10;;30229:695;;;;;:::o;30930:225::-;31070:34;31066:1;31058:6;31054:14;31047:58;31139:8;31134:2;31126:6;31122:15;31115:33;30930:225;:::o;31161:366::-;31303:3;31324:67;31388:2;31383:3;31324:67;:::i;:::-;31317:74;;31400:93;31489:3;31400:93;:::i;:::-;31518:2;31513:3;31509:12;31502:19;;31161:366;;;:::o;31533:419::-;31699:4;31737:2;31726:9;31722:18;31714:26;;31786:9;31780:4;31776:20;31772:1;31761:9;31757:17;31750:47;31814:131;31940:4;31814:131;:::i;:::-;31806:139;;31533:419;;;:::o;31958:182::-;32098:34;32094:1;32086:6;32082:14;32075:58;31958:182;:::o;32146:366::-;32288:3;32309:67;32373:2;32368:3;32309:67;:::i;:::-;32302:74;;32385:93;32474:3;32385:93;:::i;:::-;32503:2;32498:3;32494:12;32487:19;;32146:366;;;:::o;32518:419::-;32684:4;32722:2;32711:9;32707:18;32699:26;;32771:9;32765:4;32761:20;32757:1;32746:9;32742:17;32735:47;32799:131;32925:4;32799:131;:::i;:::-;32791:139;;32518:419;;;:::o;32943:147::-;33044:11;33081:3;33066:18;;32943:147;;;;:::o;33096:398::-;33255:3;33276:83;33357:1;33352:3;33276:83;:::i;:::-;33269:90;;33368:93;33457:3;33368:93;:::i;:::-;33486:1;33481:3;33477:11;33470:18;;33096:398;;;:::o;33500:379::-;33684:3;33706:147;33849:3;33706:147;:::i;:::-;33699:154;;33870:3;33863:10;;33500:379;;;:::o;33885:166::-;34025:18;34021:1;34013:6;34009:14;34002:42;33885:166;:::o;34057:366::-;34199:3;34220:67;34284:2;34279:3;34220:67;:::i;:::-;34213:74;;34296:93;34385:3;34296:93;:::i;:::-;34414:2;34409:3;34405:12;34398:19;;34057:366;;;:::o;34429:419::-;34595:4;34633:2;34622:9;34618:18;34610:26;;34682:9;34676:4;34672:20;34668:1;34657:9;34653:17;34646:47;34710:131;34836:4;34710:131;:::i;:::-;34702:139;;34429:419;;;:::o;34854:181::-;34994:33;34990:1;34982:6;34978:14;34971:57;34854:181;:::o;35041:366::-;35183:3;35204:67;35268:2;35263:3;35204:67;:::i;:::-;35197:74;;35280:93;35369:3;35280:93;:::i;:::-;35398:2;35393:3;35389:12;35382:19;;35041:366;;;:::o;35413:419::-;35579:4;35617:2;35606:9;35602:18;35594:26;;35666:9;35660:4;35656:20;35652:1;35641:9;35637:17;35630:47;35694:131;35820:4;35694:131;:::i;:::-;35686:139;;35413:419;;;:::o;35838:98::-;35889:6;35923:5;35917:12;35907:22;;35838:98;;;:::o;35942:168::-;36025:11;36059:6;36054:3;36047:19;36099:4;36094:3;36090:14;36075:29;;35942:168;;;;:::o;36116:373::-;36202:3;36230:38;36262:5;36230:38;:::i;:::-;36284:70;36347:6;36342:3;36284:70;:::i;:::-;36277:77;;36363:65;36421:6;36416:3;36409:4;36402:5;36398:16;36363:65;:::i;:::-;36453:29;36475:6;36453:29;:::i;:::-;36448:3;36444:39;36437:46;;36206:283;36116:373;;;;:::o;36495:640::-;36690:4;36728:3;36717:9;36713:19;36705:27;;36742:71;36810:1;36799:9;36795:17;36786:6;36742:71;:::i;:::-;36823:72;36891:2;36880:9;36876:18;36867:6;36823:72;:::i;:::-;36905;36973:2;36962:9;36958:18;36949:6;36905:72;:::i;:::-;37024:9;37018:4;37014:20;37009:2;36998:9;36994:18;36987:48;37052:76;37123:4;37114:6;37052:76;:::i;:::-;37044:84;;36495:640;;;;;;;:::o;37141:141::-;37197:5;37228:6;37222:13;37213:22;;37244:32;37270:5;37244:32;:::i;:::-;37141:141;;;;:::o;37288:349::-;37357:6;37406:2;37394:9;37385:7;37381:23;37377:32;37374:119;;;37412:79;;:::i;:::-;37374:119;37532:1;37557:63;37612:7;37603:6;37592:9;37588:22;37557:63;:::i;:::-;37547:73;;37503:127;37288:349;;;;:::o
Swarm Source
ipfs://8b64fe4c3e1c857ed5596869c8bca9e27d99be0c6cb1ba1cb4ff2eb5a8d098f4
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.